Changeset 6426122


Ignore:
Timestamp:
03/19/2007 03:06:43 AM (17 years ago)
Author:
Randy McMurchy <randy@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 6.3, 6.3-rc1, 6.3-rc2, 6.3-rc3, 7.10, 7.4, 7.5, 7.6, 7.6-blfs, 7.6-systemd, 7.7, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, gnome, kde5-13430, kde5-14269, kde5-14686, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, krejzi/svn, lazarus, lxqt, nosym, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, systemd-11177, systemd-13485, trunk, upgradedb, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
1402f13
Parents:
8f331d7
Message:

Updated to cpio-2.7

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

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • general.ent

    r8f331d7 r6426122  
    44-->
    55
    6 <!ENTITY day          "18">                   <!-- Always 2 digits -->
     6<!ENTITY day          "19">                   <!-- Always 2 digits -->
    77<!ENTITY month        "03">                   <!-- Always 2 digits -->
    88<!ENTITY year         "2007">
     
    172172<!ENTITY usbutils-version             "0.72">
    173173<!ENTITY pkgconfig-version            "0.21">
    174 <!ENTITY cpio-version                 "2.6">
     174<!ENTITY cpio-version                 "2.7">
    175175<!ENTITY mc-version                   "4.6.1">
    176176<!ENTITY sysstat-version              "7.0.4">
  • general/sysutils/cpio.xml

    r8f331d7 r6426122  
    55  %general-entities;
    66
    7   <!ENTITY cpio-download-http "http://ftp.gnu.org/pub/gnu/cpio/cpio-&cpio-version;.tar.gz">
    8   <!ENTITY cpio-download-ftp  "ftp://ftp.gnu.org/pub/gnu/cpio/cpio-&cpio-version;.tar.gz">
    9   <!ENTITY cpio-md5sum        "76b4145f33df088a5bade3bf4373d17d">
    10   <!ENTITY cpio-size          "561 KB">
    11   <!ENTITY cpio-buildsize     "5.3 MB">
    12   <!ENTITY cpio-time          "0.1 SBU">
     7  <!ENTITY cpio-download-http "http://ftp.gnu.org/pub/gnu/cpio/cpio-&cpio-version;.tar.bz2">
     8  <!ENTITY cpio-download-ftp  "ftp://ftp.gnu.org/pub/gnu/cpio/cpio-&cpio-version;.tar.bz2">
     9  <!ENTITY cpio-md5sum        "69ad6cb3d288aafe5f969f68d9fd0fb7">
     10  <!ENTITY cpio-size          "698 KB">
     11  <!ENTITY cpio-buildsize     "10 MB">
     12  <!ENTITY cpio-time          "0.2 SBU">
    1313]>
    1414
     
    5555    </itemizedlist>
    5656
    57     <bridgehead renderas="sect3">Additional Downloads</bridgehead>
     57    <!-- <bridgehead renderas="sect3">Additional Downloads</bridgehead>
    5858    <itemizedlist spacing="compact">
    5959      <listitem>
     
    6161        url="&patch-root;/cpio-&cpio-version;-security_fixes-1.patch"/></para>
    6262      </listitem>
    63     </itemizedlist>
     63    </itemizedlist> -->
    6464
    6565    <para condition="html" role="usernotes">User Notes:
     
    7474    commands:</para>
    7575
    76 <screen><userinput>sed -i "s/invalid_arg/argmatch_invalid/" src/mt.c &amp;&amp;
    77 patch -Np1 -i ../cpio-&cpio-version;-security_fixes-1.patch &amp;&amp;
    78 ./configure CPIO_MT_PROG=mt --prefix=/usr \
    79     --bindir=/bin --libexecdir=/tmp \
    80     --with-rmt=/usr/sbin/rmt &amp;&amp;
    81 echo "#define HAVE_SETLOCALE 1" >> config.h &amp;&amp;
    82 echo "#define HAVE_LSTAT 1" >> config.h &amp;&amp;
     76<screen><userinput>./configure CPIO_MT_PROG=mt \
     77            --prefix=/usr \
     78            --bindir=/bin \
     79            --libexecdir=/tmp \
     80            --with-rmt=/usr/sbin/rmt &amp;&amp;
    8381make</userinput></screen>
    8482
     
    9290makeinfo --plaintext -o doc/cpio.txt doc/cpio.texi</userinput></screen>
    9391
    94     <para>To test the results, issue:</para>
    95 
    96 <screen><userinput>sed -i 's/static const char/const char/' tests/genfile.c &amp;&amp;
    97 make check</userinput></screen>
     92    <para>To test the results, issue <command>make check</command></para>
    9893
    9994    <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
     
    114109    <title>Command Explanations</title>
    115110
    116     <para><command>sed -i "s/invalid_arg/argmatch_invalid/"
    117     src/mt.c</command>: This command fixes a build problem with the
    118     <command>mt</command> program.</para>
    119 
    120111    <para><parameter>CPIO_MT_PROG=mt</parameter>: This parameter forces the
    121112    building and installation of the <command>mt</command> program.</para>
     
    133124    inhibits building the <command>rmt</command> program as it is already
    134125    installed by the <application>Tar</application> package in LFS.</para>
    135 
    136     <para><command>echo "#define HAVE_SETLOCALE 1" >> config.h</command>: This
    137     command specifies that the system <application>Libc</application>
    138     implements the setlocale function since it is not detected by
    139     <command>configure</command>.</para>
    140 
    141     <para><command>echo "#define HAVE_LSTAT 1" >> config.h</command>: This
    142     define fixes a bug that causes <command>cpio</command> to convert symlinks
    143     into regular files during archive creation.</para>
    144 
    145     <para><command>sed -i 's/static const ...</command>:  This command fixes
    146     a build problem when compiling the tests with GCC-&gcc-version;.</para>
    147126
    148127  </sect2>
  • introduction/welcome/changelog.xml

    r8f331d7 r6426122  
    4343
    4444    <listitem>
     45      <para>March 19th, 2007</para>
     46      <itemizedlist>
     47        <listitem>
     48          <para>[randy] - Updated to cpio-2.7.</para>
     49        </listitem>
     50      </itemizedlist>
     51    </listitem>
     52
     53    <listitem>
    4554      <para>March 18th, 2007</para>
    4655      <itemizedlist>
Note: See TracChangeset for help on using the changeset viewer.