source: general/prog/python-dependencies/Babel.xml@ 2f5071a6

lazarus trunk
Last change on this file since 2f5071a6 was 99c90fa, checked in by Douglas R. Reno <renodr@…>, 4 months ago

Lots of tags

  • Property mode set to 100644
File size: 4.8 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<!DOCTYPE sect2 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../../general.ent">
5 %general-entities;
6
7 <!ENTITY babel-download-http "https://files.pythonhosted.org/packages/source/B/Babel/Babel-&babel-version;.tar.gz">
8 <!ENTITY babel-download-ftp " ">
9 <!ENTITY babel-md5sum "&babel-md5sum;">
10 <!ENTITY babel-size "8.9 MB">
11 <!ENTITY babel-buildsize "103 MB (add 30 MB for tests)">
12 <!ENTITY babel-time "less than 0.1 SBU (0.1 SBU for tests)">
13]>
14
15 <sect2 id="babel" xreflabel="Babel-&babel-version;">
16
17 <title>Babel-&babel-version;</title>
18
19 <indexterm zone="babel">
20 <primary sortas="a-Babel">Babel</primary>
21 </indexterm>
22
23 <sect3 role="package">
24 <title>Introduction to Babel Module</title>
25
26 <para>
27 The <application>Babel</application> package is an integrated
28 collection of utilities that assist in internationalizing and
29 localizing Python applications, with an emphasis on web-based
30 applications.
31 </para>
32
33 &lfs121_checked;
34
35 <bridgehead renderas="sect4">Package Information</bridgehead>
36 <itemizedlist spacing="compact">
37 <listitem>
38 <para>
39 Download (HTTP): <ulink url="&babel-download-http;"/>
40 </para>
41 </listitem>
42 <listitem>
43 <para>
44 Download (FTP): <ulink url="&babel-download-ftp;"/>
45 </para>
46 </listitem>
47 <listitem>
48 <para>
49 Download MD5 sum: &babel-md5sum;
50 </para>
51 </listitem>
52 <listitem>
53 <para>
54 Download size: &babel-size;
55 </para>
56 </listitem>
57 <listitem>
58 <para>
59 Estimated disk space required: &babel-buildsize;
60 </para>
61 </listitem>
62 <listitem>
63 <para>
64 Estimated build time: &babel-time;
65 </para>
66 </listitem>
67 </itemizedlist>
68
69 <bridgehead renderas="sect4">Babel Dependencies</bridgehead>
70
71 <bridgehead renderas="sect5">Required</bridgehead>
72 <para role="required">
73 <xref linkend="pytz"/>
74 </para>
75
76 <bridgehead renderas="sect5">Optional (for testing)</bridgehead>
77 <para role="optional">
78 <xref linkend="pytest"/>,
79 <xref linkend="python3"/> (with the sqlite module),
80 <ulink url="https://pypi.org/project/freezegun/">freezegun</ulink>==0.3.12, and
81 <ulink url="https://pypi.org/project/pytest-cov/">pytest-cov</ulink>
82 </para>
83
84 </sect3>
85
86 <sect3 role="installation">
87 <title>Installation of Babel</title>
88 <para> Build the module: </para>
89
90&build-wheel;
91
92 <para>
93 Now, as the <systemitem class="username">root</systemitem> user:
94 </para>
95
96<screen role="root"><userinput>&install-wheel; Babel</userinput></screen>
97
98 <para>
99 Assuming <xref linkend="pytest"/> is installed, but the other optional
100 dependencies are not, the installation can be tested with the following
101 commands:
102 </para>
103
104<screen remap="test"><userinput>python3 -m venv --system-site-packages testenv &amp;&amp;
105source testenv/bin/activate &amp;&amp;
106pip3 install pytest-cov freezegun==0.3.12 &amp;&amp;
107python3 /usr/bin/pytest<!-- no && because of the error -->
108deactivate</userinput></screen>
109<!--
110 <para>
111 One test involving zh_TW locale is known to fail.
112 </para>
113 -->
114 </sect3>
115
116 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
117 href="../../../xincludes/pip3-cmd-explain.xml"/>
118
119 <sect3 role="content">
120 <title>Contents</title>
121
122 <segmentedlist>
123 <segtitle>Installed Programs</segtitle>
124 <segtitle>Installed Libraries</segtitle>
125 <segtitle>Installed Directories</segtitle>
126
127 <seglistitem>
128 <seg>
129 pybabel
130 </seg>
131 <seg>None</seg>
132 <seg>
133 /usr/lib/python&python3-majorver;/site-packages/babel and
134 /usr/lib/python&python3-majorver;/site-packages/Babel-&babel-version;.dist-info
135 </seg>
136 </seglistitem>
137 </segmentedlist>
138
139 <variablelist>
140 <bridgehead renderas="sect5">Short Descriptions</bridgehead>
141 <?dbfo list-presentation="list"?>
142 <?dbhtml list-presentation="table"?>
143
144 <varlistentry id="pybabel">
145 <term><command>pybabel</command></term>
146 <listitem>
147 <para>
148 is a command-line interface for working with message
149 catalogs
150 </para>
151 <indexterm zone="babel pybabel">
152 <primary sortas="b-pybabel">pybabel</primary>
153 </indexterm>
154 </listitem>
155 </varlistentry>
156 </variablelist>
157
158 </sect3>
159
160 </sect2>
Note: See TracBrowser for help on using the repository browser.