Changeset f6528ac
- Timestamp:
- 07/04/2018 02:41:02 AM (5 years ago)
- 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
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
chapter01/changelog.xml
rdb1ed01 rf6528ac 48 48 <itemizedlist> 49 49 <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> 50 64 <para>[bdubbs] - Various URL updates. Fixes 51 65 <ulink url="&lfs-ticket-root;4299">#4293</ulink> and -
chapter01/whatsnew.xml
rdb1ed01 rf6528ac 27 27 <para>None</para> 28 28 </listitem>--> 29 < !--<listitem>29 <listitem> 30 30 <para>Acl-&acl-version;</para> 31 </listitem> -->31 </listitem> 32 32 <!--<listitem> 33 33 <para>Attr-&attr-version;</para> -
chapter06/acl.xml
rdb1ed01 rf6528ac 43 43 <title>Installation of Acl</title> 44 44 45 <para>Modify the documentation directory so that it is a versioned46 directory:</para>47 48 <screen><userinput remap="pre">sed -i -e 's|/@pkg_name@|&-@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 64 45 <para>Prepare Acl for compilation:</para> 65 46 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> 70 52 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> 74 57 75 58 <para>Compile the package:</para> … … 79 62 <para>The Acl tests need to be run on a filesystem that supports access 80 63 controls after <application>Coreutils</application> has been built with the 81 Acl libraries. If desired, return to this package and run <command>make -j182 tests</command> after <application>Coreutils</application> has been built64 Acl libraries. If desired, return to this package and run <command>make 65 check</command> after <application>Coreutils</application> has been built 83 66 later in this chapter.</para> 84 67 85 68 <para>Install the package:</para> 86 69 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> 89 71 90 72 <para>The shared library needs to be moved to -
chapter06/attr.xml
rdb1ed01 rf6528ac 42 42 <title>Installation of Attr</title> 43 43 44 <para>Modify the documentation directory so that it is a versioned45 directory:</para>46 47 <screen><userinput remap="pre">sed -i -e 's|/@pkg_name@|&-@pkg_version@|' include/builddefs.in</userinput></screen>48 49 <para>Prevent installation of manual pages that were already installed by50 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 58 44 <para>Prepare Attr for compilation:</para> 59 45 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> 63 51 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> 66 56 67 57 <para>Compile the package:</para> … … 70 60 71 61 <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> 75 64 76 <screen><userinput remap="test">make -j1 tests root-tests</userinput></screen>65 <screen><userinput remap="test">make check</userinput></screen> 77 66 78 67 <para>Install the package:</para> 79 68 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> 82 70 83 71 <para>The shared library needs to be moved to -
general.ent
rdb1ed01 rf6528ac 1 <!ENTITY version "SVN-20180 625">1 <!ENTITY version "SVN-20180703"> 2 2 <!ENTITY short-version "svn"> <!-- Used below in &blfs-book; 3 3 Change to x.y for release but not -rc releases --> 4 4 <!ENTITY generic-version "development"> <!-- Use "development" or "x.y[-pre{x}]" --> 5 5 6 <!ENTITY versiond "20180 625-systemd">6 <!ENTITY versiond "20180703-systemd"> 7 7 <!ENTITY short-versiond "systemd"> 8 8 <!ENTITY generic-versiond "systemd"> 9 9 10 <!ENTITY releasedate "Ju ne 25, 2018">10 <!ENTITY releasedate "July 3, 2018"> 11 11 12 12 <!ENTITY copyrightdate "1999-2018"><!-- jhalfs needs a literal dash, not – --> -
lfs-latest.php
rdb1ed01 rf6528ac 235 235 $package == "acl" ) 236 236 { 237 return find_max( $lines, "/$package/", "/^.*$package-([\d\.-]*\d)\. src.*$/" );237 return find_max( $lines, "/$package/", "/^.*$package-([\d\.-]*\d)\.*$/" ); 238 238 } 239 239 -
packages.ent
rdb1ed01 rf6528ac 7 7 Allowed deviation in disk usage : 2% --> 8 8 9 <!ENTITY acl-version "2.2.5 2">10 <!ENTITY acl-size " 380KB">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"> 13 13 <!ENTITY acl-home " "> 14 14 <!ENTITY acl-ch6-du "4.9 MB"> 15 15 <!ENTITY acl-ch6-sbu "less than 0.1 SBU"> 16 16 17 <!ENTITY attr-version "2.4.4 7">18 <!ENTITY attr-size " 336KB">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"> 21 21 <!ENTITY attr-home "&savannah-nongnu;/projects/attr"> 22 22 <!ENTITY attr-ch6-du "3.3 MB">
Note:
See TracChangeset
for help on using the changeset viewer.