source: general/prog/mercurial.xml@ 6bd5fae

lazarus trunk
Last change on this file since 6bd5fae was 2f5071a6, checked in by Bruce Dubbs <bdubbs@…>, 3 months ago

Update to mercurial-6.7.1.

  • Property mode set to 100644
File size: 11.4 KB
RevLine 
[ab4fdfc]1<?xml version="1.0" encoding="UTF-8"?>
[f5a75ae]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
[28320bf4]7 <!ENTITY mercurial-download-http "https://www.mercurial-scm.org/release/mercurial-&mercurial-version;.tar.gz">
[f5a75ae]8 <!ENTITY mercurial-download-ftp " ">
[2f5071a6]9 <!ENTITY mercurial-md5sum "2cbb18b33f3a6cc4debd745b60246b28">
[ea781cd]10 <!ENTITY mercurial-size "7.9 MB">
[e972eb7]11 <!ENTITY mercurial-buildsize "80 MB (with docs, add 1.6 GB for tests)">
12 <!ENTITY mercurial-time "0.4 SBU (with docs; add 12 SBU for tests; both using parallelism=8)">
[f5a75ae]13]>
14
[263da2b]15<sect1 id="mercurial" xreflabel="Mercurial-&mercurial-version;">
[f5a75ae]16 <?dbhtml filename="mercurial.html"?>
17
18
[263da2b]19 <title>Mercurial-&mercurial-version;</title>
[f5a75ae]20
21 <indexterm zone="mercurial">
22 <primary sortas="a-mercurial">mercurial</primary>
23 </indexterm>
24
25 <sect2 role="package">
26 <title>Introduction to Mercurial</title>
27
[de33b2a]28 <para>
29 <application>Mercurial</application> is a distributed source control
30 management tool similar to <application>Git</application> and
31 <application>Bazaar</application>. <application>Mercurial</application>
32 is written in <application>Python</application> and is used by projects
[0f124fa]33 such as Mozilla for Firefox and Thunderbird.
[de33b2a]34 </para>
[f5a75ae]35
[f722f5b]36 &lfs121_checked;
[f5a75ae]37
38 <bridgehead renderas="sect3">Package Information</bridgehead>
39 <itemizedlist spacing="compact">
40 <listitem>
[de33b2a]41 <para>
42 Download (HTTP): <ulink url="&mercurial-download-http;"/>
43 </para>
[f5a75ae]44 </listitem>
45 <listitem>
[de33b2a]46 <para>
47 Download (FTP): <ulink url="&mercurial-download-ftp;"/>
48 </para>
[f5a75ae]49 </listitem>
50 <listitem>
[de33b2a]51 <para>
52 Download MD5 sum: &mercurial-md5sum;
53 </para>
[f5a75ae]54 </listitem>
55 <listitem>
[de33b2a]56 <para>
57 Download size: &mercurial-size;
58 </para>
[f5a75ae]59 </listitem>
60 <listitem>
[de33b2a]61 <para>
62 Estimated disk space required: &mercurial-buildsize;
63 </para>
[f5a75ae]64 </listitem>
65 <listitem>
[de33b2a]66 <para>
67 Estimated build time: &mercurial-time;
68 </para>
[f5a75ae]69 </listitem>
70 </itemizedlist>
71
72 <bridgehead renderas="sect3">Mercurial Dependencies</bridgehead>
73
74 <bridgehead renderas="sect4">Optional</bridgehead>
75 <para role="optional">
[e972eb7]76 <xref linkend="docutils"/>
77 (required to build the documentation),
78 <xref linkend="git"/>,
79 <xref linkend="gpgme"/> (with Python bindings),
80 <xref role="runtime" linkend="openssh"/>
81 (runtime, to access ssh://... repositories),
82 <xref linkend="pygments"/>,
83 <xref linkend="rust"/> (see <filename>rust/README.rst</filename> and <filename>rust/rhg/README.md</filename>),
84 <xref linkend="subversion"/> (with Python bindings),
85 <ulink url="https://launchpad.net/bzr">Bazaar</ulink>,
86 <ulink url="https://www.nongnu.org/cvs/">CVS</ulink>,
87 <ulink url="https://pypi.python.org/pypi/pyflakes">pyflakes</ulink>,
88 <ulink url="https://www.pyopenssl.org/en/stable/">pyOpenSSL</ulink>, and
89 <ulink url="https://github.com/google/re2/">re2</ulink>
[f5a75ae]90 </para>
91
92 </sect2>
93
94 <sect2 role="installation">
95 <title>Installation of Mercurial</title>
[d445316]96 <!-- Rust port is now part of the standard tests -->
97
[de33b2a]98 <para>
99 Build <application>Mercurial</application> by issuing the following
100 command:
101 </para>
[0d7900a]102
[f5a75ae]103<screen><userinput>make build</userinput></screen>
[0d7900a]104
[de33b2a]105 <para>
106 To build the documentation (requires <xref linkend="docutils"/>), issue:
107 </para>
[f5a75ae]108
[d445316]109<screen remap="doc"><userinput>make doc</userinput></screen>
[e972eb7]110<!--
111 The tests do not hang. Better to just report what failed.
[2ecc682]112 <para>
113 If you wish to run the tests, the rust tests must be removed as they are
114 currently broken due to syntax errors. To do this, issue:
115 </para>
116
117<screen><userinput>sed -i '138,142d' Makefile</userinput></screen>
[e972eb7]118-->
[c1ced74d]119 <para>
[f183c1c]120 To run the test suite, issue:
[c1ced74d]121 </para>
[634e2a1]122<screen remap="test"><userinput>TESTFLAGS="-j<replaceable>&lt;N&gt;</replaceable> --tmpdir tmp" make check</userinput></screen>
[0f16c7cd]123<!-- The blacklists have to be checked every release of Mercurial, do a listing
[e440af5]124 of tests/blacklists, but do not include the README.
[634e2a1]125 For 6.4.1 removing the -blacklist entries did not affect the test results
126 although blacklists/fsmonitor and blacklists/linux-vfat still exist. -->
[23209a71]127
[de33b2a]128 <para>
129 where <replaceable>&lt;N&gt;</replaceable> is an integer between one
[e972eb7]130 and the number of ( processor X threads ), inclusive. Tests may
[634e2a1]131 fail because some error messages have changed in Python or
132 some deprecation warnings are printed that were not present when the
[e972eb7]133 test was designed. Two tests are known to fail: test-duplicateoptions.py
134 and test-profile.t.
135 </para>
[f183c1c]136 <!--
[f19b4b89]137 # Ran 908 tests, 65 skipped, 4 failed. real 10m37.422s -bdubbs 6 Sep 22.
138 # Ran 881 tests,102 skipped, 23 failed. -plabs 17 Nov 22.
139 # Ran 919 tests, 64 skipped, 23 failed. real 10m25.285s -bdubbs 10 Jan 23.
140 # Ran 893 tests,101 skipped, 9 failed. real 29m03.014s -bdubbs 5 Mar 23.
141 # Ran 938 tests, 64 skipped, 8 failed. real 32m13.014s -bdubbs 17 Apr 23.
142 # Ran 935 tests, 69 skipped, 8 failed. real 26m15.875s -bdubbs 10 Jun 23.
[a887a08]143 # Ran 940 tests, 64 skipped, 8 failed. real omitted -bdubbs 26 Jun 23.
[ea781cd]144 # Ran 948 tests, 66 skipped, 0 failed. -pierre 12 Jul 23 (mercurial-6.5).
[10c5df8]145 # Ran 950 tests, 65 skipped, 1 failed. -pierre 8 Nov 23 (mercurial-6.5.3).
[f300248]146 # Ran 948 tests, 66 skipped, 0 failed. -renodr 22 Nov 23 (mercurial-6.6).
[e972eb7]147 # Ran 946 tests, 71 skipped, 2 failed. -bdubbs 20 Mar 24 (mercurial-6.7).
[1fe05eb]148 -->
[e972eb7]149 <para>
[1a7bbb8]150 In order to
[de33b2a]151 investigate any apparently failing tests, you may use the
152 <command>run-tests.py</command> script. To see the almost forty switches,
153 some of them very useful, issue <command>tests/run-tests.py
154 --help</command>. Running the following commands, you will execute only
155 the tests that failed before:
156 </para>
[f60ecce]157
[a42c273]158<screen remap="test"><userinput>pushd tests &amp;&amp;
[2beaab8]159 rm -rf tmp &amp;&amp;
[b93e2bde]160 ./run-tests.py --tmpdir tmp test-gpg.t
[768e6fd]161popd</userinput></screen>
[f5a75ae]162
[de33b2a]163 <para>
[6148e28]164 Normally, the previous failures will be reproducible. However, if
[de33b2a]165 you add the switch <option>--debug</option> before
[6148e28]166 <option>--tmpdir</option>, and run the tests again, some failures may
167 disappear, which is a problem with the test suite. If this happens,
168 there will be no more of these failures even if you do not pass the
169 --debug switch again.
[de33b2a]170 </para>
[2beaab8]171
[de33b2a]172 <para>
[7a9a7b26]173 An interesting switch is <option>--time</option>, which will generate a
174 table of all the executed tests and their respective start, end, user,
[6148e28]175 system and real times once the tests are complete. Note that these
[de33b2a]176 switches may be used with <command>make check</command> by including
177 them in the <envar>TESTFLAGS</envar> environment variable.
178 </para>
[f60ecce]179
[de33b2a]180 <para>
181 Install <application>Mercurial</application> by running the following
182 command (as <systemitem class="username">root</systemitem>):
183 </para>
[f5a75ae]184
185<screen role="root"><userinput>make PREFIX=/usr install-bin</userinput></screen>
186
[de33b2a]187 <para>
188 If you built the documentation, install it by running the following
189 command (as <systemitem class="username">root</systemitem>):
190 </para>
[f5a75ae]191
[a42c273]192<screen role="root"
193 remap="doc"><userinput>make PREFIX=/usr install-doc</userinput></screen>
[f5a75ae]194
[de33b2a]195 <para>
[8558044]196 After installation, two very quick and simple tests should run
[de33b2a]197 correctly. The first one needs some configuration:
198 </para>
[ab0c555]199
200<screen><userinput>cat &gt;&gt; ~/.hgrc &lt;&lt; "EOF"
201<literal>[ui]
[2beaab8]202username = <replaceable>&lt;user_name&gt; &lt;user@mail&gt;</replaceable></literal>
[ab0c555]203EOF</userinput></screen>
204
[de33b2a]205 <para>
206 where you must replace &lt;user_name&gt; and &lt;your@mail&gt; (mail
207 is optional and can be omitted). With the user identity defined, run
208 <command>hg debuginstall</command> and several lines will be displayed,
209 the last one reading "no problems detected". Another quick and simple
210 test is just <command>hg</command>, which should output basic commands
211 that can be used with <command>hg</command>.
212 </para>
[ab0c555]213
[f5a75ae]214 </sect2>
215
[d445316]216<!--
[f0190231]217 <sect2 role="commands">
218 <title>Command Explanations</title>
219
220 <para>
[586bd9ff]221 <command>2to3 -w doc/hgmanpage.py</command>: Since <application>
[f0190231]222 Python 3</application> is used with docutils, one file needs to be
223 converted in order to be compatible.
224 </para>
225
[d445316]226 </sect2>
227-->
[8558044]228
[431b5b17]229 <sect2 role="configuration">
230 <title>Configuring Mercurial</title>
231
232 <sect3 id="mercurial-config">
233 <title>Config Files</title>
234
235 <para>
[28320bf4]236 <filename>/etc/mercurial/hgrc</filename> and
237 <filename>~/.hgrc</filename>
[431b5b17]238 </para>
239
240 <indexterm zone="mercurial mercurial-config">
241 <primary sortas="e-etc-mercurial-hgrc">/etc/mercurial/hgrc</primary>
242 </indexterm>
243
[28320bf4]244 <indexterm zone="mercurial mercurial-config">
245 <primary sortas="e-AA.hgrc">~/.hgrc</primary>
246 </indexterm>
247
[de33b2a]248 <para>
249 The great majority of extensions are disabled by default. Run
250 <command>hg help extensions</command> if you need to enable any, e.g.
[6148e28]251 when investigating test failures. This will output a list of enabled
252 and disabled extensions, as well as more information such as how to
253 enable or disable extensions using configuration files.
[de33b2a]254 </para>
[28320bf4]255
[de33b2a]256 <para>
257 If you have installed <xref linkend="make-ca"/> and want
[d761e0a]258 <application>Mercurial</application> to use the certificates,
259 as the <systemitem class="username">root</systemitem> user, issue:
[de33b2a]260 </para>
[431b5b17]261
262<screen role="root"><userinput>install -v -d -m755 /etc/mercurial &amp;&amp;
[a20c505f]263cat &gt; /etc/mercurial/hgrc &lt;&lt; "EOF"
[431b5b17]264<literal>[web]
[5c3f3856]265cacerts = /etc/pki/tls/certs/ca-bundle.crt</literal>
[431b5b17]266EOF</userinput></screen>
267
268 </sect3>
269
270 </sect2>
271
[f5a75ae]272 <sect2 role="content">
273 <title>Contents</title>
274
275 <segmentedlist>
276 <segtitle>Installed Programs</segtitle>
277 <segtitle>Installed Libraries</segtitle>
278 <segtitle>Installed Directories</segtitle>
279
280 <seglistitem>
[8ad9b196]281 <seg>
282 hg
283 </seg>
284 <seg>
285 several internal modules under
[d445316]286 /usr/lib/python&python3-majorver;/site-packages/mercurial
[8ad9b196]287 </seg>
288 <seg>
[f183c1c]289 /etc/mercurial,
290 /usr/lib/python&python3-majorver;/site-packages/hgdemandimport,
291 /usr/lib/python&python3-majorver;/site-packages/hgext,
292 /usr/lib/python&python3-majorver;/site-packages/hgext3rd,
293 /usr/lib/python&python3-majorver;/site-packages/mercurial, and
294 /usr/lib/python&python3-majorver;/site-packages/mercurial-&mercurial-version;-py&python3-majorver;.egg-info
[8ad9b196]295 </seg>
[f5a75ae]296 </seglistitem>
297 </segmentedlist>
298
299 <variablelist>
300 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
301 <?dbfo list-presentation="list"?>
302 <?dbhtml list-presentation="table"?>
303
304 <varlistentry id="hg">
305 <term><command>hg</command></term>
306 <listitem>
[de33b2a]307 <para>
[4c24eb0a]308 is the mercurial version control system
[de33b2a]309 </para>
[f5a75ae]310 <indexterm zone="mercurial hg">
311 <primary sortas="b-hg">hg</primary>
312 </indexterm>
313 </listitem>
314 </varlistentry>
315
316 </variablelist>
317
318 </sect2>
319
320</sect1>
Note: See TracBrowser for help on using the repository browser.