Changeset f6528ac


Ignore:
Timestamp:
07/04/2018 02:41:02 AM (5 years ago)
Author:
Bruce Dubbs <bdubbs@…>
Branches:
10.0, 10.0-rc1, 10.1, 10.1-rc1, 11.0, 11.0-rc1, 11.0-rc2, 11.0-rc3, 11.1, 11.1-rc1, 11.2, 11.2-rc1, 11.3, 11.3-rc1, 8.3, 8.3-rc1, 8.3-rc2, 8.4, 8.4-rc1, 9.0, 9.0-rc1, 9.1, 9.1-rc1, arm, bdubbs/gcc13, cross-chap5, ml-11.0, multilib, old-trunk, s6-init, trunk, xry111/arm64, xry111/clfs-ng, xry111/git-transition, xry111/glibc-2.34, xry111/glibc-2.37, xry111/kcfg-revise, xry111/lfs-next, xry111/pip3, xry111/queue-11.3, xry111/rust-wip-20221008, xry111/tester-nohack, xry111/usr-move
Children:
adcd988
Parents:
db1ed01
Message:

Update to attr-2.4.48.
Update to acl-2.2.53.

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@11428 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

Files:
7 edited

Legend:

Unmodified
Added
Removed
  • chapter01/changelog.xml

    rdb1ed01 rf6528ac  
    4848      <itemizedlist>
    4949        <listitem>
     50           <para>[bdubbs] - Update to attr-2.4.48.  Fixes
     51           <ulink url="&lfs-ticket-root;4308">#4308</ulink>.</para>
     52        </listitem>
     53        <listitem>
     54           <para>[bdubbs] - Update to acl-2.2.53.  Fixes
     55           <ulink url="&lfs-ticket-root;4307">#4307</ulink>.</para>
     56        </listitem>
     57      </itemizedlist>
     58    </listitem>
     59
     60    <listitem>
     61      <para>2018-06-25</para>
     62      <itemizedlist>
     63        <listitem>
    5064           <para>[bdubbs] - Various URL updates.  Fixes
    5165           <ulink url="&lfs-ticket-root;4299">#4293</ulink> and
  • chapter01/whatsnew.xml

    rdb1ed01 rf6528ac  
    2727    <para>None</para>
    2828    </listitem>-->
    29     <!--<listitem>
     29    <listitem>
    3030      <para>Acl-&acl-version;</para>
    31     </listitem>-->
     31    </listitem>
    3232    <!--<listitem>
    3333      <para>Attr-&attr-version;</para>
  • chapter06/acl.xml

    rdb1ed01 rf6528ac  
    4343    <title>Installation of Acl</title>
    4444
    45     <para>Modify the documentation directory so that it is a versioned
    46     directory:</para>
    47 
    48 <screen><userinput remap="pre">sed -i -e 's|/@pkg_name@|&amp;-@pkg_version@|' include/builddefs.in</userinput></screen>
    49 
    50     <para>Fix some broken tests:</para>
    51 
    52 <screen><userinput remap="pre">sed -i "s:| sed.*::g" test/{sbits-restore,cp,misc}.test</userinput></screen>
    53 
    54     <para>Fix a problem in the test procedures caused by changes in perl-5.26:</para>
    55 
    56 <screen><userinput remap="pre">sed -i 's/{(/\\{(/' test/run</userinput></screen>
    57 
    58     <para>Additionally, fix a bug that causes <command>getfacl -e</command>
    59     to segfault on overly long group name:</para>
    60 
    61 <screen><userinput remap="pre">sed -i -e "/TABS-1;/a if (x > (TABS-1)) x = (TABS-1);" \
    62     libacl/__acl_to_any_text.c</userinput></screen>
    63 
    6445    <para>Prepare Acl for compilation:</para>
    6546
    66 <screen revision="sysv"><userinput remap="configure">./configure --prefix=/usr    \
    67             --bindir=/bin    \
    68             --disable-static \
    69             --libexecdir=/usr/lib</userinput></screen>
     47<screen revision="sysv"><userinput remap="configure">./configure --prefix=/usr         \
     48            --bindir=/bin         \
     49            --disable-static      \
     50            --libexecdir=/usr/lib \
     51            --docdir=/usr/share/doc/acl-&acl-version;</userinput></screen>
    7052
    71 <screen revision="systemd"><userinput remap="configure">./configure --prefix=/usr    \
    72             --disable-static \
    73             --libexecdir=/usr/lib</userinput></screen>
     53<screen revision="systemd"><userinput remap="configure">./configure --prefix=/usr         \
     54            --disable-static      \
     55            --libexecdir=/usr/lib \
     56            --docdir=/usr/share/doc/acl-&acl-version;</userinput></screen>
    7457
    7558    <para>Compile the package:</para>
     
    7962    <para>The Acl tests need to be run on a filesystem that supports access
    8063    controls after <application>Coreutils</application> has been built with the
    81     Acl libraries.  If desired, return to this package and run <command>make -j1
    82     tests</command> after <application>Coreutils</application> has been built
     64    Acl libraries.  If desired, return to this package and run <command>make
     65    check</command> after <application>Coreutils</application> has been built
    8366    later in this chapter.</para>
    8467
    8568    <para>Install the package:</para>
    8669
    87 <screen><userinput remap="install">make install install-dev install-lib
    88 chmod -v 755 /usr/lib/libacl.so</userinput></screen>
     70<screen><userinput remap="install">make install</userinput></screen>
    8971
    9072    <para>The shared library needs to be moved to
  • chapter06/attr.xml

    rdb1ed01 rf6528ac  
    4242    <title>Installation of Attr</title>
    4343
    44     <para>Modify the documentation directory so that it is a versioned
    45     directory:</para>
    46 
    47 <screen><userinput remap="pre">sed -i -e 's|/@pkg_name@|&amp;-@pkg_version@|' include/builddefs.in</userinput></screen>
    48 
    49     <para>Prevent installation of manual pages that were already installed by
    50     the <xref linkend="man-pages"/> package:</para>
    51 
    52 <screen><userinput remap="pre">sed -i -e "/SUBDIRS/s|man[25]||g" man/Makefile</userinput></screen>
    53 
    54     <para>Fix a problem in the test procedures caused by changes in perl-5.26:</para>
    55 
    56 <screen><userinput remap="pre">sed -i 's:{(:\\{(:' test/run</userinput></screen>
    57 
    5844    <para>Prepare Attr for compilation:</para>
    5945
    60 <screen revision="sysv"><userinput remap="configure">./configure --prefix=/usr \
    61             --bindir=/bin \
    62             --disable-static</userinput></screen>
     46<screen revision="sysv"><userinput remap="configure">./configure --prefix=/usr     \
     47            --bindir=/bin     \
     48            --disable-static  \
     49            --sysconfdir=/etc \
     50            --docdir=/usr/share/doc/attr-&attr-version;</userinput></screen>
    6351
    64 <screen revision="systemd"><userinput remap="configure">./configure --prefix=/usr \
    65             --disable-static</userinput></screen>
     52<screen revision="systemd"><userinput remap="configure">./configure --prefix=/usr     \
     53            --disable-static  \
     54            --sysconfdir=/etc \
     55            --docdir=/usr/share/doc/attr-&attr-version;</userinput></screen>
    6656
    6757    <para>Compile the package:</para>
     
    7060
    7161    <para>The tests need to be run on a filesystem that supports extended
    72     attributes such as the ext2, ext3, or ext4 filesystems. The tests are also
    73     known to fail if running multiple simultaneous tests (-j option greater than
    74     1).  To test the results, issue:</para>
     62    attributes such as the ext2, ext3, or ext4 filesystems.
     63    To test the results, issue:</para>
    7564
    76 <screen><userinput remap="test">make -j1 tests root-tests</userinput></screen>
     65<screen><userinput remap="test">make check</userinput></screen>
    7766
    7867    <para>Install the package:</para>
    7968
    80 <screen><userinput remap="install">make install install-dev install-lib
    81 chmod -v 755 /usr/lib/libattr.so</userinput></screen>
     69<screen><userinput remap="install">make install</userinput></screen>
    8270
    8371    <para>The shared library needs to be moved to
  • general.ent

    rdb1ed01 rf6528ac  
    1 <!ENTITY version         "SVN-20180625">
     1<!ENTITY version         "SVN-20180703">
    22<!ENTITY short-version   "svn">  <!-- Used below in &blfs-book;
    33                                      Change to x.y for release but not -rc releases -->
    44<!ENTITY generic-version "development"> <!-- Use "development"  or "x.y[-pre{x}]" -->
    55
    6 <!ENTITY versiond        "20180625-systemd">
     6<!ENTITY versiond        "20180703-systemd">
    77<!ENTITY short-versiond  "systemd">
    88<!ENTITY generic-versiond "systemd">
    99
    10 <!ENTITY releasedate     "June 25, 2018">
     10<!ENTITY releasedate     "July 3, 2018">
    1111
    1212<!ENTITY copyrightdate   "1999-2018"><!-- jhalfs needs a literal dash, not &ndash; -->
  • lfs-latest.php

    rdb1ed01 rf6528ac  
    235235       $package == "acl"  )
    236236  {
    237      return find_max( $lines, "/$package/", "/^.*$package-([\d\.-]*\d)\.src.*$/" );
     237     return find_max( $lines, "/$package/", "/^.*$package-([\d\.-]*\d)\.*$/" );
    238238  }
    239239
  • packages.ent

    rdb1ed01 rf6528ac  
    77     Allowed deviation in disk usage : 2% -->
    88
    9 <!ENTITY acl-version "2.2.52">
    10 <!ENTITY acl-size "380 KB">
    11 <!ENTITY acl-url "&savannah;/releases/acl/acl-&acl-version;.src.tar.gz">
    12 <!ENTITY acl-md5 "a61415312426e9c2212bd7dc7929abda">
     9<!ENTITY acl-version "2.2.53">
     10<!ENTITY acl-size "513 KB">
     11<!ENTITY acl-url "&savannah;/releases/acl/acl-&acl-version;.tar.gz">
     12<!ENTITY acl-md5 "007aabf1dbb550bcddde52a244cd1070">
    1313<!ENTITY acl-home " ">
    1414<!ENTITY acl-ch6-du "4.9 MB">
    1515<!ENTITY acl-ch6-sbu "less than 0.1 SBU">
    1616
    17 <!ENTITY attr-version "2.4.47">
    18 <!ENTITY attr-size "336 KB">
    19 <!ENTITY attr-url "&savannah;/releases/attr/attr-&attr-version;.src.tar.gz">
    20 <!ENTITY attr-md5 "84f58dec00b60f2dc8fd1c9709291cc7">
     17<!ENTITY attr-version "2.4.48">
     18<!ENTITY attr-size "457 KB">
     19<!ENTITY attr-url "&savannah;/releases/attr/attr-&attr-version;.tar.gz">
     20<!ENTITY attr-md5 "bc1e5cb5c96d99b24886f1f527d3bb3d">
    2121<!ENTITY attr-home "&savannah-nongnu;/projects/attr">
    2222<!ENTITY attr-ch6-du "3.3 MB">
Note: See TracChangeset for help on using the changeset viewer.