Changeset 2590473


Ignore:
Timestamp:
02/06/2022 04:45:15 AM (2 years ago)
Author:
Thomas Trepl (Moody) <thomas@…>
Branches:
multilib
Children:
2195c1e
Parents:
3e09569 (diff), d759d8b (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Automatic merge of trunk into multilib

Files:
18 edited
1 moved

Legend:

Unmodified
Added
Removed
  • appendices/dependencies.xml

    r3e09569 r2590473  
    15581558        <seglistitem>
    15591559          <seg>Bash, Binutils, Bison, Coreutils, Flex, GCC, Gettext, Glibc,
    1560           Gzip, Make, Pkg-config, Sed, Xz, and Zlib</seg>
     1560          Gzip, Make, OpenSSL, Pkg-config, Sed, Xz, and Zlib</seg>
    15611561        </seglistitem>
    15621562      </segmentedlist>
     
    23332333        <segtitle>&before;</segtitle>
    23342334        <seglistitem>
    2335           <seg>Coreutils and Linux</seg>
     2335          <seg>Coreutils, Kmod, and Linux</seg>
    23362336        </seglistitem>
    23372337      </segmentedlist>
     
    32263226        <segtitle>&external;</segtitle>
    32273227        <seglistitem>
    3228           <seg>None</seg>
     3228          <seg>
     3229            <ulink url="http://lz4.github.io/lz4/">LZ4</ulink>
     3230          </seg>
    32293231        </seglistitem>
    32303232      </segmentedlist>
  • chapter01/changelog.xml

    r3e09569 r2590473  
    4444      <itemizedlist>
    4545        <listitem>
     46          <para>[xry111] - Remove <command>bash</command>
     47          <literal>+h</literal> directives in chroot.  Fixes
     48          <ulink url="&lfs-ticket-root;4998">#4998</ulink>.</para>
     49        </listitem>
     50        <listitem>
     51          <para>[xry111] - Update to man-db-2.10.0.  Fixes
     52          <ulink url="&lfs-ticket-root;5002">#5002</ulink>.</para>
     53        </listitem>
     54        <listitem>
     55          <para>[xry111] - Move OpenSSL before Kmod and enable OpenSSL
     56          for Kmod build.</para>
     57        </listitem>
     58        <listitem>
     59          <para>[xry111] - Update to gdbm-1.23.  Fixes
     60          <ulink url="&lfs-ticket-root;5000">#5000</ulink>.</para>
     61        </listitem>
     62        <listitem>
     63          <para>[xry111] - Update to tcl-8.6.12.  Fixes
     64          <ulink url="&lfs-ticket-root;5001">#5001</ulink>.</para>
     65        </listitem>
     66        <listitem>
    4667          <para>[thomas] - Remove sed from glibc instructions in chapter 8.
    4768            It has been applied upstream.</para>
  • chapter01/whatsnew.xml

    r3e09569 r2590473  
    244244      <para>Tar-&tar-version;</para>
    245245    </listitem>-->
    246     <!--<listitem>
     246    <listitem>
    247247      <para>Tcl-&tcl-version;</para>
    248     </listitem>-->
     248    </listitem>
    249249    <!--<listitem>
    250250      <para>Texinfo-&texinfo-version;</para>
  • chapter04/settingenviron.xml

    r3e09569 r2590473  
    7979  the shell will always search the <envar>PATH</envar> when a program is to
    8080  be run. As such, the shell will find the newly compiled tools in
    81   <filename class="directory">$LFS/tools</filename> as soon as they are
    82   available without remembering a previous version of the same program in a
    83   different location.</para>
     81  <filename class="directory">$LFS/tools/bin</filename> as soon as they are
     82  available without remembering a previous version of the same program
     83  provided by the host distro, in
     84  <filename class='directory'>/usr/bin</filename> or
     85  <filename class='directory'>/bin</filename>.</para>
    8486      </listitem>
    8587    </varlistentry>
  • chapter07/chroot.xml

    r3e09569 r2590473  
    2424    PS1='(lfs chroot) \u:\w\$ ' \
    2525    PATH=/usr/bin:/usr/sbin     \
    26     /bin/bash --login +h</userinput></screen>
     26    /bin/bash --login</userinput></screen>
    2727
    2828  <para>The <parameter>-i</parameter> option given to the <command>env</command>
     
    4545  <para>Notice that <filename class="directory">/tools/bin</filename> is not
    4646  in the <envar>PATH</envar>. This means that the cross toolchain will no longer be
    47   used in the chroot environment. This occurs when the shell does not
    48   <quote>remember</quote> the locations of executed binaries&mdash;for this
    49   reason, hashing is switched off by passing the <parameter>+h</parameter> option
    50   to <command>bash</command>.</para>
     47  used in the chroot environment.</para>
    5148
    5249  <para>Note that the <command>bash</command> prompt will say
  • chapter07/createfiles.xml

    r3e09569 r2590473  
    144144mail:x:34:
    145145kvm:x:61:
    146 systemd-bus-proxy:x:72:
    147146systemd-journal-gateway:x:73:
    148147systemd-journal-remote:x:74:
     
    185184  work:</para>
    186185
    187 <screen role="nodump"><userinput>exec /usr/bin/bash --login +h</userinput></screen>
    188 
    189   <para>Note the use of the <parameter>+h</parameter> directive. This tells
    190   <command>bash</command> not to use its internal path hashing. Without this
    191   directive, <command>bash</command> would remember the paths to binaries it has
    192   executed. To ensure the use of the newly compiled binaries as soon as they are
    193   installed, the <parameter>+h</parameter> directive will be used for the duration
    194   of this and the next chapter.</para>
     186<screen role="nodump"><userinput>exec /usr/bin/bash --login</userinput></screen>
    195187
    196188  <para>The <command>login</command>, <command>agetty</command>, and
  • chapter08/bash.xml

    r3e09569 r2590473  
    9595    currently being executed):</para>
    9696
    97  <screen role="nodump"><userinput>exec /usr/bin/bash --login +h</userinput></screen>
    98 
    99     <note>
    100       <para>The parameters used make the <command>bash</command>
    101       process an interactive login shell and continues to disable hashing so
    102       that new programs are found as they become available.</para>
    103     </note>
     97 <screen role="nodump"><userinput>exec /usr/bin/bash --login</userinput></screen>
    10498
    10599  </sect2>
  • chapter08/chapter08.xml

    r3e09569 r2590473  
    6060  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="autoconf.xml"/>
    6161  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="automake.xml"/>
     62  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="openssl.xml"/>
    6263  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="kmod.xml"/>
    6364  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="libelf.xml"/>
    6465  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="libffi.xml"/>
    65   <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="openssl.xml"/>
    6666  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="python.xml"/>
    6767  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="ninja.xml"/>
     
    107107  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="aboutdebug.xml"/>
    108108  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="stripping.xml"/>
    109   <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="revisedchroot.xml"/>
     109  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="cleanup.xml"/>
    110110
    111111</chapter>
  • chapter08/cleanup.xml

    r3e09569 r2590473  
    66]>
    77
    8 <sect1 id="ch-system-revisedchroot">
    9   <?dbhtml filename="revisedchroot.html"?>
     8<sect1 id="ch-system-cleanup">
     9  <?dbhtml filename="cleanup.html"?>
    1010
    1111  <title>Cleaning Up</title>
     
    1414
    1515<screen><userinput>rm -rf /tmp/*</userinput></screen>
    16 
    17   <para>Now log out and reenter the chroot environment with an updated
    18   chroot command.  From now on, use this updated chroot command any time
    19   you need to reenter the chroot environment after exiting:</para>
    20 
    21 <screen role="nodump"><userinput>logout
    22 
    23 chroot "$LFS" /usr/bin/env -i          \
    24     HOME=/root TERM="$TERM"            \
    25     PS1='(lfs chroot) \u:\w\$ '        \
    26     PATH=/usr/bin:/usr/sbin            \
    27     /usr/bin/bash --login</userinput></screen>
    28 
    29   <para>Here the <parameter>+h</parameter> option is not used anymore, since
    30   all the previous programs have been replaced: hashing is therefore
    31   possible.</para>
    32 
    33   <para>If the virtual kernel file systems have been unmounted, either manually
    34   or through a reboot, ensure that the virtual kernel file systems are mounted
    35   when reentering the chroot. This process was explained in <xref
    36   linkend="ch-tools-bindmount"/> and <xref
    37   linkend="ch-tools-kernfsmount"/>.</para>
    3816
    3917  <para>There are also several files installed in the /usr/lib and /usr/libexec
  • chapter08/gcc.xml

    r3e09569 r2590473  
    4444    <para>At first, fix an issue breaking
    4545    <filename class="libraryfile">libasan.a</filename> building this package
    46     with Glibc-2.34:</para>
     46    with Glibc-2.34 or later:</para>
    4747
    4848<screen><userinput remap="pre">sed -e '/static.*SIGSTKSZ/d' \
  • chapter08/gdbm.xml

    r3e09569 r2590473  
    7474    <para>To test the results, issue:</para>
    7575
    76 <screen><userinput remap="test">make -k check</userinput></screen>
    77 
     76<screen><userinput remap="test">make check</userinput></screen>
     77<!--
    7878    <para>
    79       The gdbmtool tests are known to fail with some DejaGNU
    80       <literal>ERROR</literal> messages.  In the summary it's
    81       shown as one unresolved testcase.
     79      One test, <filename>version</filename>, is known to fail.
    8280    </para>
    83 
     81-->
    8482    <para>Install the package:</para>
    8583
  • chapter08/glibc.xml

    r3e09569 r2590473  
    201201<screen><userinput remap="install">touch /etc/ld.so.conf</userinput></screen>
    202202
    203     <para>Fix the generated Makefile to skip an unneeded sanity check
     203    <para>Fix the Makefile to skip an unneeded sanity check
    204204    that fails in the LFS partial environment:
    205205    </para>
  • chapter08/kmod.xml

    r3e09569 r2590473  
    4646<screen><userinput remap="configure">./configure --prefix=/usr          \
    4747            --sysconfdir=/etc      \
     48            --with-openssl         \
    4849            --with-xz              \
    4950            --with-zstd            \
     
    5455
    5556      <varlistentry>
    56         <term><parameter>--with-xz, --with-zlib, --with-zstd</parameter></term>
     57        <term>
     58          <parameter>--with-openssl</parameter>
     59        </term>
     60        <listitem>
     61          <para>This option enables Kmod to handle PKCS7 signatures for
     62          kernel modules.</para>
     63        </listitem>
     64      </varlistentry>
     65
     66      <varlistentry>
     67        <term>
     68          <parameter>--with-xz</parameter>,
     69          <parameter>--with-zlib</parameter>, and
     70          <parameter>--with-zstd</parameter>
     71        </term>
    5772        <listitem>
    5873          <para>These options enable Kmod to handle compressed kernel modules.</para>
     
    6681<screen><userinput remap="make">make</userinput></screen>
    6782
    68     <para>This package does not come with a test suite that can be run in the
    69     LFS chroot environment.  At a minimum the git program is required and
    70     several tests will not run outside of a git repository. </para>
     83    <para>The test suite of this package requires raw kernel headers
     84    (not the <quote>sanitized</quote> kernel headers installed earlier),
     85    which are beyond the scope of LFS.</para>
    7186
    7287    <para>Install the package and create symlinks for
  • chapter08/man-db.xml

    r3e09569 r2590473  
    4444    <para>Prepare Man-DB for compilation:</para>
    4545
    46 <screen revision="systemd"><userinput remap="configure">./configure --prefix=/usr                        \
     46<screen revision="systemd"><userinput remap="configure">./configure --prefix=/usr                         \
    4747            --docdir=/usr/share/doc/man-db-&man-db-version; \
    48             --sysconfdir=/etc                    \
    49             --disable-setuid                     \
    50             --enable-cache-owner=bin             \
    51             --with-browser=/usr/bin/lynx         \
    52             --with-vgrind=/usr/bin/vgrind        \
     48            --sysconfdir=/etc                     \
     49            --disable-setuid                      \
     50            --enable-cache-owner=bin              \
     51            --with-browser=/usr/bin/lynx          \
     52            --with-vgrind=/usr/bin/vgrind         \
    5353            --with-grap=/usr/bin/grap</userinput></screen>
    5454
    55 <screen revision="sysv"><userinput remap="configure">./configure --prefix=/usr                        \
     55<screen revision="sysv"><userinput remap="configure">./configure --prefix=/usr                         \
    5656            --docdir=/usr/share/doc/man-db-&man-db-version; \
    57             --sysconfdir=/etc                    \
    58             --disable-setuid                     \
    59             --enable-cache-owner=bin             \
    60             --with-browser=/usr/bin/lynx         \
    61             --with-vgrind=/usr/bin/vgrind        \
    62             --with-grap=/usr/bin/grap            \
    63             --with-systemdtmpfilesdir=           \
     57            --sysconfdir=/etc                     \
     58            --disable-setuid                      \
     59            --enable-cache-owner=bin              \
     60            --with-browser=/usr/bin/lynx          \
     61            --with-vgrind=/usr/bin/vgrind         \
     62            --with-grap=/usr/bin/grap             \
     63            --with-systemdtmpfilesdir=            \
    6464            --with-systemdsystemunitdir=</userinput></screen>
    6565
     
    307307
    308308      <seglistitem>
    309         <seg>accessdb, apropos (link to whatis), catman, lexgrog, man, mandb,
    310         manpath, and whatis</seg>
     309        <seg>accessdb, apropos (link to whatis), catman, lexgrog, man,
     310        man-recode, mandb, manpath, and whatis</seg>
    311311        <seg>libman.so and libmandb.so (both in /usr/lib/man-db)</seg>
    312312        <seg>/usr/lib/man-db, /usr/libexec/man-db,
     
    374374      </varlistentry>
    375375
     376      <varlistentry id="man-recode">
     377        <term><command>man-recode</command></term>
     378        <listitem>
     379          <para>Converts manual pages to another encoding</para>
     380          <indexterm zone="ch-system-man-db man-recode">
     381            <primary sortas="b-man-recode">man-recode</primary>
     382          </indexterm>
     383        </listitem>
     384      </varlistentry>
     385
    376386      <varlistentry id="mandb">
    377387        <term><command>mandb</command></term>
  • chapter08/systemd.xml

    r3e09569 r2590473  
    5959cd       build
    6060
    61 LANG=en_US.UTF-8                    \
    6261meson --prefix=/usr                 \
    6362      --sysconfdir=/etc             \
     
    132131          <filename>/etc/group</filename> and
    133132          <filename>/etc/passwd</filename> files. Both files
    134           were created earlier in this chapter. This daemon is not useful
     133          were created in the previous chapter. This daemon is not useful
    135134          on an LFS system since user accounts are manually created.</para>
    136135        </listitem>
     
    174173    <para>Compile the package:</para>
    175174
    176 <screen><userinput remap="make">LANG=en_US.UTF-8 ninja</userinput></screen>
     175<screen><userinput remap="make">ninja</userinput></screen>
    177176
    178177    <para>Install the package:</para>
    179178
    180 <screen><userinput remap="install">LANG=en_US.UTF-8 ninja install</userinput></screen>
     179<screen><userinput remap="install">ninja install</userinput></screen>
    181180
    182181    <para>Install the man pages:</para>
  • chapter08/tcl.xml

    r3e09569 r2590473  
    44  <!ENTITY % general-entities SYSTEM "../general.ent">
    55  %general-entities;
    6   <!ENTITY tdbc-ver          "1.1.2">
    7   <!ENTITY itcl-ver          "4.2.1">
     6  <!ENTITY tdbc-ver          "1.1.3">
     7  <!ENTITY itcl-ver          "4.2.2">
    88]>
    99
  • chapter08/util-linux.xml

    r3e09569 r2590473  
    4646
    4747<screen revision="sysv"><userinput remap="configure">./configure ADJTIME_PATH=/var/lib/hwclock/adjtime   \
     48            --bindir=/usr/bin    \
    4849            --libdir=/usr/lib    \
     50            --sbindir=/usr/sbin  \
    4951            --docdir=/usr/share/doc/util-linux-&util-linux-version; \
    5052            --disable-chfn-chsh  \
     
    6264
    6365<screen revision="systemd"><userinput remap="configure">./configure ADJTIME_PATH=/var/lib/hwclock/adjtime   \
     66            --bindir=/usr/bin    \
    6467            --libdir=/usr/lib    \
     68            --sbindir=/usr/sbin  \
    6569            --docdir=/usr/share/doc/util-linux-&util-linux-version; \
    6670            --disable-chfn-chsh  \
     
    260264        <seg>addpart, agetty, blkdiscard, blkid, blkzone, blockdev, cal, cfdisk, chcpu,
    261265        chmem, choom, chrt, col, colcrt, colrm, column, ctrlaltdel, delpart, dmesg,
    262         eject, fallocate, fdformat, fdisk, fincore, findfs, findmnt, flock, fsck,
     266        eject, fallocate, fdisk, fincore, findfs, findmnt, flock, fsck,
    263267        fsck.cramfs, fsck.minix, fsfreeze, fstrim, getopt, hexdump, hwclock,
    264         i386, ionice, ipcmk, ipcrm, ipcs, isosize, kill, last, lastb (link to
     268        i386, ionice, ipcmk, ipcrm, ipcs, irqtop, isosize, kill, last, lastb (link to
    265269        last), ldattach, linux32, linux64, logger, look, losetup, lsblk, lscpu,
    266         lsipc, lslocks, lslogins, lsmem, lsns, mcookie, mesg, mkfs, mkfs.bfs, mkfs.cramfs, mkfs.minix, mkswap,
     270        lsipc, lsirq, lslocks, lslogins, lsmem, lsns, mcookie, mesg, mkfs, mkfs.bfs, mkfs.cramfs, mkfs.minix, mkswap,
    267271        more, mount, mountpoint, namei, nsenter, partx, pivot_root, prlimit,
    268272        readprofile, rename, renice, resizepart, rev, rfkill, rtcwake, script,
    269         scriptreplay, setarch, setsid, setterm, sfdisk, sulogin, swaplabel,
    270         swapoff (link to swapon), swapon, switch_root, taskset, ul,
     273        scriptlive, scriptreplay, setarch, setsid, setterm, sfdisk, sulogin, swaplabel,
     274        swapoff (link to swapon), swapon, switch_root, taskset, uclampset, ul,
    271275        umount, uname26, unshare, utmpdump, uuidd, uuidgen, uuidparse, wall, wdctl, whereis,
    272276        wipefs, x86_64, and zramctl</seg>
     
    503507      </varlistentry>
    504508
    505       <varlistentry id="fdformat">
    506         <term><command>fdformat</command></term>
    507         <listitem>
    508           <para>Low-level formats a floppy disk</para>
    509           <indexterm zone="ch-system-util-linux fdformat">
    510             <primary sortas="b-fdformat">fdformat</primary>
    511           </indexterm>
    512         </listitem>
    513       </varlistentry>
    514 
    515509      <varlistentry id="fdisk">
    516510        <term><command>fdisk</command></term>
     
    702696      </varlistentry>
    703697
     698      <varlistentry id="irqtop">
     699        <term><command>irqtop</command></term>
     700        <listitem>
     701          <para>Displays kernel interrupt counter information in
     702          <filename>top(1)</filename> style view</para>
     703          <indexterm zone="ch-system-util-linux irqtop">
     704            <primary sortas="b-irqtop">irqtop</primary>
     705          </indexterm>
     706        </listitem>
     707      </varlistentry>
     708
    704709      <varlistentry id="isosize">
    705710        <term><command>isosize</command></term>
     
    837842      </varlistentry>
    838843
     844      <varlistentry id="lsirq">
     845        <term><command>lsirq</command></term>
     846        <listitem>
     847          <para>Displays kernel interrupt counter information</para>
     848          <indexterm zone="ch-system-util-linux lsirq">
     849            <primary sortas="b-lsirq">lsirq</primary>
     850          </indexterm>
     851        </listitem>
     852      </varlistentry>
     853
    839854      <varlistentry id="lslocks">
    840855        <term><command>lslocks</command></term>
     
    11131128          <indexterm zone="ch-system-util-linux script">
    11141129            <primary sortas="b-script">script</primary>
     1130          </indexterm>
     1131        </listitem>
     1132      </varlistentry>
     1133
     1134      <varlistentry id="scriptlive">
     1135        <term><command>scriptlive</command></term>
     1136        <listitem>
     1137          <para>Re-run session typescripts using timing information</para>
     1138          <indexterm zone="ch-system-util-linux scriptlive">
     1139            <primary sortas="b-scriptlive">scriptlive</primary>
    11151140          </indexterm>
    11161141        </listitem>
     
    12211246      </varlistentry>
    12221247
    1223       <varlistentry id="tailf">
    1224         <term><command>tailf</command></term>
    1225         <listitem>
    1226           <para>Tracks the growth of a log file; displays the last 10 lines
    1227           of a log file, then continues displaying any new entries in the
    1228           log file as they are created</para>
    1229           <indexterm zone="ch-system-util-linux tailf">
    1230             <primary sortas="b-tailf">tailf</primary>
    1231           </indexterm>
    1232         </listitem>
    1233       </varlistentry>
    1234 
    12351248      <varlistentry id="taskset">
    12361249        <term><command>taskset</command></term>
     
    12391252          <indexterm zone="ch-system-util-linux taskset">
    12401253            <primary sortas="b-taskset">taskset</primary>
     1254          </indexterm>
     1255        </listitem>
     1256      </varlistentry>
     1257
     1258      <varlistentry id="uclampset">
     1259        <term><command>uclampset</command></term>
     1260        <listitem>
     1261          <para>Manipulate the utilization clamping attributes of the
     1262          system or a process</para>
     1263          <indexterm zone="ch-system-util-linux uclampset">
     1264            <primary sortas="b-uclampset">uclampset</primary>
    12411265          </indexterm>
    12421266        </listitem>
  • chapter09/networkd.xml

    r3e09569 r2590473  
    193193      <para>When using <command>systemd-resolved</command> for DNS
    194194      configuration, it creates the file
    195       <filename>/run/systemd/resolve/resolv.conf</filename>.</para>
     195      <filename>/run/systemd/resolve/stub-resolv.conf</filename>.
     196      And, if <filename>/etc/resolv.conf</filename> does not exist, it
     197      will be created by <command>systemd-resolved</command> as a symlink to
     198      <filename>/run/systemd/resolve/stub-resolv.conf</filename>. So it's
     199      unnecessary to create a <filename>/etc/resolv.conf</filename>
     200      manually.</para>
    196201      <!--Create a
    197202      symlink in <filename>/etc</filename> to use the generated file:</para>
     
    345350     network/system administrator and the machine will be connected to an
    346351     existing network). The optional alias name(s) can be omitted, and the
    347      <replaceable>&lt;192.168.0.2</replaceable> line can be omitted if you
     352     <replaceable>&lt;192.168.0.2&gt;</replaceable> line can be omitted if you
    348353     are using a connection configured with DHCP or IPv6 Autoconfiguration.</para>
    349354
  • packages.ent

    r3e09569 r2590473  
    241241<!ENTITY libstdcpp-tmpp2-sbu "0.8 SBU">
    242242
    243 <!ENTITY gdbm-version "1.22">
    244 <!ENTITY gdbm-size "1065 KB">
     243<!ENTITY gdbm-version "1.23">
     244<!ENTITY gdbm-size "1,092 KB">
    245245<!ENTITY gdbm-url "&gnu;gdbm/gdbm-&gdbm-version;.tar.gz">
    246 <!ENTITY gdbm-md5 "0bbd38f12656e4728e2f7c4708aec014">
     246<!ENTITY gdbm-md5 "8551961e36bf8c70b7500d255d3658ec">
    247247<!ENTITY gdbm-home "&gnu-software;gdbm/">
    248248<!ENTITY gdbm-fin-du "11 MB">
     
    477477<!ENTITY make-fin-sbu "0.6 SBU">
    478478
    479 <!ENTITY man-db-version "2.9.4">
    480 <!ENTITY man-db-size "1,865 KB">
     479<!ENTITY man-db-version "2.10.0">
     480<!ENTITY man-db-size "1,844 KB">
    481481<!ENTITY man-db-url "&savannah;/releases/man-db/man-db-&man-db-version;.tar.xz">
    482 <!ENTITY man-db-md5 "6e233a555f7b9ae91ce7cd0faa322bce">
     482<!ENTITY man-db-md5 "96009cd422f2e62b01b8c4de0f5691f1">
    483483<!ENTITY man-db-home "https://www.nongnu.org/man-db/">
    484484<!ENTITY man-db-fin-du "38 MB">
     
    686686<!ENTITY tar-fin-sbu "1.9 SBU">
    687687
    688 <!ENTITY tcl-version "8.6.11">
     688<!ENTITY tcl-version "8.6.12">
    689689<!ENTITY tcl-major-version "8.6">
    690 <!ENTITY tcl-size "10,020 KB">
     690<!ENTITY tcl-size "10,112 KB">
    691691<!ENTITY tcl-url "https://downloads.sourceforge.net/tcl/tcl&tcl-version;-src.tar.gz">
    692 <!ENTITY tcl-md5 "8a4c004f48984a03a7747e9ba06e4da4">
     692<!ENTITY tcl-md5 "87ea890821d2221f2ab5157bc5eb885f">
    693693<!ENTITY tcl-home "http://tcl.sourceforge.net/">
    694694<!ENTITY tcl-docs-url "https://downloads.sourceforge.net/tcl/tcl&tcl-version;-html.tar.gz">
    695 <!ENTITY tcl-docs-md5 "e358a9140c3a171e42f18c8a7f6a36ea">
    696 <!ENTITY tcl-docs-size "1,172 KB">
     695<!ENTITY tcl-docs-md5 "a0d1a5b60bbb68f2f0bd3066a19c527a">
     696<!ENTITY tcl-docs-size "1,176 KB">
    697697<!ENTITY tcl-tmp-du "80 MB">
    698698<!ENTITY tcl-tmp-sbu "3.7 SBU">
Note: See TracChangeset for help on using the changeset viewer.