Changeset fe80e96
- Timestamp:
- 12/22/2018 09:39:52 PM (6 years ago)
- Branches:
- 10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 12.2, 8.4, 9.0, 9.1, bdubbs/svn, gimp3, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, lazarus, lxqt, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, trunk, upgradedb, xry111/for-12.3, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/spidermonkey128, xry111/test-20220226, xry111/xf86-video-removal
- Children:
- d2b02aa
- Parents:
- 8322ee3f
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
general.ent
r8322ee3f rfe80e96 1 1 <!-- $LastChangedBy$ $Date$ --> 2 2 3 <!ENTITY day "2 1"> <!-- Always 2 digits -->3 <!ENTITY day "22"> <!-- Always 2 digits --> 4 4 <!ENTITY month "12"> <!-- Always 2 digits --> 5 5 <!ENTITY year "2018"> … … 7 7 <!ENTITY copyholder "The BLFS Development Team"> 8 8 <!ENTITY version "&year;-&month;-&day;"> 9 <!ENTITY releasedate "December 2 1st, &year;">9 <!ENTITY releasedate "December 22nd, &year;"> 10 10 <!ENTITY pubdate "&year;-&month;-&day;"> <!-- metadata req. by TLDP --> 11 11 <!ENTITY blfs-version "svn"> <!-- svn|[release #] --> -
general/genlib/libuv.xml
r8322ee3f rfe80e96 7 7 <!ENTITY libuv-download-http "https://dist.libuv.org/dist/v&libuv-version;/libuv-v&libuv-version;.tar.gz"> 8 8 <!ENTITY libuv-download-ftp " "> 9 <!ENTITY libuv-md5sum " 90320330757253b07404d2a97f59c66b">9 <!ENTITY libuv-md5sum "a06eb31fe41c446ace34dc1d1d335964"> 10 10 <!ENTITY libuv-size "1.1 MB"> 11 <!ENTITY libuv-buildsize "12 MB (add 1 0MB for tests)">12 <!ENTITY libuv-time "0.1 SBU (add 1.3SBU 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)"> 13 13 ]> 14 14 … … 96 96 </para> 97 97 98 <screen><userinput>sh autogen.sh && 99 ./configure --prefix=/usr --disable-static && 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 && 99 100 mkdir build && 101 cd build && 102 103 cmake -DCMAKE_INSTALL_PREFIX=/usr .. && 104 make </userinput></screen> 105 108 106 <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>. 110 110 </para> 111 111 … … 118 118 </sect2> 119 119 120 <!-- 120 121 121 <sect2 role="commands"> 122 122 <title>Command Explanations</title> 123 123 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> 126 130 127 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"128 href="../../xincludes/gtk-doc-rebuild.xml"/>129 130 </sect2>131 -->132 131 <sect2 role="content"> 133 132 <title>Contents</title> -
introduction/welcome/changelog.xml
r8322ee3f rfe80e96 43 43 --> 44 44 <listitem> 45 <para>December 22nd, 2018</para> 46 <itemizedlist> 47 <listitem> 48 <para>[bdubbs] - Update to libuv-v1.24.1. Fixes 49 <ulink url="&blfs-ticket-root;11455">#11455</ulink>.</para> 50 </listitem> 51 <listitem> 52 <para>[bdubbs] - Update to c-ares-1.15.0. Fixes 53 <ulink url="&blfs-ticket-root;11452">#11452</ulink>.</para> 54 </listitem> 55 <listitem> 56 <para>[bdubbs] - Update to gtk+-3.24.2. Fixes 57 <ulink url="&blfs-ticket-root;11444">#11444</ulink>.</para> 58 </listitem> 59 </itemizedlist> 60 </listitem> 61 62 <listitem> 45 63 <para>December 21st, 2018</para> 46 64 <itemizedlist> -
networking/netlibs/c-ares.xml
r8322ee3f rfe80e96 7 7 <!ENTITY c-ares-download-http "https://c-ares.haxx.se/download/c-ares-&c-ares-version;.tar.gz"> 8 8 <!ENTITY c-ares-download-ftp " "> 9 <!ENTITY c-ares-md5sum " e57b37a7c46283e83c21cde234df10c7">9 <!ENTITY c-ares-md5sum "d2391da274653f7643270623e822dff7"> 10 10 <!ENTITY c-ares-size "1.3 MB"> 11 <!ENTITY c-ares-buildsize " 14MB">12 <!ENTITY c-ares-time "0. 3SBU">11 <!ENTITY c-ares-buildsize "8.5 MB"> 12 <!ENTITY c-ares-time "0.1 SBU"> 13 13 ]> 14 14 … … 81 81 </para> 82 82 83 <screen><userinput>./configure --prefix=/usr --disable-static && 83 <screen><userinput>mkdir build && 84 cd build && 85 86 cmake -DCMAKE_INSTALL_PREFIX=/usr .. && 84 87 make</userinput></screen> 85 88 -
packages.ent
r8322ee3f rfe80e96 166 166 <!ENTITY libusb-version "1.0.22"> 167 167 <!ENTITY libusb-compat-version "0.1.5"> 168 <!ENTITY libuv-version "1.24. 0">168 <!ENTITY libuv-version "1.24.1"> 169 169 <!ENTITY libxkbcommon-version "0.8.2"> 170 170 <!-- the libxml2-version is also used for the python2 module, … … 573 573 574 574 <!-- Chapter 17 --> 575 <!ENTITY c-ares-version "1.1 4.0">575 <!ENTITY c-ares-version "1.15.0"> 576 576 <!ENTITY curl-version "7.63.0"> 577 577 <!ENTITY geoclue2-version "2.4.12"> … … 689 689 <!ENTITY goffice010-version "0.10.43"> 690 690 <!ENTITY gtk2-version "2.24.32"> 691 <!ENTITY gtk3-version "3.24. 1">691 <!ENTITY gtk3-version "3.24.2"> 692 692 <!ENTITY gtk-engines-version "2.20.2"> 693 693 <!ENTITY gtkmm2-version "2.24.5"> -
x/lib/gtk+3.xml
r8322ee3f rfe80e96 7 7 <!ENTITY gtk3-download-http "&gnome-download-http;/gtk+/&gnome-minor-24;/gtk+->k3-version;.tar.xz"> 8 8 <!ENTITY gtk3-download-ftp "&gnome-download-ftp;/gtk+/&gnome-minor-24;/gtk+->k3-version;.tar.xz"> 9 <!ENTITY gtk3-md5sum " 9dfe16f486573815f242fa400763feb7">10 <!ENTITY gtk3-size " 18MB">11 <!ENTITY gtk3-buildsize " 569 MB (add 9MB for tests)">12 <!ENTITY gtk3-time "2. 8 SBU (using parallelism=4, add 0.5SBU 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)"> 13 13 ]> 14 14 … … 145 145 </para> 146 146 147 <screen><userinput>./configure --prefix=/usr \ 147 <screen><userinput>sed -i 's/dfeault/default/' docs/tools/shooter.c && 148 149 ./configure --prefix=/usr \ 148 150 --sysconfdir=/etc \ 149 151 --enable-broadway-backend \ … … 164 166 To test the results you need a graphical session, then issue 165 167 <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. 168 171 </para> 169 172
Note:
See TracChangeset
for help on using the changeset viewer.