Changeset a8ea305
- Timestamp:
- 03/11/2019 06:37:50 PM (4 years ago)
- Branches:
- 10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 9.0, 9.1, ken/inkscape-core-mods, lazarus, plabs/python-mods, qt5new, trunk, upgradedb, xry111/intltool, xry111/soup3, xry111/test-20220226
- Children:
- e9ee3a6
- Parents:
- b7e550f2
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
general.ent
rb7e550f2 ra8ea305 1 1 <!-- $LastChangedBy$ $Date$ --> 2 2 3 <!ENTITY day "1 0"> <!-- Always 2 digits -->3 <!ENTITY day "11"> <!-- Always 2 digits --> 4 4 <!ENTITY month "03"> <!-- Always 2 digits --> 5 5 <!ENTITY year "2019"> … … 7 7 <!ENTITY copyholder "The BLFS Development Team"> 8 8 <!ENTITY version "&year;-&month;-&day;"> 9 <!ENTITY releasedate "March 1 0th, &year;">9 <!ENTITY releasedate "March 11th, &year;"> 10 10 <!ENTITY pubdate "&year;-&month;-&day;"> <!-- metadata req. by TLDP --> 11 11 <!ENTITY blfs-version "svn"> <!-- svn|[release #] --> -
general/genlib/gobject-introspection.xml
rb7e550f2 ra8ea305 6 6 7 7 <!ENTITY gobject-introspection-download-http 8 "&gnome-download-http;/gobject-introspection/1. 58/gobject-introspection-&gobject-introspection-version;.tar.xz">8 "&gnome-download-http;/gobject-introspection/1.60/gobject-introspection-&gobject-introspection-version;.tar.xz"> 9 9 <!ENTITY gobject-introspection-download-ftp 10 "&gnome-download-ftp;/gobject-introspection/1. 58/gobject-introspection-&gobject-introspection-version;.tar.xz">11 <!ENTITY gobject-introspection-md5sum " 182432c1f33886be8f4da073218b597d">12 <!ENTITY gobject-introspection-size "1. 3MB">13 <!ENTITY gobject-introspection-buildsize " 38 MB (add 7 MB fortests)">14 <!ENTITY gobject-introspection-time "0. 3 SBU (add 0.3 SBU fortests)">10 "&gnome-download-ftp;/gobject-introspection/1.60/gobject-introspection-&gobject-introspection-version;.tar.xz"> 11 <!ENTITY gobject-introspection-md5sum "5f75baadfc9baffaeca203c280b9d592"> 12 <!ENTITY gobject-introspection-size "1.2 MB"> 13 <!ENTITY gobject-introspection-buildsize "42 MB (with tests)"> 14 <!ENTITY gobject-introspection-time "0.2 SBU (Using parallelism=4; with tests)"> 15 15 ]> 16 16 … … 79 79 </para> 80 80 81 <bridgehead renderas="sect4">Recommended</bridgehead>82 <para role="recommended">83 <xref linkend="which"/>84 <!-- If - -with-python is used, configure runs "which $PYTHON", where PYTHON85 is set to the argument of the switch. Somewhat silly because the presence86 of which is not tested... -->87 </para>88 89 81 <bridgehead renderas="sect4">Optional</bridgehead> 90 82 <para role="optional"> 91 83 <xref linkend="cairo"/> (required for the tests), 92 <xref linkend="gjs"/> (to satisfy one of the tests),84 <xref linkend="gjs"/> (to satisfy one test), 93 85 <xref linkend="gtk-doc"/>, 94 <xref linkend="Mako"/>, 95 <xref linkend="python2"/>, and 96 <ulink url="https://pypi.org/project/Markdown/">Markdown</ulink> 86 <xref linkend="Mako"/>, and 87 <ulink url="https://pypi.org/project/Markdown/">Markdown</ulink> (to satisfy one test) 97 88 <!-- There was talk of this being required in the release notes. Can someone 98 who doesn't have this installed verify? --> 89 who doesn't have this installed verify? 90 It is only needed for one test. bdubbs March 3, 2019 91 --> 99 92 </para> 100 93 … … 112 105 </para> 113 106 114 <screen><userinput>./configure --prefix=/usr \ 115 --disable-static \ 116 --with-python=/usr/bin/python3 && 117 make</userinput></screen> 118 119 <para> 120 To test the results, issue: <command>make check</command>. 107 <screen><userinput>mkdir build && 108 cd buils && 109 110 meson --prefix=/usr .. && 111 ninja</userinput></screen> 112 113 <para> 114 To test the results, issue: <command>ninja test -k0</command>. 115 One test fails if the optional Markdown module is not installed. 121 116 <!--One test, Regress-1.0.gir, is known to fail with glibc-2.28.--> 122 117 <!-- This worked fine in 2.27, but is broken again in 2.28. --> … … 128 123 </para> 129 124 130 <screen role="root"><userinput> makeinstall</userinput></screen>125 <screen role="root"><userinput>ninja install</userinput></screen> 131 126 132 127 </sect2> … … 135 130 <title>Command Explanations</title> 136 131 137 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" 138 href="../../xincludes/static-libraries.xml"/> 139 140 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" 141 href="../../xincludes/gtk-doc-rebuild.xml"/> 142 143 <para><parameter>--with-python=/usr/bin/python3</parameter>: ensure the 144 Python-3.x interpreter is used instead of Python-2.x if installed.</para> 132 <para><parameter>-Dgtk_doc=true</parameter>: Build and install 133 the documentation.</para> 134 135 <para><parameter>-Dcairo=true</parameter>: Use cairo for tests.</para> 136 137 <para><parameter>-Ddoctool=true</parameter>: Install g-ir-doc-tool 138 and run related tests.</para> 145 139 146 140 </sect2> … … 162 156 <seg> 163 157 libgirepository-1.0.so and 164 /usr/lib/gobject-introspection/giscanner/_giscanner.so158 _giscanner.cpython-37m-x86_64-linux-gnu.so 165 159 </seg> 166 160 <seg> -
general/prog/pygobject3.xml
rb7e550f2 ra8ea305 6 6 7 7 <!ENTITY pygobject3-download-http 8 "&gnome-download-http;/pygobject/&gnome-minor-3 0;/pygobject-&pygobject3-version;.tar.xz">8 "&gnome-download-http;/pygobject/&gnome-minor-32;/pygobject-&pygobject3-version;.tar.xz"> 9 9 <!ENTITY pygobject3-download-ftp 10 "&gnome-download-ftp;/pygobject/&gnome-minor-3 0;/pygobject-&pygobject3-version;.tar.xz">11 <!ENTITY pygobject3-md5sum " d42f8ec30faa76a25f7d0afc88b4d822">12 <!ENTITY pygobject3-size "5 33KB">13 <!ENTITY pygobject3-buildsize "1 4MB">10 "&gnome-download-ftp;/pygobject/&gnome-minor-32;/pygobject-&pygobject3-version;.tar.xz"> 11 <!ENTITY pygobject3-md5sum "6e39bca1d19a27cde4435061dd59578a"> 12 <!ENTITY pygobject3-size "540 KB"> 13 <!ENTITY pygobject3-buildsize "19 MB"> 14 14 <!ENTITY pygobject3-time "0.1 SBU"> 15 15 ]> -
introduction/welcome/changelog.xml
rb7e550f2 ra8ea305 42 42 </listitem> 43 43 --> 44 <listitem> 45 <para>March 11th, 2019</para> 46 <itemizedlist> 47 <listitem> 48 <para>[bdubbs] - Update to libXdamage-1.1.5 (Xorg Library). Fixes 49 <ulink url="&blfs-ticket-root;11790">#11790</ulink>.</para> 50 </listitem> 51 <listitem> 52 <para>[bdubbs] - Update to libXcursor-1.2.0 (Xorg Library). Fixes 53 <ulink url="&blfs-ticket-root;11789">#11789</ulink>.</para> 54 </listitem> 55 <listitem> 56 <para>[bdubbs] - Update to libXcomposite-0.4.5 (Xorg Library). Fixes 57 <ulink url="&blfs-ticket-root;11788">#11788</ulink>.</para> 58 </listitem> 59 <listitem> 60 <para>[bdubbs] - Update to libFS-1.0.8 (Xorg Library). Fixes 61 <ulink url="&blfs-ticket-root;11787">#11787</ulink>.</para> 62 </listitem> 63 <listitem> 64 <para>[bdubbs] - Update to gobject-introspection-1.60.0. Fixes 65 <ulink url="&blfs-ticket-root;11786">#11786</ulink>.</para> 66 </listitem> 67 <listitem> 68 <para>[bdubbs] - Update to pygobject-3.32.0. Fixes 69 <ulink url="&blfs-ticket-root;11785">#11785</ulink>.</para> 70 </listitem> 71 </itemizedlist> 72 </listitem> 73 44 74 <listitem> 45 75 <para>March 10th, 2019</para> -
packages.ent
rb7e550f2 ra8ea305 106 106 <!ENTITY gmime-version "2.6.23"> 107 107 <!ENTITY gmime3-version "3.2.3"> 108 <!ENTITY gobject-introspection-version "1. 58.3">108 <!ENTITY gobject-introspection-version "1.60.0"> 109 109 <!ENTITY grantlee-version "5.1.0"> 110 110 <!ENTITY gsl-version "2.5"> … … 532 532 <!ENTITY pycrypto-version "2.6.1"> 533 533 <!ENTITY pygobject2-version "2.28.7"> 534 <!ENTITY pygobject3-version "3.3 0.4">534 <!ENTITY pygobject3-version "3.32.0"> 535 535 <!ENTITY pygtk-version "2.24.0"> 536 536 <!ENTITY pyxdg-version "0.25"> -
x/installing/x7lib.xml
rb7e550f2 ra8ea305 20 20 <!ENTITY libXext-md5sum "52df7c4c1f0badd9f82ab124fb32eb97"> 21 21 22 <!ENTITY libFS-version "1.0. 7">23 <!ENTITY libFS-md5sum " d79d9fe2aa55eb0f69b1a4351e1368f7">22 <!ENTITY libFS-version "1.0.8"> 23 <!ENTITY libFS-md5sum "4e1196275aa743d6ebd3d3d5ec1dff9c"> 24 24 25 25 <!ENTITY libICE-version "1.0.9"> … … 47 47 <!ENTITY libXfixes-md5sum "07e01e046a0215574f36a3aacb148be0"> 48 48 49 <!ENTITY libXcomposite-version "0.4. 4">50 <!ENTITY libXcomposite-md5sum " f7a218dcbf6f0848599c6c36fc65c51a">49 <!ENTITY libXcomposite-version "0.4.5"> 50 <!ENTITY libXcomposite-md5sum "3fa0841ea89024719b20cd702a9b54e0"> 51 51 52 52 <!ENTITY libXrender-version "0.9.10"> 53 53 <!ENTITY libXrender-md5sum "802179a76bded0b658f4e9ec5e1830a4"> 54 54 55 <!ENTITY libXcursor-version "1. 1.15">56 <!ENTITY libXcursor-md5sum " 58fe3514e1e7135cf364101e714d1a14">57 58 <!ENTITY libXdamage-version "1.1. 4">59 <!ENTITY libXdamage-md5sum " 0cf292de2a9fa2e9a939aefde68fd34f">55 <!ENTITY libXcursor-version "1.2.0"> 56 <!ENTITY libXcursor-md5sum "9b9be0e289130fb820aedf67705fc549"> 57 58 <!ENTITY libXdamage-version "1.1.5"> 59 <!ENTITY libXdamage-md5sum "e3f554267a7a04b042dc1f6352bd6d99"> 60 60 61 61 <!ENTITY libfontenc-version "1.1.4">
Note:
See TracChangeset
for help on using the changeset viewer.