diff options
author | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2019-06-16 21:09:30 +0000 |
---|---|---|
committer | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2019-06-16 21:09:30 +0000 |
commit | 76a706e9bdeaf6e424f36d3f28cd661b15be241d (patch) | |
tree | 1d26578ceeb259cac55125e9073bb09cfdb0fa98 | |
parent | ac95fdb5893e19250216e60a53afdd90332ed6f5 (diff) |
Update to vim-8.1.1535.
Update to shadow-4.7.
Update to linux-5.1.10.
Update to less-551.
Update to util-linux-2.34.
Remove eudev instructions referring to /tools.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@11619 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
-rw-r--r-- | chapter01/changelog.xml | 30 | ||||
-rw-r--r-- | chapter01/whatsnew.xml | 12 | ||||
-rw-r--r-- | chapter06/eudev.xml | 20 | ||||
-rw-r--r-- | chapter06/vim.xml | 11 | ||||
-rw-r--r-- | general.ent | 6 | ||||
-rw-r--r-- | packages.ent | 34 |
6 files changed, 79 insertions, 34 deletions
diff --git a/chapter01/changelog.xml b/chapter01/changelog.xml index 43e46e17d..26b45456a 100644 --- a/chapter01/changelog.xml +++ b/chapter01/changelog.xml @@ -42,6 +42,36 @@ <listitem revision="sysv"> or <listitem revision="systemd"> as appropriate for the entry or if needed the entire day's listitem. --> + <listitem> + <para>2019-06-16</para> + <itemizedlist> + <listitem> + <para>[bdubbs] - Update to vim-8.1.1535. Fixes + <ulink url="&lfs-ticket-root;4482">#4482</ulink>.</para> + </listitem> + <listitem> + <para>[bdubbs] - Update to shadow-4.7. Fixes + <ulink url="&lfs-ticket-root;4481">#4481</ulink>.</para> + </listitem> + <listitem> + <para>[bdubbs] - Update to linux-5.1.10. Fixes + <ulink url="&lfs-ticket-root;4478">#4478</ulink>.</para> + </listitem> + <listitem revision="sysv"> + <para>[bdubbs] - Update to less-551. Fixes + <ulink url="&lfs-ticket-root;4477">#4477</ulink>.</para> + </listitem> + <listitem> + <para>[bdubbs] - Update to util-linux-2.34. Fixes + <ulink url="&lfs-ticket-root;4452">#4462</ulink>.</para> + </listitem> + <listitem> + <para>[bdubbs] - Remove eudev instructions referring to /tools. Fixes + <ulink url="&lfs-ticket-root;4480">#4480</ulink>.</para> + </listitem> + </itemizedlist> + </listitem> + <listitem revision="systemd"> <para>2019-06-12</para> <itemizedlist> diff --git a/chapter01/whatsnew.xml b/chapter01/whatsnew.xml index fb29e7932..dc524afcd 100644 --- a/chapter01/whatsnew.xml +++ b/chapter01/whatsnew.xml @@ -140,9 +140,9 @@ <!--<listitem> <para>Kmod-&kmod-version;</para> </listitem>--> - <!--<listitem> + <listitem> <para>Less-&less-version;</para> - </listitem>--> + </listitem> <listitem> <para>LFS-Bootscripts-&lfs-bootscripts-version;</para> </listitem> @@ -215,9 +215,9 @@ <!--<listitem> <para>Sed-&sed-version;</para> </listitem>--> - <!--<listitem> + <listitem> <para>Shadow-&shadow-version;</para> - </listitem>--> + </listitem> <!--<listitem revision="sysv"> <para>Sysklogd-&sysklogd-version;</para> </listitem>--> @@ -242,9 +242,9 @@ <listitem> <para>Util-Linux-&util-linux-version;</para> </listitem> - <!--<listitem> + <listitem> <para>Vim-&vim-version;</para> - </listitem>--> + </listitem> <!--<listitem> <para>XML-Parser-&xml-parser-version;</para> </listitem>--> diff --git a/chapter06/eudev.xml b/chapter06/eudev.xml index de2ba41c6..4342e2172 100644 --- a/chapter06/eudev.xml +++ b/chapter06/eudev.xml @@ -49,6 +49,7 @@ <screen><userinput remap="pre">sed -i '/keyboard_lookup_key/d' src/udev/udev-builtin-keyboard.c</userinput></screen> --> +<!-- <para>First, add a workaround to prevent the /tools directory from being hard coded into Eudev binary files library locations:</para> @@ -57,7 +58,7 @@ HAVE_BLKID=1 BLKID_LIBS="-lblkid" BLKID_CFLAGS="-I/tools/include" EOF</userinput></screen> - +--> <para>Prepare Eudev for compilation:</para> <screen><userinput remap="configure">./configure --prefix=/usr \ @@ -69,11 +70,13 @@ EOF</userinput></screen> --with-rootprefix= \ --with-rootlibdir=/lib \ --enable-manpages \ - --disable-static \ - --config-cache</userinput></screen> + --disable-static</userinput></screen> +<!-- - -config-cache</userinput></screen> --> <para>Compile the package:</para> +<screen><userinput remap="make">make</userinput></screen> +<!-- <screen><userinput remap="make">LIBRARY_PATH=/tools/lib make</userinput></screen> <note><para>The LIBRARY_PATH variable here and the LD_LIBRARY_PATH variable @@ -81,7 +84,7 @@ below are needed to allow the use of libraries that were installed in /tools, but have not yet been installed in the main system. LIBRARY_PATH is used to find libraries during the linking process. LD_LIBRARY_PATH is used to find libraries during program execution.</para></note> - +--> <para>Create some directories now that are needed for tests, but will also be used as a part of installation:</para> @@ -90,11 +93,13 @@ mkdir -pv /etc/udev/rules.d</userinput></screen> <para>To test the results, issue:</para> -<screen><userinput remap="test">make LD_LIBRARY_PATH=/tools/lib check</userinput></screen> +<screen><userinput remap="test">make check</userinput></screen> +<!--<screen><userinput remap="test">make LD_LIBRARY_PATH=/tools/lib check</userinput></screen>--> <para>Install the package:</para> -<screen><userinput remap="install">make LD_LIBRARY_PATH=/tools/lib install</userinput></screen> +<screen><userinput remap="install">make install</userinput></screen> +<!--<screen><userinput remap="install">make LD_LIBRARY_PATH=/tools/lib install</userinput></screen>--> <para>Install some custom rules and support files useful in an LFS environment:</para> @@ -123,7 +128,8 @@ make -f &udev-lfs-version;/Makefile.lfs install</userinput></screen> into a binary database <filename>/etc/udev/hwdb.bin</filename>. Create the initial database:</para> -<screen><userinput>LD_LIBRARY_PATH=/tools/lib udevadm hwdb --update</userinput></screen> +<!--<screen><userinput>LD_LIBRARY_PATH=/tools/lib udevadm hwdb - -update</userinput></screen>--> +<screen><userinput>udevadm hwdb --update</userinput></screen> <para>This command needs to be run each time the hardware information is updated.</para> diff --git a/chapter06/vim.xml b/chapter06/vim.xml index 04f6d9bd8..4d84df75f 100644 --- a/chapter06/vim.xml +++ b/chapter06/vim.xml @@ -66,7 +66,16 @@ <screen><userinput remap="make">make</userinput></screen> - <para>To test the results, issue:</para> + <para>To prepare the tests, ensure that the + <systemitem class="username">nobody</systemitem> user can write + to the sources tree:</para> + +<screen><userinput remap="test">chown -Rv nobody .</userinput></screen> + + <para>Now run the tests as the <systemitem + class="username">nobody</systemitem> user:</para> + +<screen><userinput remap="test">su nobody -s /bin/bash -c "LANG=en_US.UTF-8 make -j1 test" &> vim-test.log</userinput></screen> <screen><userinput remap="test">LANG=en_US.UTF-8 make -j1 test &> vim-test.log</userinput></screen> diff --git a/general.ent b/general.ent index 163205c49..defefbf27 100644 --- a/general.ent +++ b/general.ent @@ -1,13 +1,13 @@ -<!ENTITY version "SVN-20190612"> +<!ENTITY version "SVN-20190616"> <!ENTITY short-version "svn"> <!-- Used below in &blfs-book; Change to x.y for release but not -rc releases --> <!ENTITY generic-version "development"> <!-- Use "development" or "x.y[-pre{x}]" --> -<!ENTITY versiond "20190612-systemd"> +<!ENTITY versiond "20190616-systemd"> <!ENTITY short-versiond "systemd"> <!ENTITY generic-versiond "systemd"> -<!ENTITY releasedate "June 12, 2019"> +<!ENTITY releasedate "June 16, 2019"> <!ENTITY copyrightdate "1999-2019"><!-- jhalfs needs a literal dash, not – --> <!ENTITY milestone "8.5"> diff --git a/packages.ent b/packages.ent index cde251e66..6cffc97ed 100644 --- a/packages.ent +++ b/packages.ent @@ -373,10 +373,10 @@ <!ENTITY kmod-ch6-du "13 MB"> <!ENTITY kmod-ch6-sbu "0.1 SBU"> -<!ENTITY less-version "530"> -<!ENTITY less-size "332 KB"> +<!ENTITY less-version "551"> +<!ENTITY less-size "339 KB"> <!ENTITY less-url "http://www.greenwoodsoftware.com/less/less-&less-version;.tar.gz"> -<!ENTITY less-md5 "6a39bccf420c946b0fd7ffc64961315b"> +<!ENTITY less-md5 "4ad4408b06d7a6626a055cb453f36819"> <!ENTITY less-home "http://www.greenwoodsoftware.com/less/"> <!ENTITY less-ch6-du "3.9 MB"> <!ENTITY less-ch6-sbu "less than 0.1 SBU"> @@ -423,12 +423,12 @@ <!ENTITY linux-major-version "5"> <!ENTITY linux-minor-version "1"> -<!ENTITY linux-patch-version "6"> +<!ENTITY linux-patch-version "10"> <!--<!ENTITY linux-version "&linux-major-version;.&linux-minor-version;">--> <!ENTITY linux-version "&linux-major-version;.&linux-minor-version;.&linux-patch-version;"> -<!ENTITY linux-size "103,771 KB"> +<!ENTITY linux-size "103,774 KB"> <!ENTITY linux-url "&kernel;linux/kernel/v&linux-major-version;.x/linux-&linux-version;.tar.xz"> -<!ENTITY linux-md5 "252fe34c28205fcaaa6b1b3782576b84"> +<!ENTITY linux-md5 "81c6849be703c8d4be09a3c0e45102cc"> <!ENTITY linux-home "https://www.kernel.org/"> <!-- measured for 4.8.3 / gcc-6.2.0 on x86_64 : minimum is allnoconfig extended for a hopefully-bootable build on desktop machine, @@ -606,10 +606,10 @@ <!ENTITY sed-ch6-du "32 MB"> <!ENTITY sed-ch6-sbu "0.3 SBU"> -<!ENTITY shadow-version "4.6"> -<!ENTITY shadow-size "1,639 KB"> +<!ENTITY shadow-version "4.7"> +<!ENTITY shadow-size "1,587 KB"> <!ENTITY shadow-url "&github;/shadow-maint/shadow/releases/download/&shadow-version;/shadow-&shadow-version;.tar.xz"> -<!ENTITY shadow-md5 "b491fecbf1232632c32ff8f1437fd60e"> +<!ENTITY shadow-md5 "f7ce18c8dfd05f1a009266cb604d58b7"> <!ENTITY shadow-home "https://pkg-shadow.alioth.debian.org/"> <!ENTITY shadow-ch6-du "46 MB"> <!ENTITY shadow-ch6-sbu "0.2 SBU"> @@ -687,23 +687,23 @@ <!ENTITY udev-lfs-md5 "d92afb0c6e8e616792068ee4737b0d24"> <!ENTITY udev-lfs-home " "> -<!ENTITY util-linux-minor "2.33"> -<!ENTITY util-linux-version "2.33.2"> <!-- 2.33.x --> -<!ENTITY util-linux-size "4,597 KB"> +<!ENTITY util-linux-minor "2.34"> +<!ENTITY util-linux-version "2.34"> <!-- 2.33.x --> +<!ENTITY util-linux-size "4,859 KB"> <!ENTITY util-linux-url "&kernel;linux/utils/util-linux/v&util-linux-minor;/util-linux-&util-linux-version;.tar.xz"> -<!ENTITY util-linux-md5 "91653b90fcbe9c161153e39b8cc69fb5"> +<!ENTITY util-linux-md5 "a78cbeaed9c39094b96a48ba8f891d50"> <!ENTITY util-linux-home "http://freecode.com/projects/util-linux"> <!ENTITY util-linux-ch5-du "147 MB"> <!ENTITY util-linux-ch5-sbu "1 SBU"> <!ENTITY util-linux-ch6-du "214 MB"> <!ENTITY util-linux-ch6-sbu "1.5 SBU"> -<!ENTITY vim-version "8.1"> +<!ENTITY vim-version "8.1.1535"> <!ENTITY vim-majmin "81"> <!ENTITY vim-docdir "vim/vim81"> -<!ENTITY vim-size "10,995 KB"> -<!ENTITY vim-url "ftp://ftp.vim.org/pub/vim/unix/vim-&vim-version;.tar.bz2"> -<!ENTITY vim-md5 "1739a1df312305155285f0cfa6118294"> +<!ENTITY vim-size "14,028 KB"> +<!ENTITY vim-url "https://github.com/vim/vim/archive/v&vim-version;/vim-&vim-version;.tar.gz"> +<!ENTITY vim-md5 "95935d54145e03a1c5a499bb3712817d"> <!ENTITY vim-home "https://www.vim.org"> <!ENTITY vim-ch6-du "169 MB"> <!ENTITY vim-ch6-sbu "1.3 SBU"> |