Changeset ba9a546


Ignore:
Timestamp:
07/06/2014 06:20:40 PM (10 years ago)
Author:
Krejzi <krejzi@…>
Branches:
7.6-systemd, 7.7-systemd, 7.8-systemd, 7.9-systemd
Children:
63e8d0a
Parents:
346eaef1
Message:

Merge lfs svn, dbus 1.8.6 update, fix md5sums repored by spiky.

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

Files:
9 edited

Legend:

Unmodified
Added
Removed
  • chapter01/changelog.xml

    r346eaef1 rba9a546  
    3636    </listitem>
    3737-->
     38    <listitem>
     39      <para>2014-07-06</para>
     40      <itemizedlist>
     41        <listitem>
     42          <para>[krejzi] - Merged LFS SVN-20140702.</para>
     43        </listitem>
     44        <listitem>
     45          <para>[krejzi] - Updated to D-Bus 1.8.6.</para>
     46        </listitem>
     47      </itemizedlist>
     48    </listitem>
     49
     50    <listitem>
     51      <para>2014-07-02</para>
     52      <itemizedlist>
     53        <listitem>
     54          <para>[Chris] - Added command explanations for new switches on
     55          GCC Pass 1. Fixes
     56          <ulink url="&lfs-ticket-root;3625">#3625</ulink>.</para>
     57        </listitem>
     58      </itemizedlist>
     59    </listitem>
     60
     61    <listitem>
     62      <para>2014-06-30</para>
     63      <itemizedlist>
     64        <listitem>
     65          <para>[Chris] - Install Vim documentation to /usr/share/doc
     66          instead of creating a symlink there. Fixes
     67          <ulink url="&lfs-ticket-root;3617">#3617</ulink>.</para>
     68        </listitem>
     69        <listitem>
     70          <para>[Chris] - Removed DESTDIR and MANDIR from IPRoute2
     71          page - they are no longer needed.</para>
     72        </listitem>
     73      </itemizedlist>
     74    </listitem>
     75
    3876    <listitem>
    3977      <para>2014-06-29</para>
  • chapter05/gcc-pass1.xml

    r346eaef1 rba9a546  
    194194        --disable-libatomic, --disable-libgomp, --disable-libitm,
    195195        --disable-libmudflap, --disable-libquadmath, --disable-libsanitizer,
    196         --disable-libssp, --disable-libstdc++-v3</parameter></term>
     196        --disable-libssp, --disable-libvtv, --disable-libcilkrts,
     197        --disable-libstdc++-v3</parameter></term>
    197198        <listitem>
    198199          <para>These switches disable support for the decimal floating point
    199200          extension, threading, libatomic, libgomp, libitm, libmudflap,
    200           libquadmath, libsanitizer, libssp and the C++ standard library
    201           respectively. These features will fail to compile when building a
    202           cross-compiler and are not necessary for the task of cross-compiling
    203           the temporary libc.</para>
     201          libquadmath, libsanitizer, libssp, libvtv, libcilkrts
     202          and the C++ standard library respectively. These features will fail
     203          to compile when building a cross-compiler and are not necessary for
     204          the task of cross-compiling the temporary libc.</para>
    204205        </listitem>
    205206      </varlistentry>
  • chapter06/binutils.xml

    r346eaef1 rba9a546  
    7878    <para>Prepare Binutils for compilation:</para>
    7979
    80 <screen><userinput remap="configure">../binutils-&binutils-version;/configure --prefix=/usr  \
    81                           --enable-shared \
    82                           --disable-werror</userinput></screen>
     80<screen><userinput remap="configure">../binutils-&binutils-version;/configure --prefix=/usr   \
     81                           --enable-shared \
     82                           --disable-werror</userinput></screen>
    8383
    8484    <para>Compile the package:</para>
  • chapter06/iproute2.xml

    r346eaef1 rba9a546  
    6161    <para>Compile the package:</para>
    6262
    63 <screen><userinput remap="make">make DESTDIR=</userinput></screen>
    64 
    65     <variablelist>
    66       <title>The meaning of the make option:</title>
    67 
    68       <varlistentry>
    69         <term><parameter>DESTDIR=</parameter></term>
    70         <listitem>
    71           <para>This ensures that the IPRoute2 binaries will install into
    72           the correct directory. By default, <parameter>DESTDIR</parameter> is
    73           set to <filename class="directory">/usr</filename>.</para>
    74         </listitem>
    75       </varlistentry>
    76 
    77     </variablelist>
     63<screen><userinput remap="make">make</userinput></screen>
    7864
    7965    <para>This package comes with a test suite, but due to assumptions it makes,
     
    8874    <para>Install the package:</para>
    8975
    90 <screen><userinput remap="install">make DESTDIR=              \
    91      MANDIR=/usr/share/man \
    92      DOCDIR=/usr/share/doc/iproute2-&iproute2-version; install</userinput></screen>
     76<screen><userinput remap="install">make DOCDIR=/usr/share/doc/iproute2-&iproute2-version; install</userinput></screen>
    9377
    9478  </sect2>
  • chapter06/vim.xml

    r346eaef1 rba9a546  
    8484    <para>Install the package:</para>
    8585
    86 <screen><userinput remap="install">make install</userinput></screen>
     86<screen><userinput remap="install">make HELPSUBLOC=/usr/share/doc/vim-&vim-version; install</userinput></screen>
     87
     88    <variablelist>
     89      <title>The meaning of the make option:</title>
     90
     91      <varlistentry>
     92        <term><parameter>HELPSUBLOC=/usr/share/doc/vim-&vim-version;</parameter></term>
     93        <listitem>
     94          <para>Tells Vim to install its documentation into
     95          <filename class="directory">/usr/share/doc/vim-&vim-version;</filename>
     96          instead of
     97          <filename class="directory">/usr/share/&vim-docdir;/doc</filename>,
     98          for better consistency with the documentation location for other
     99          packages.</para>
     100        </listitem>
     101      </varlistentry>
     102
     103    </variablelist>
    87104
    88105    <para>Many users are used to using <command>vi</command> instead of
     
    96113    ln -sv vim.1 $(dirname $L)/vi.1
    97114done</userinput></screen>
    98 
    99     <para>By default, Vim's documentation is installed in <filename
    100     class="directory">/usr/share/vim</filename>. The following symlink
    101     allows the documentation to be accessed via <filename
    102     class="directory">/usr/share/doc/vim-&vim-version;</filename>, making
    103     it consistent with the location of documentation for other packages:</para>
    104 
    105 <screen><userinput remap="install">ln -sv ../&vim-docdir;/doc /usr/share/doc/vim-&vim-version;</userinput></screen>
    106115
    107116    <para>If an X Window System is going to be installed on the LFS
  • general.ent

    r346eaef1 rba9a546  
    1 <!ENTITY version         "20140629-systemd">
     1<!ENTITY version         "20140706-systemd">
    22<!ENTITY short-version   "svn">  <!-- Used in dbus chapter, change to x.y for release -->
    3 <!ENTITY releasedate     "June 29, 2014">
     3<!ENTITY releasedate     "July 6, 2014">
    44<!ENTITY copyrightdate   "1999-2014"><!-- jhalfs needs a literal dash, not &ndash; -->
    55<!ENTITY milestone       "7.6">
  • packages.ent

    r346eaef1 rba9a546  
    2020<!ENTITY attr-url "&savannah;/releases/attr/attr-&attr-version;.src.tar.gz">
    2121<!ENTITY attr-md5 "84f58dec00b60f2dc8fd1c9709291cc7">
    22 <!ENTITY attr-home " ">
    23 <!ENTITY attr-ch6-du "3.5 MB">
    24 <!ENTITY attr-ch6-sbu "0.1 SBU">
     22<!ENTITY attr-home "&gnu-software;attr/">
     23<!ENTITY attr-ch6-du "17.1 MB">
     24<!ENTITY attr-ch6-sbu "4.5 SBU">
    2525
    2626<!ENTITY autoconf-version "2.69">
     
    111111<!ENTITY coreutils-ch6-sbu "3.4 SBU">
    112112
    113 <!ENTITY dbus-version "1.8.4">
     113<!ENTITY dbus-version "1.8.6">
    114114<!ENTITY dbus-size "1,820 KB">
    115115<!ENTITY dbus-url "http://dbus.freedesktop.org/releases/dbus/dbus-&dbus-version;.tar.gz">
    116 <!ENTITY dbus-md5 "4717cb8ab5b80978fcadf2b4f2f72e1b">
     116<!ENTITY dbus-md5 "6a08ba555d340e9dfe2d623b83c0eea8">
    117117<!ENTITY dbus-home "http://www.freedesktop.org/wiki/Software/dbus">
    118118<!ENTITY dbus-ch6-du "35 MB">
     
    252252<!ENTITY gmp-extracted-version "6.0.0">
    253253<!ENTITY gmp-size "1,860 KB">
    254 <!ENTITY gmp-url "http://ftp.gnu.org/gnu/gmp/gmp-&gmp-version;.tar.xz">
     254<!ENTITY gmp-url "&gnu;/gmp/gmp-&gmp-version;.tar.xz">
    255255<!ENTITY gmp-md5 "1e6da4e434553d2811437aa42c7f7c76">
    256256<!ENTITY gmp-home "&gnu-software;gmp/">
     
    338338<!ENTITY kbd-version "2.0.1">
    339339<!ENTITY kbd-size "1,962 KB">
    340 <!ENTITY kbd-url "http://ftp.altlinux.org/pub/people/legion/kbd/kbd-&kbd-version;.tar.gz">
     340<!ENTITY kbd-url "https://www.kernel.org/pub/linux/utils/kbd/kbd-&kbd-version;.tar.gz">
    341341<!ENTITY kbd-md5 "e9f2b7046312c11cec9e52e22f307b6a">
    342342<!ENTITY kbd-home "http://ftp.altlinux.org/pub/people/legion/kbd">
     
    465465<!ENTITY ncurses-version "5.9">
    466466<!ENTITY ncurses-size "2,760 KB">
    467 <!ENTITY ncurses-url "http://ftp.gnu.org/gnu/ncurses/ncurses-&ncurses-version;.tar.gz">
     467<!ENTITY ncurses-url "&gnu;/ncurses/ncurses-&ncurses-version;.tar.gz">
    468468<!ENTITY ncurses-md5 "8cb9c412e5f2d96bc6f459aa8c6282a1">
    469469<!ENTITY ncurses-home "&gnu-software;ncurses/">
     
    535535<!ENTITY sed-ch6-sbu "0.2 SBU">
    536536
    537 <!ENTITY shadow-version "4.1.5.1">
    538 <!ENTITY shadow-size "3,428 KB">
    539 <!ENTITY shadow-url "http://cdn.debian.net/debian/pool/main/s/shadow/shadow_&shadow-version;.orig.tar.gz">
    540 <!ENTITY shadow-md5 "ae66de9953f840fb3a97f6148bc39a30">
    541 <!-- <!ENTITY shadow-home "http://pkg-shadow.alioth.debian.org/"> -->
     537<!ENTITY shadow-version "4.2.1">
     538<!ENTITY shadow-size "1,558 KB">
     539<!ENTITY shadow-url "http://pkg-shadow.alioth.debian.org/releases/shadow-&shadow-version;.tar.xz">
     540<!ENTITY shadow-md5 "2bfafe7d4962682d31b5eba65dba4fc8">
     541<!ENTITY shadow-home "http://pkg-shadow.alioth.debian.org/">
    542542<!ENTITY shadow-ch6-du "42 MB">
    543543<!ENTITY shadow-ch6-sbu "0.2 SBU">
     544
     545<!ENTITY systemd-version "214">
     546<!ENTITY systemd-size    "2,278 KB">
     547<!ENTITY systemd-url     "http://www.freedesktop.org/software/systemd/systemd-&systemd-version;.tar.xz">
     548<!ENTITY systemd-md5     "eac4f9fc5bd18a0efc3fc20858baacf3">
     549<!ENTITY systemd-home    "http://www.freedesktop.org/wiki/Software/systemd/">
     550<!ENTITY systemd-ch6-du  "410 MB">
     551<!ENTITY systemd-ch6-sbu "4.5 SBU">
    544552
    545553<!ENTITY tar-version "1.27.1">
     
    572580<!ENTITY texinfo-ch6-sbu "0.6 SBU">
    573581
    574 <!ENTITY systemd-version "214">
    575 <!ENTITY systemd-size    "2,278 KB">
    576 <!ENTITY systemd-url     "http://www.freedesktop.org/software/systemd/systemd-&systemd-version;.tar.xz">
    577 <!ENTITY systemd-md5     "eac4f9fc5bd18a0efc3fc20858baacf3">
    578 <!ENTITY systemd-home    "http://www.freedesktop.org/wiki/Software/systemd/">
    579 <!ENTITY systemd-ch6-du  "410 MB">
    580 <!ENTITY systemd-ch6-sbu "4.5 SBU">
    581 
    582582<!ENTITY tzdata-version "2014e">
    583583<!ENTITY tzdata-size "217 KB">
  • patches.ent

    r346eaef1 rba9a546  
    5858
    5959<!ENTITY systemd-compat-patch "systemd-&systemd-version;-compat-1.patch">
    60 <!ENTITY systemd-compat-patch-md5 "1f87b648878a0f6f16717e17920d2198">
     60<!ENTITY systemd-compat-patch-md5 "650d85acd70a3e4834f48c1c6ab0a496">
    6161<!ENTITY systemd-compat-patch-size "8.0 KB">
    6262
  • prologue/why.xml

    r346eaef1 rba9a546  
    175175
    176176        <para>This package contains programs for parsing XML.  It is
    177         required for systemd.
     177        required for XML-Parser.
    178178        </para>
    179179      </listitem>
     
    594594        <para>This package contains programs for compressing and decompressing
    595595        files.  It provides the highest compression generally available
    596         and is useful for decompressing packages XZ or LZMA format.</para>
     596        and is useful for decompressing packages in XZ or LZMA format.</para>
    597597      </listitem>
    598598
Note: See TracChangeset for help on using the changeset viewer.