Update to man-pages-3.67.

Reformatted version check script to fit pdf pages properly.
Added a note about adding the parent directory to the es and pt 
keymaps for proper keymap loading.


git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@10569 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
This commit is contained in:
Bruce Dubbs 2014-05-28 03:34:38 +00:00
parent 377cfd0116
commit 3d2cea91bd
5 changed files with 62 additions and 20 deletions

View File

@ -35,6 +35,27 @@
</itemizedlist>
</listitem>
-->
<listitem>
<para>2014-05-27</para>
<itemizedlist>
<listitem>
<para>[bdubbs] - Update to man-pages-3.67. Fixes
<ulink url="&lfs-ticket-root;3588">#3588</ulink>.</para>
</listitem>
<listitem>
<para>[bdubbs] - Reformatted version check script to fit
pdf pages properly. Fixes
<ulink url="&lfs-ticket-root;3590">#3590</ulink>.</para>
</listitem>
<listitem>
<para>[bdubbs] - Added a note about adding the
parent directory to the es and pt keymaps for proper
keymap loading. Fixes
<ulink url="&lfs-ticket-root;3591">#3591</ulink>.</para>
</listitem>
</itemizedlist>
</listitem>
<listitem>
<para>2014-05-19</para>
<itemizedlist>

View File

@ -396,9 +396,13 @@ EOF</userinput></screen>
<listitem>
<para>This variable specifies the arguments for the
<command>loadkeys</command> program, typically, the name of keymap
to load, e.g., <quote>es</quote>. If this variable is not set, the
to load, e.g., <quote>it</quote>. If this variable is not set, the
bootscript will not run the <command>loadkeys</command> program,
and the default kernel keymap will be used.</para>
and the default kernel keymap will be used. Note that for the
keymaps es and pt, the parent directory should also be specified
(e.g. qwerty/es or query/pt) to ensure the proper keymap is
loaded.
</para>
</listitem>
</varlistentry>

View File

@ -1,6 +1,6 @@
<!ENTITY version "SVN-20140519">
<!ENTITY version "SVN-20140527">
<!ENTITY short-version "svn"> <!-- Used in dbus chapter, change to x.y for release -->
<!ENTITY releasedate "May 19, 2014">
<!ENTITY releasedate "May 27, 2014">
<!ENTITY copyrightdate "1999-2014"><!-- jhalfs needs a literal dash, not &ndash; -->
<!ENTITY milestone "8.0">
<!ENTITY generic-version "development"> <!-- Use "development", "testing", or "x.y[-pre{x}]" -->

View File

@ -453,10 +453,10 @@
<!ENTITY man-db-ch6-du "27 MB">
<!ENTITY man-db-ch6-sbu "0.5 SBU">
<!ENTITY man-pages-version "3.66">
<!ENTITY man-pages-size "1,211 KB">
<!ENTITY man-pages-version "3.67">
<!ENTITY man-pages-size "1,219 KB">
<!ENTITY man-pages-url "&kernel;linux/docs/man-pages/man-pages-&man-pages-version;.tar.xz">
<!ENTITY man-pages-md5 "4400766c63a28e58bb899a2d3a0191d8">
<!ENTITY man-pages-md5 "5629dae00ef93658ada9226aa33b51b6">
<!ENTITY man-pages-home "http://www.kernel.org/doc/man-pages/">
<!ENTITY man-pages-ch6-du "23 MB">
<!ENTITY man-pages-ch6-sbu "less than 0.1 SBU">

View File

@ -176,26 +176,39 @@ if [ -e /usr/bin/awk ];
then echo "/usr/bin/awk -&gt; `readlink -f /usr/bin/awk`";
else echo "awk not found"; fi
gcc --version | head -n1
g++ --version | head -n1
ldd --version | head -n1 | cut -d" " -f2- # glibc version
grep --version | head -n1
gzip --version | head -n1
gcc - -version | head -n1
g++ - -version | head -n1
ldd - -version | head -n1 | cut -d" " -f2- # glibc version
grep - -version | head -n1
gzip - -version | head -n1
cat /proc/version
m4 --version | head -n1
make --version | head -n1
patch --version | head -n1
m4 - -version | head -n1
make - -version | head -n1
patch - -version | head -n1
echo Perl `perl -V:version`
sed --version | head -n1
tar --version | head -n1
xz --version | head -n1
sed - -version | head -n1
tar - -version | head -n1
xz - -version | head -n1
echo 'main(){}' &gt; dummy.c &amp;&amp; g++ -o dummy dummy.c
if [ -x dummy ]
then echo "g++ compilation OK";
else echo "g++ compilation failed"; fi
rm -f dummy.c dummy
rm -f dummy.c dummy</literal>
<!--
for lib in lib{gmp,mpfr,mpc}.la; do
echo $lib: $(if find /usr/lib* -name $lib|
grep -q $lib;then :;else echo not;fi) found
done
unset lib</literal>-->
EOF
bash version-check.sh</userinput></screen>
<para>Also check for some library consistency:</para>
<screen role="nodump"><userinput>cat &gt; library-check.sh &lt;&lt; "EOF"
<literal>#!/bin/bash
for lib in lib{gmp,mpfr,mpc}.la; do
echo $lib: $(if find /usr/lib* -name $lib|
grep -q $lib;then :;else echo not;fi) found
@ -203,7 +216,11 @@ done
unset lib</literal>
EOF
bash version-check.sh</userinput></screen>
bash library-check.sh</userinput></screen>
<para>The files identified by this script should be all present
or all absent, but not only one or two present.</para>
</sect2>
</sect1>