Changeset b5689ba


Ignore:
Timestamp:
12/22/2018 11:11:08 PM (5 years ago)
Author:
DJ Lucas <dj@…>
Branches:
elogind
Children:
984d05e7
Parents:
cf4e047
Message:

Merge to HEAD 20855

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/branches/BOOK-elogind@20857 af4574ff-66df-0310-9fd7-8a98e5e911e0

Files:
6 edited

Legend:

Unmodified
Added
Removed
  • general.ent

    rcf4e047 rb5689ba  
    11<!-- $LastChangedBy$ $Date$ -->
    22
    3 <!ENTITY day          "21">                   <!-- Always 2 digits -->
     3<!ENTITY day          "22">                   <!-- Always 2 digits -->
    44<!ENTITY month        "12">                   <!-- Always 2 digits -->
    55<!ENTITY year         "2018">
     
    77<!ENTITY copyholder   "The BLFS Development Team">
    88<!ENTITY version      "&year;-&month;-&day;">
    9 <!ENTITY releasedate  "December 21st, &year;">
     9<!ENTITY releasedate  "December 22nd, &year;">
    1010<!ENTITY pubdate      "&year;-&month;-&day;"> <!-- metadata req. by TLDP -->
    1111<!ENTITY blfs-version "svn">                  <!-- svn|[release #] -->
  • general/genlib/libuv.xml

    rcf4e047 rb5689ba  
    77  <!ENTITY libuv-download-http "https://dist.libuv.org/dist/v&libuv-version;/libuv-v&libuv-version;.tar.gz">
    88  <!ENTITY libuv-download-ftp  " ">
    9   <!ENTITY libuv-md5sum        "90320330757253b07404d2a97f59c66b">
     9  <!ENTITY libuv-md5sum        "a06eb31fe41c446ace34dc1d1d335964">
    1010  <!ENTITY libuv-size          "1.1 MB">
    11   <!ENTITY libuv-buildsize     "12 MB (add 10 MB for tests)">
    12   <!ENTITY libuv-time          "0.1 SBU (add 1.3 SBU for tests)">
     11  <!ENTITY libuv-buildsize     "12 MB (add 11 MB for tests)">
     12  <!ENTITY libuv-time          "0.1 SBU (add 0.6 SBU for tests)">
    1313]>
    1414
     
    9696    </para>
    9797
    98 <screen><userinput>sh autogen.sh                              &amp;&amp;
    99 ./configure --prefix=/usr --disable-static &amp;&amp;
    100 make</userinput></screen>
    101 <!--
    102 Alternativly, if cmake is allready installed:
    103 $ mkdir build
    104 $ cd build
    105 $ sed -e "/TARGETS uv_a ARCHIVE/d" -i ../CMakeLists.txt   # mimic disable-static
    106 $ cmake -DCMAKE_INSTALL_PREFIX=/usr ..
    107 -->
     98<screen><userinput>sed -i "/TARGETS uv_a ARCHIVE/d" CMakeLists.txt &amp;&amp;
     99
     100mkdir build &amp;&amp;
     101cd    build &amp;&amp;
     102
     103cmake -DCMAKE_INSTALL_PREFIX=/usr .. &amp;&amp;
     104make </userinput></screen>
     105
    108106    <para>
    109       To execute the test suite, run <command>make check</command>. 
     107      If you want to run the tests, add -DBUILD_TESTING=true to
     108      the cmake line above and after building run:
     109      <command>make test</command>.
    110110    </para>
    111111
     
    118118  </sect2>
    119119
    120 <!--
     120
    121121  <sect2 role="commands">
    122122    <title>Command Explanations</title>
    123123
    124     <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
    125       href="../../xincludes/static-libraries.xml"/>
     124    <para>
     125      <command>sed ...</command>: This command disables installation
     126      of the static library.
     127    </para>
     128   
     129  </sect2>
    126130
    127     <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
    128       href="../../xincludes/gtk-doc-rebuild.xml"/>
    129 
    130   </sect2>
    131 -->
    132131  <sect2 role="content">
    133132    <title>Contents</title>
  • introduction/welcome/changelog.xml

    rcf4e047 rb5689ba  
    4949        </listitem>
    5050        <listitem>
     51          <para>[bdubbs] - Update to libuv-v1.24.1. Fixes
     52          <ulink url="&blfs-ticket-root;11455">#11455</ulink>.</para>
     53        </listitem>
     54        <listitem>
     55          <para>[bdubbs] - Update to c-ares-1.15.0. Fixes
     56          <ulink url="&blfs-ticket-root;11452">#11452</ulink>.</para>
     57        </listitem>
     58        <listitem>
     59          <para>[bdubbs] - Update to gtk+-3.24.2. Fixes
     60          <ulink url="&blfs-ticket-root;11444">#11444</ulink>.</para>
     61        </listitem>
     62        <listitem>
    5163          <para>[dj] - Complete integration of elogind fd passing in
    5264          xtrans/xorg-server.</para>
  • networking/netlibs/c-ares.xml

    rcf4e047 rb5689ba  
    77  <!ENTITY c-ares-download-http "https://c-ares.haxx.se/download/c-ares-&c-ares-version;.tar.gz">
    88  <!ENTITY c-ares-download-ftp  " ">
    9   <!ENTITY c-ares-md5sum        "e57b37a7c46283e83c21cde234df10c7">
     9  <!ENTITY c-ares-md5sum        "d2391da274653f7643270623e822dff7">
    1010  <!ENTITY c-ares-size          "1.3 MB">
    11   <!ENTITY c-ares-buildsize     "14 MB">
    12   <!ENTITY c-ares-time          "0.3 SBU">
     11  <!ENTITY c-ares-buildsize     "8.5 MB">
     12  <!ENTITY c-ares-time          "0.1 SBU">
    1313]>
    1414
     
    8181    </para>
    8282
    83 <screen><userinput>./configure --prefix=/usr --disable-static &amp;&amp;
     83<screen><userinput>mkdir build &amp;&amp;
     84cd    build &amp;&amp;
     85
     86cmake  -DCMAKE_INSTALL_PREFIX=/usr .. &amp;&amp;
    8487make</userinput></screen>
    8588
  • packages.ent

    rcf4e047 rb5689ba  
    166166<!ENTITY libusb-version               "1.0.22">
    167167<!ENTITY libusb-compat-version        "0.1.5">
    168 <!ENTITY libuv-version                "1.24.0">
     168<!ENTITY libuv-version                "1.24.1">
    169169<!ENTITY libxkbcommon-version         "0.8.2">
    170170<!-- the libxml2-version is also used for the python2 module,
     
    575575
    576576<!-- Chapter 17 -->
    577 <!ENTITY c-ares-version               "1.14.0">
     577<!ENTITY c-ares-version               "1.15.0">
    578578<!ENTITY curl-version                 "7.63.0">
    579579<!ENTITY geoclue2-version             "2.4.12">
     
    691691<!ENTITY goffice010-version           "0.10.43">
    692692<!ENTITY gtk2-version                 "2.24.32">
    693 <!ENTITY gtk3-version                 "3.24.1">
     693<!ENTITY gtk3-version                 "3.24.2">
    694694<!ENTITY gtk-engines-version          "2.20.2">
    695695<!ENTITY gtkmm2-version               "2.24.5">
  • x/lib/gtk+3.xml

    rcf4e047 rb5689ba  
    77  <!ENTITY gtk3-download-http "&gnome-download-http;/gtk+/&gnome-minor-24;/gtk+-&gtk3-version;.tar.xz">
    88  <!ENTITY gtk3-download-ftp  "&gnome-download-ftp;/gtk+/&gnome-minor-24;/gtk+-&gtk3-version;.tar.xz">
    9   <!ENTITY gtk3-md5sum        "9dfe16f486573815f242fa400763feb7">
    10   <!ENTITY gtk3-size          "18 MB">
    11   <!ENTITY gtk3-buildsize     "569 MB (add 9 MB for tests)">
    12   <!ENTITY gtk3-time          "2.8 SBU (using parallelism=4, add 0.5 SBU for tests)">
     9  <!ENTITY gtk3-md5sum        "f336c5ce0bc10f6ebdd9e34dcff65b15">
     10  <!ENTITY gtk3-size          "21 MB">
     11  <!ENTITY gtk3-buildsize     "459 MB (add 10 MB for tests)">
     12  <!ENTITY gtk3-time          "2.5 SBU (using parallelism=4, add 1.0 SBU for tests)">
    1313]>
    1414
     
    145145    </para>
    146146
    147 <screen><userinput>./configure --prefix=/usr             \
     147<screen><userinput>sed -i 's/dfeault/default/' docs/tools/shooter.c &amp;&amp;
     148
     149./configure --prefix=/usr             \
    148150            --sysconfdir=/etc         \
    149151            --enable-broadway-backend \
     
    164166      To test the results you need a graphical session, then issue
    165167      <command>make -k check</command>.
    166       Some tests may fail, although "/Default Values/GdkPixbuf" is the only known
    167       failure as of version 3.24.1.
     168      The colorchooser.ui portion of the accessibility-dump test is
     169      known to fail.  Additioanlly many tests will fail if the current
     170      gtk theme (such as current XFCE themes) has deprecated elements.
    168171    </para>
    169172
Note: See TracChangeset for help on using the changeset viewer.