Changeset d86a91f


Ignore:
Timestamp:
08/06/2017 01:08:11 AM (7 years ago)
Author:
Ken Moffat <ken@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, lazarus, lxqt, perl-modules, 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
Children:
d60f0d5
Parents:
8163bbdb
Message:

git-2.14.0

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

Files:
6 edited

Legend:

Unmodified
Added
Removed
  • general.ent

    r8163bbdb rd86a91f  
    11<!-- $LastChangedBy$ $Date$ -->
    22
    3 <!ENTITY day          "04">                   <!-- Always 2 digits -->
     3<!ENTITY day          "05">                   <!-- Always 2 digits -->
    44<!ENTITY month        "08">                   <!-- Always 2 digits -->
    55<!ENTITY year         "2017">
     
    77<!ENTITY copyholder   "The BLFS Development Team">
    88<!ENTITY version      "&year;-&month;-&day;">
    9 <!ENTITY releasedate  "August 4th, &year;">
     9<!ENTITY releasedate  "August 5th, &year;">
    1010<!ENTITY pubdate      "&year;-&month;-&day;"> <!-- metadata req. by TLDP -->
    1111<!ENTITY blfs-version "svn">                  <!-- svn|[release #] -->
  • general/genlib/pcre.xml

    r8163bbdb rd86a91f  
    166166      so that it is available in case <command>grep</command>
    167167      gets reinstalled with <application>PCRE</application> support.
     168    </para>
     169
     170    <para>
     171      <option>--enable-jit</option>: this option enables Just-in-time
     172      compiling, which can greatly speed up pattern matching.
    168173    </para>
    169174
  • general/genlib/pcre2.xml

    r8163bbdb rd86a91f  
    153153    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
    154154      href="../../xincludes/static-libraries.xml"/>
     155
     156    <para>
     157      <option>--enable-jit</option>: this option enables Just-in-time compiling,
     158      which can greatly speed up pattern matching.
     159    </para>
    155160
    156161  </sect2>
  • general/prog/git.xml

    r8163bbdb rd86a91f  
    99  <!ENTITY git-download-http "&git-root;/git-&git-version;.tar.xz">
    1010  <!ENTITY git-download-ftp  " ">
    11   <!ENTITY git-md5sum        "e10ede8b80a2c987d04ee376534cb7e1">
    12   <!ENTITY git-size          "4.5 MB">
    13   <!ENTITY git-buildsize     "405 MB (with optional dependencies and documentation)">
    14   <!ENTITY git-time          "0.9 SBU (add 2.1 SBU for building documentation, add 4.2 SBU for tests)">
     11  <!ENTITY git-md5sum        "8422cbf87b85e1a5e8e2cbca49333f84">
     12  <!ENTITY git-size          "4.6 MB">
     13  <!-- space measured on 2.14.0 with gcc-7.1, glibc-2.25+git, all deps except dblatex.
     14    The build gets up to 529MB, but the separate docs add 15 MB -->
     15  <!ENTITY git-buildsize     "544 MB (with optional dependencies and documentation, add 24MB if building the docs)">
     16  <!ENTITY git-time          "0.3 SBU (with parallelism=4, add 2.1 SBU if building documentation, add 1.5 SBU for tests with parallelism=4)">
    1517]>
    1618
     
    117119    <bridgehead renderas="sect4">Optional</bridgehead>
    118120    <para role="optional">
    119       <xref linkend="pcre"/>,
     121      <xref linkend="pcre2"/> (<emphasis>or</emphasis> the deprecated <xref
     122      linkend="pcre"/>), in either case configured with
     123      <literal>--enable-jit</literal>,
    120124      <xref linkend="subversion"/> with Perl bindings (for <command>git svn</command>),
    121125      <xref linkend="tk"/> (gitk, a simple <application>Git</application>
     
    246250mv        /usr/share/doc/git-&git-version;/howto/{*.,}html               &amp;&amp;
    247251
    248 sed -i '/^&lt;a href=/s|howto/|&amp;html/|' /usr/share/doc/git-2.13.1/howto-index.html &amp;&amp;
    249 sed -i '/^\* link:/s|howto/|&amp;html/|' /usr/share/doc/git-2.13.1/howto-index.txt</userinput></screen>
     252sed -i '/^&lt;a href=/s|howto/|&amp;html/|' /usr/share/doc/git-&git-version;/howto-index.html &amp;&amp;
     253sed -i '/^\* link:/s|howto/|&amp;html/|' /usr/share/doc/git-&git-version;/howto-index.txt</userinput></screen>
    250254
    251255  </sect2>
     
    267271
    268272    <para>
    269       <option>--with-libpcre</option>: Use this switch if
    270       <application>PCRE</application> is installed.
     273      <option>--with-libpcre2</option>: Use this switch if
     274      <application>PCRE2</application> is installed and has been built with
     275      the non-default JIT enabled.
     276    </para>
     277
     278    <para>
     279      <option>--with-libpcre2</option>: As an alternative to PCRE2, use this
     280      switch if the deprecated <application>PCRE</application> is installed
     281      and has been built with the non-default JIT enabled.
    271282    </para>
    272283
  • introduction/welcome/changelog.xml

    r8163bbdb rd86a91f  
    4242    </listitem>
    4343-->
     44
     45    <listitem>
     46      <para>August 5th, 2017</para>
     47      <itemizedlist>
     48        <listitem>
     49          <para>[ken] - Update to git-2.14.0 and add optional JIT
     50          configure switch to pcre2 and pcre. Fixes
     51          <ulink url="&blfs-ticket-root;9568">#9568</ulink>.</para>
     52        </listitem>
     53      </itemizedlist>
     54    </listitem>
    4455
    4556    <listitem>
  • packages.ent

    r8163bbdb rd86a91f  
    308308<!ENTITY gc-version                   "7.6.0">
    309309<!ENTITY gdb-version                  "8.0">
    310 <!ENTITY git-version                  "2.13.3">
     310<!ENTITY git-version                  "2.14.0">
    311311<!ENTITY guile-version                "2.2.2">
    312312<!ENTITY librep-version               "0.92.6">
Note: See TracChangeset for help on using the changeset viewer.