source: general/prog/mercurial.xml@ 427b46a

11.0 11.1 11.2 11.3 12.0 12.1 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 427b46a was 6e2729c, checked in by Douglas R. Reno <renodr@…>, 3 years ago

Update to samba-4.14.0
Update to mercurial-5.7.1
Update to git-2.30.2
Update to Thunderbird-78.8.1
Update to iso-codes-4.6.0

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@24365 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 10.0 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 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 mercurial-download-http "https://www.mercurial-scm.org/release/mercurial-&mercurial-version;.tar.gz">
8 <!ENTITY mercurial-download-ftp " ">
9 <!ENTITY mercurial-md5sum "0f99d4308e5a5a60198d7b6befd930c4">
10 <!ENTITY mercurial-size "7.5 MB">
11 <!ENTITY mercurial-buildsize "112 MB (with docs, add 1.4 GB for tests)">
12 <!ENTITY mercurial-time "0.3 SBU (with docs, add 19 SBU for tests using -j4)">
13]>
14
15<sect1 id="mercurial" xreflabel="Mercurial-&mercurial-version;">
16 <?dbhtml filename="mercurial.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>Mercurial-&mercurial-version;</title>
24
25 <indexterm zone="mercurial">
26 <primary sortas="a-mercurial">mercurial</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to Mercurial</title>
31
32 <para>
33 <application>Mercurial</application> is a distributed source control
34 management tool similar to <application>Git</application> and
35 <application>Bazaar</application>. <application>Mercurial</application>
36 is written in <application>Python</application> and is used by projects
37 such as Mozilla and Vim.
38 </para>
39
40 &lfs101_checked;
41
42 <bridgehead renderas="sect3">Package Information</bridgehead>
43 <itemizedlist spacing="compact">
44 <listitem>
45 <para>
46 Download (HTTP): <ulink url="&mercurial-download-http;"/>
47 </para>
48 </listitem>
49 <listitem>
50 <para>
51 Download (FTP): <ulink url="&mercurial-download-ftp;"/>
52 </para>
53 </listitem>
54 <listitem>
55 <para>
56 Download MD5 sum: &mercurial-md5sum;
57 </para>
58 </listitem>
59 <listitem>
60 <para>
61 Download size: &mercurial-size;
62 </para>
63 </listitem>
64 <listitem>
65 <para>
66 Estimated disk space required: &mercurial-buildsize;
67 </para>
68 </listitem>
69 <listitem>
70 <para>
71 Estimated build time: &mercurial-time;
72 </para>
73 </listitem>
74 </itemizedlist>
75
76 <bridgehead renderas="sect3">Mercurial Dependencies</bridgehead>
77
78 <!--
79 <bridgehead renderas="sect4">Required</bridgehead>
80 <para role="required">
81 <xref linkend="python2"/>
82 </para>
83 -->
84
85 <bridgehead renderas="sect4">Optional</bridgehead>
86 <para role="optional">
87 <xref linkend="docutils"/>
88 (required to build the documentation),
89 <xref linkend="git"/>,
90 <xref linkend="gnupg2"/> (<command>gpg2</command> with Python bindings),
91 <xref role="runtime" linkend="openssh"/>
92 (runtime, to access ssh://... repositories),
93 <xref linkend="pygments"/>,
94 <xref linkend="rust"/>,
95 <xref linkend="subversion"/> (with Python bindings),
96 <ulink url="https://launchpad.net/bzr">Bazaar</ulink>,
97 <ulink url="http://www.nongnu.org/cvs/">CVS</ulink>,
98 <ulink url="https://pypi.python.org/pypi/pyflakes">pyflakes</ulink>, and
99 <ulink url="https://www.pyopenssl.org/en/stable/">pyOpenSSL</ulink>
100
101 </para>
102
103 <para condition="html" role="usernotes">User Notes:
104 <ulink url="&blfs-wiki;/mercurial"/></para>
105
106 </sect2>
107
108 <sect2 role="installation">
109 <title>Installation of Mercurial</title>
110 <!-- Rust port is now part of the standard tests -->
111
112 <para>
113 First, force the build system to use Python 3:
114 </para>
115
116<screen><userinput remap="pre">export PYTHON=python3</userinput></screen>
117
118 <para>
119 Build <application>Mercurial</application> by issuing the following
120 command:
121 </para>
122
123<screen><userinput>make build</userinput></screen>
124
125 <para>
126 To build the documentation (requires <xref linkend="docutils"/>), issue:
127 </para>
128
129<screen remap="doc"><userinput>make doc</userinput></screen>
130
131 <para>
132 To run the test suite, issue:
133 </para>
134<screen remap="test"><userinput>TESTFLAGS="-j<replaceable>&lt;N&gt;</replaceable> --tmpdir tmp --blacklist blacklists/fsmonitor --blacklist blacklists/linux-vfat" make check</userinput></screen>
135<!-- The blacklists have to be checked every release of Mercurial, do a listing
136 of tests/blacklists, but do not include the README. -->
137
138 <para>
139 where <replaceable>&lt;N&gt;</replaceable> is an integer between one
140 and the number of ( processor X threads ), inclusive. In order to
141 investigate any apparently failing tests, you may use the
142 <command>run-tests.py</command> script. To see the almost forty switches,
143 some of them very useful, issue <command>tests/run-tests.py
144 --help</command>. Running the following commands, you will execute only
145 the tests that failed before:
146 </para>
147
148<screen remap="test"><userinput>pushd tests &amp;&amp;
149 rm -rf tmp &amp;&amp;
150 ./run-tests.py --tmpdir tmp test-gpg.t
151popd</userinput></screen>
152
153 <para>
154 Normally, the previous failures will be confirmed. However, if
155 you add the switch <option>--debug</option> before
156 <option>--tmpdir</option>, and run again, some failures are gone, which
157 seems to be a problem with the test suite. If this happens, normally,
158 from now on, there will be no more such failures whether you use the
159 debug switch or not.
160 <!--One test, test-doctest.py, is known to fail.-->
161 </para>
162
163 <para>
164 An interesting switch is <option>--time</option>, which will generate at
165 the end of the test suite execution, a table with all executed tests and
166 respective start, end, user, system and real times. Note that the
167 switches may be used with <command>make check</command> by including
168 them in the <envar>TESTFLAGS</envar> environment variable.
169 </para>
170
171 <para>
172 Install <application>Mercurial</application> by running the following
173 command (as <systemitem class="username">root</systemitem>):
174 </para>
175
176<screen role="root"><userinput>make PREFIX=/usr install-bin</userinput></screen>
177
178 <para>
179 If you built the documentation, install it by running the following
180 command (as <systemitem class="username">root</systemitem>):
181 </para>
182
183<screen role="root"
184 remap="doc"><userinput>make PREFIX=/usr install-doc</userinput></screen>
185
186 <para>
187 Next, clean up the environment variable set earlier:
188 </para>
189
190<screen><userinput>unset PYTHON</userinput></screen>
191
192 <para>
193 After installation, two very quick and simple tests should run
194 correctly. The first one needs some configuration:
195 </para>
196
197<screen><userinput>cat &gt;&gt; ~/.hgrc &lt;&lt; "EOF"
198<literal>[ui]
199username = <replaceable>&lt;user_name&gt; &lt;user@mail&gt;</replaceable></literal>
200EOF</userinput></screen>
201
202 <para>
203 where you must replace &lt;user_name&gt; and &lt;your@mail&gt; (mail
204 is optional and can be omitted). With the user identity defined, run
205 <command>hg debuginstall</command> and several lines will be displayed,
206 the last one reading "no problems detected". Another quick and simple
207 test is just <command>hg</command>, which should output basic commands
208 that can be used with <command>hg</command>.
209 </para>
210
211 </sect2>
212
213<!--
214 <sect2 role="commands">
215 <title>Command Explanations</title>
216
217 <para>
218 <command>2to3 -w doc/hgmanpage.py</command>: Since <application>
219 Python 3</application> is used with docutils, one file needs to be
220 converted in order to be compatible.
221 </para>
222
223 </sect2>
224-->
225
226 <sect2 role="configuration">
227 <title>Configuring Mercurial</title>
228
229 <sect3 id="mercurial-config">
230 <title>Config Files</title>
231
232 <para>
233 <filename>/etc/mercurial/hgrc</filename> and
234 <filename>~/.hgrc</filename>
235 </para>
236
237 <indexterm zone="mercurial mercurial-config">
238 <primary sortas="e-etc-mercurial-hgrc">/etc/mercurial/hgrc</primary>
239 </indexterm>
240
241 <indexterm zone="mercurial mercurial-config">
242 <primary sortas="e-AA.hgrc">~/.hgrc</primary>
243 </indexterm>
244
245 <para>
246 The great majority of extensions are disabled by default. Run
247 <command>hg help extensions</command> if you need to enable any, e.g.
248 when investigating test failures. You will obtain the lists of enabled
249 and disabled extensions, and more information, such as how to enable
250 or disable them using configuration files.
251 </para>
252
253 <para>
254 If you have installed <xref linkend="make-ca"/> and want
255 <application>Mercurial</application> to use them, as the <systemitem
256 class="username">root</systemitem> user, issue:
257 </para>
258
259<screen role="root"><userinput>install -v -d -m755 /etc/mercurial &amp;&amp;
260cat &gt; /etc/mercurial/hgrc &lt;&lt; "EOF"
261<literal>[web]
262cacerts = /etc/pki/tls/certs/ca-bundle.crt</literal>
263EOF</userinput></screen>
264
265 </sect3>
266
267 </sect2>
268
269 <sect2 role="content">
270 <title>Contents</title>
271
272 <segmentedlist>
273 <segtitle>Installed Programs</segtitle>
274 <segtitle>Installed Libraries</segtitle>
275 <segtitle>Installed Directories</segtitle>
276
277 <seglistitem>
278 <seg>
279 hg
280 </seg>
281 <seg>
282 several internal modules under
283 /usr/lib/python&python3-majorver;/site-packages/mercurial
284 </seg>
285 <seg>
286 /etc/mercurial and
287 /usr/lib/python&python3-majorver;/site-packages/{hgdemandimport,hgext,hgext3rd,mercurial}
288 </seg>
289 </seglistitem>
290 </segmentedlist>
291
292 <variablelist>
293 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
294 <?dbfo list-presentation="list"?>
295 <?dbhtml list-presentation="table"?>
296
297 <varlistentry id="hg">
298 <term><command>hg</command></term>
299 <listitem>
300 <para>
301 is the mercurial version control system
302 </para>
303 <indexterm zone="mercurial hg">
304 <primary sortas="b-hg">hg</primary>
305 </indexterm>
306 </listitem>
307 </varlistentry>
308
309 </variablelist>
310
311 </sect2>
312
313</sect1>
Note: See TracBrowser for help on using the repository browser.