Changeset 2beaab8
- Timestamp:
- 02/03/2016 05:22:58 PM (9 years ago)
- Branches:
- 10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 12.2, 7.10, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, gimp3, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, lazarus, lxqt, nosym, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, trunk, upgradedb, xry111/for-12.3, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/spidermonkey128, xry111/test-20220226, xry111/xf86-video-removal
- Children:
- 2b64864b
- Parents:
- 28320bf4
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
general.ent
r28320bf4 r2beaab8 1 1 <!-- $LastChangedBy$ $Date$ --> 2 2 3 <!ENTITY day "0 2"> <!-- Always 2 digits -->3 <!ENTITY day "03"> <!-- Always 2 digits --> 4 4 <!ENTITY month "02"> <!-- Always 2 digits --> 5 5 <!ENTITY year "2016"> … … 7 7 <!ENTITY copyholder "The BLFS Development Team"> 8 8 <!ENTITY version "&year;-&month;-&day;"> 9 <!ENTITY releasedate "February 2nd &year;">9 <!ENTITY releasedate "February 3rd &year;"> 10 10 <!ENTITY pubdate "&year;-&month;-&day;"> <!-- metadata req. by TLDP --> 11 11 <!ENTITY blfs-version "svn"> <!-- svn|[release #] --> -
general/genutils/iso-codes.xml
r28320bf4 r2beaab8 5 5 %general-entities; 6 6 7 <!-- 8 <!ENTITY iso-codes-download-http "http://pkg-isocodes.alioth.debian.org/downloads/iso-codes-&iso-codes-version;.tar.xz"> 9 --> 10 <!ENTITY iso-codes-download-http "http://pkg-isocodes.alioth.debian.org/downloads/iso-codes-&iso-codes-version;.tar.xz"> 7 <!ENTITY iso-codes-download-http "https://pkg-isocodes.alioth.debian.org/downloads/iso-codes-&iso-codes-version;.tar.xz"> 11 8 <!ENTITY iso-codes-download-ftp " "> 12 <!ENTITY iso-codes-md5sum " 01c02633ede9d6fdf4b5f99d5dbd47b2">9 <!ENTITY iso-codes-md5sum "890a08d4f962748e0a0758a8aa471896"> 13 10 <!ENTITY iso-codes-size "3.6 MB"> 14 11 <!ENTITY iso-codes-buildsize "111 MB (with tests)"> -
general/prog/mercurial.xml
r28320bf4 r2beaab8 99 99 <screen><userinput>make doc</userinput></screen> 100 100 101 <para>Running the test suite is optional. If some thest fails, it can be 102 disabled. To test the results in the subdiretory <filename 103 class="directory">tests/tmp</filename>, skipping failing tests, 101 <para>Running the test suite is optional. Tests which fail may be disabled, 102 adding each one to <filename>tests/blacklists/failed-tests</filename>. In 103 order to execute the test suite using the temporary directory <filename 104 class="directory">tests/tmp</filename> and skipping the failing tests, 104 105 issue:</para> 105 106 … … 110 111 test-gpg.t</literal> 111 112 EOF 113 112 114 rm -rf tests/tmp && 115 113 116 TESTFLAGS="-j<replaceable><N></replaceable> --tmpdir tmp --blacklist blacklists/failed-tests" \ 114 117 make check</userinput></screen> … … 122 125 before:</para> 123 126 124 <screen><userinput>pushd tests && 125 rm -rf tmp && 126 ./run-tests.py --debug --tmpdir tmp \ 127 test-convert-svn-source.t \ 128 test-convert-hg-svn.t \ 129 test-gpg.t && 127 <screen><userinput>pushd tests && 128 rm -rf tmp && 129 130 ./run-tests.py --debug --tmpdir tmp \ 131 test-convert-svn-source.t \ 132 test-convert-hg-svn.t \ 133 test-gpg.t && 130 134 popd</userinput></screen> 131 135 132 <para>Normally, failures will be repeated. However, if you add the switch 133 "--debug" before "--tmpdir", and run again, the failures are gone. Normally, 134 from now on, there will be no more failure whether you use the debug switch 135 or not. An interesting switch is "--time", which will generated at the end 136 of the test suite execution, a table with all executed tests and respective 137 start, end, user, system and real times. Notice that the switches may be 138 used with <command>make check</command>, in the 136 <para>Normally, the previous failures will be confirmed. However, if you add 137 the switch "--debug" before "--tmpdir", and run again, some failures are 138 gone, which seems to be a problem with the test suite. If this happens, 139 normally, from now on, there will be no more such failures whether you use 140 the debug switch or not.</para> 141 142 <para>An interesting switch is "--time", which will generated at the end of 143 the test suite execution, a table with all executed tests and respective 144 start, end, user, system and real times. Notice that the switches may be 145 used with <command>make check</command>, including them in the 139 146 <envar>TESTFLAGS</envar> environment variable.</para> 140 147 … … 154 161 <screen><userinput>cat >> ~/.hgrc << "EOF" 155 162 <literal>[ui] 156 username = <user_name> <your@mail></literal>163 username = <replaceable><user_name> <user@mail></replaceable></literal> 157 164 EOF</userinput></screen> 158 165 … … 185 192 </indexterm> 186 193 187 <para> 188 A great majority of extensions are disabled by default. Run <command>hg 189 help extensions</command> if you need to enable any, e.g. when 190 investigating test failures, and use one of the configuration files to 191 enable it. 192 </para> 193 194 <para> 195 If you have installed the <xref linkend="cacerts"/> and you want 196 <application>Mercurial</application> to use them, as the 197 <systemitem class="username">root</systemitem> user: 198 </para> 194 <para>The great majority of extensions are disabled by default. Run 195 <command>hg help extensions</command> if you need to enable any, e.g. 196 when investigating test failures. You will obtain the lists of enabled and 197 disabled extensions, and more information, such as how to enable or 198 disable them using configuration files.</para> 199 200 <para>If you have installed the <xref linkend="cacerts"/> and want 201 <application>Mercurial</application> to use them, as the <systemitem 202 class="username">root</systemitem> user, issue:</para> 199 203 200 204 <screen role="root"><userinput>install -v -d -m755 /etc/mercurial && 201 cat > /etc/mercurial/hgrc << "EOF"205 cat >> /etc/mercurial/hgrc << "EOF" 202 206 <literal>[web] 203 207 cacerts = /etc/ssl/ca-bundle.crt</literal> -
introduction/welcome/changelog.xml
r28320bf4 r2beaab8 44 44 45 45 --> 46 47 <listitem> 48 <para>February 3rd, 2016</para> 49 <itemizedlist> 50 <listitem> 51 <para>[fernando] - Update to iso-codes-3.65. Fixes 52 <ulink url="&blfs-ticket-root;7423 ">#7423 </ulink>.</para> 53 </listitem> 54 <listitem> 55 <para>[fernando] - Update to nss-3.22. Fixes 56 <ulink url="&blfs-ticket-root;7422 ">#7422 </ulink>.</para> 57 </listitem> 58 </itemizedlist> 59 </listitem> 46 60 47 61 <listitem> -
packages.ent
r28320bf4 r2beaab8 25 25 <!ENTITY mitkrb-version "&mitkrb-major-version;"> 26 26 <!ENTITY nettle-version "3.2"> 27 <!ENTITY nss-minor-version "2 1">27 <!ENTITY nss-minor-version "22"> 28 28 <!-- normal 29 29 <!ENTITY nss-micro-version "1"> … … 101 101 <!ENTITY icu-dl-version "&icu-major;_&icu-minor;"><!-- _&icu-patch;--> 102 102 103 <!ENTITY iso-codes-version "3.6 4">103 <!ENTITY iso-codes-version "3.65"> 104 104 <!ENTITY JS-version "17.0.0"> 105 105 <!ENTITY JS2-version "24.2.0"> -
postlfs/security/nss.xml
r28320bf4 r2beaab8 15 15 <!--<!ENTITY nss-download-ftp "ftp://&nss-url;/NSS_3_&nss-minor-version;_RTM/src/nss-&nss-version;.tar.gz"> --> 16 16 17 <!ENTITY nss-md5sum " 3c8b2ed880dd3a8d86c9e0151afe6eba">17 <!ENTITY nss-md5sum "07dfe5bed80cf44caa9a06e8eb043742"> 18 18 <!ENTITY nss-size "6.7 MB"> 19 19 <!ENTITY nss-buildsize "91 MB"> … … 127 127 128 128 cd nss && 129 make BUILD_OPT=1 \ 129 130 make -j1 BUILD_OPT=1 \ 130 131 NSPR_INCLUDE_DIR=/usr/include/nspr \ 131 132 USE_SYSTEM_ZLIB=1 \ 132 133 ZLIB_LIBS=-lz \ 133 134 $([ $(uname -m) = x86_64 ] && echo USE_64=1) \ 134 $([ -f /usr/include/sqlite3.h ] && echo NSS_USE_SYSTEM_SQLITE=1) -j1</userinput></screen>135 $([ -f /usr/include/sqlite3.h ] && echo NSS_USE_SYSTEM_SQLITE=1)</userinput></screen> 135 136 136 137 <para> … … 142 143 </para> 143 144 144 <screen role="root"><userinput>cd ../dist && 145 install -v -m755 Linux*/lib/*.so /usr/lib && 146 install -v -m644 Linux*/lib/{*.chk,libcrmf.a} /usr/lib && 147 install -v -m755 -d /usr/include/nss && 148 cp -v -RL {public,private}/nss/* /usr/include/nss && 149 chmod -v 644 /usr/include/nss/* && 145 <screen role="root"><userinput>cd ../dist && 146 147 install -v -m755 Linux*/lib/*.so /usr/lib && 148 install -v -m644 Linux*/lib/{*.chk,libcrmf.a} /usr/lib && 149 150 install -v -m755 -d /usr/include/nss && 151 cp -v -RL {public,private}/nss/* /usr/include/nss && 152 chmod -v 644 /usr/include/nss/* && 153 150 154 install -v -m755 Linux*/bin/{certutil,nss-config,pk12util} /usr/bin && 151 install -v -m644 Linux*/lib/pkgconfig/nss.pc /usr/lib/pkgconfig</userinput></screen> 155 156 install -v -m644 Linux*/lib/pkgconfig/nss.pc /usr/lib/pkgconfig 157 </userinput></screen> 152 158 153 159 </sect2>
Note:
See TracChangeset
for help on using the changeset viewer.