Changeset 2f59d11


Ignore:
Timestamp:
04/20/2018 07:57:07 PM (6 years ago)
Author:
Bruce Dubbs <bdubbs@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, lazarus, lxqt, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, trunk, upgradedb, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
84ef014
Parents:
c434186
Message:

Update to libinput-1.10.5.
Update to colord-1.4.3.
Update to libuv-1.20.1.
Update to mesa-18.0.1.

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

Files:
6 edited

Legend:

Unmodified
Added
Removed
  • general/genlib/libuv.xml

    rc434186 r2f59d11  
    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        "2d67d9e494516cc404cce8b113392726">
     9  <!ENTITY libuv-md5sum        "b80f713e3683aaca7ce0529db44c036f">
    1010  <!ENTITY libuv-size          "1.1 MB">
    1111  <!ENTITY libuv-buildsize     "11 MB (add 10 MB for tests)">
  • general/sysutils/colord.xml

    rc434186 r2f59d11  
    77  <!ENTITY colord-download-http "https://www.freedesktop.org/software/colord/releases/colord-&colord-version;.tar.xz">
    88  <!ENTITY colord-download-ftp  " ">
    9   <!ENTITY colord-md5sum        "eb6bcc5b826e1ad9bfa75c94534826a4">
     9  <!ENTITY colord-md5sum        "f032ecac927e9078c41fff97800441e8">
    1010  <!ENTITY colord-size          "1.8 MB">
    11   <!ENTITY colord-buildsize     "24 MB (with tests)">
     11  <!ENTITY colord-buildsize     "22 MB (with tests)">
    1212  <!ENTITY colord-time          "0.2 SBU (with tests)">
    1313]>
     
    123123        -g colord -s /bin/false colord</userinput></screen>
    124124
     125    <para>First, clean up about 100 warnings:</para>
     126
     127<screen><userinput>mv po/fur.po po/ur.po &amp;&amp;
     128sed -i 's/fur/ur/' po/LINGUAS</userinput></screen>
     129
    125130    <para>
    126131      Install <application>Colord</application> by running the following
     
    131136cd    build &amp;&amp;
    132137
    133 meson --prefix=/usr                   \
    134       --sysconfdir=/etc               \
    135       --localstatedir=/var            \
    136       -Dwith-daemon-user=colord       \
    137       -Denable-vala=true              \
    138       -Denable-systemd=false          \
    139       -Denable-libcolordcompat=true   \
    140       -Denable-argyllcms-sensor=false \
    141       -Denable-bash-completion=false  \
    142       -Denable-docs=false             \
    143       -Denable-man=false ..           &amp;&amp;
     138meson --prefix=/usr            \
     139      --sysconfdir=/etc        \
     140      --localstatedir=/var     \
     141      -Ddaemon_user=colord     \
     142      -Dvapi=true              \
     143      -Dsystemd=false          \
     144      -Dlibcolordcompat=true   \
     145      -Dargyllcms_sensor=false \
     146      -Dbash_completion=false  \
     147      -Ddocs=false             \
     148      -Dman=false ..           &amp;&amp;
    144149ninja</userinput></screen>
    145150
    146151<screen revision="systemd"><userinput>mkdir build &amp;&amp;
    147152cd build &amp;&amp;
    148 meson --prefix=/usr                   \
    149       --sysconfdir=/etc               \
    150       --localstatedir=/var            \
    151       -Dwith-daemon-user=colord       \
    152       -Denable-vala=true              \
    153       -Denable-systemd=true           \
    154       -Denable-libcolordcompat=true   \
    155       -Denable-argyllcms-sensor=false \
    156       -Denable-bash-completion=false  \
    157       -Denable-docs=false             \
    158       -Denable-man=false ..           &amp;&amp;
     153
     154meson --prefix=/usr            \
     155      --sysconfdir=/etc        \
     156      --localstatedir=/var     \
     157      -Ddaemon_user=colord     \
     158      -Dvapi=true              \
     159      -Dsystemd=true           \
     160      -Dlibcolordcompat=true   \
     161      -Dargyllcms_sensor=false \
     162      -Dbash_completion=false  \
     163      -Ddocs=false             \
     164      -Dman=false ..           &amp;&amp;
    159165ninja</userinput></screen>
    160166
     
    178184
    179185    <para>
    180       <parameter>-Dwith-daemon-user=colord</parameter>: This switch is used
     186      <parameter>-Ddaemon_user=colord</parameter>: This switch is used
    181187      so the colord daemon will run as an unprivileged user instead of the
    182188      <systemitem class="username">root</systemitem> user.
     
    184190
    185191    <para>
    186       <parameter>-Denable-vala=true</parameter>: This switch enables building
     192      <parameter>-Dvapi=true</parameter>: This switch enables building
    187193      the <application>Vala</application> bindings. Remove if you don't have
    188194      <xref linkend="vala"/> installed.
     
    190196
    191197    <para revision="sysv">
    192       <parameter>-Denable-systemd=false</parameter>: This switch disables
     198      <parameter>-Dsystemd=false</parameter>: This switch disables
    193199      support for <application>systemd</application> login in Colord
    194200      applications.
     
    196202
    197203    <para revision="systemd">
    198       <parameter>-Denable-systemd=true</parameter>: This switch enables
     204      <parameter>-Dsystemd=true</parameter>: This switch enables
    199205      installation of the <application>systemd</application> service.
    200206    </para>
    201207
    202208    <para>
    203       <parameter>-Denable-libcolordcompat=true</parameter>: This switch enables
     209      <parameter>-Dlibcolordcompat=true</parameter>: This switch enables
    204210      building a compatibility library for older packages that use
    205211      <application>Colord</application>.
     
    207213
    208214    <para>
    209       <parameter>-Denable-argyllcms-sensor=false</parameter>: This switch
     215      <parameter>-Dargyllcms_sensor=false</parameter>: This switch
    210216      disables the ArgLLCMS sensor driver. Omit if you have
    211217      <ulink url="http://www.argyllcms.com/">ArgyllCMS</ulink> installed
     
    214220
    215221    <para>
    216       <parameter>-Denable-bash-completion=false</parameter>: This switch
     222      <parameter>-Dbash_completion=false</parameter>: This switch
    217223      disables Bash Completion support for Colord applications.
    218224    </para>
    219225
    220226    <para>
    221       <parameter>-Denable-docs=false</parameter>: This switch disables building
     227      <parameter>-Ddocs=false</parameter>: This switch disables building
    222228      of documentation. Omit if you have <xref linkend="gtk-doc"/> avaialable.
    223229    </para>
    224230
    225231    <para>
    226       <parameter>-Denable-man=false</parameter>: This switch disables building
     232      <parameter>-Dman=false</parameter>: This switch disables building
    227233      of man pages. Omit if you have <xref linkend="docbook-utils"/>
    228234      avaialable.
  • introduction/welcome/changelog.xml

    rc434186 r2f59d11  
    4646      <itemizedlist>
    4747        <listitem>
     48          <para>[bdubbs] - Update to libinput-1.10.5. Fixes
     49          <ulink url="&blfs-ticket-root;10682">#10682</ulink>.</para>
     50        </listitem>
     51        <listitem>
     52          <para>[bdubbs] - Update to colord-1.4.3. Fixes
     53          <ulink url="&blfs-ticket-root;10681">#10681</ulink>.</para>
     54        </listitem>
     55        <listitem>
     56          <para>[bdubbs] - Update to libuv-1.20.1. Fixes
     57          <ulink url="&blfs-ticket-root;10680">#10680</ulink>.</para>
     58        </listitem>
     59        <listitem>
     60          <para>[bdubbs] - Update to mesa-18.0.1. Fixes
     61          <ulink url="&blfs-ticket-root;10590">#10590</ulink>.</para>
     62        </listitem>
     63        <listitem>
    4864          <para>[pierre] - gptfdisk-1.0.3 has usable tests. Add them.</para>
    4965        </listitem>
  • packages.ent

    rc434186 r2f59d11  
    162162<!ENTITY libusb-version               "1.0.22">
    163163<!ENTITY libusb-compat-version        "0.1.5">
    164 <!ENTITY libuv-version                "1.20.0">
     164<!ENTITY libuv-version                "1.20.1">
    165165<!ENTITY libxkbcommon-version         "0.8.0">
    166166<!-- the libxml2-version is also used for the python2 module,
     
    264264<!ENTITY autofs-version               "5.1.4">
    265265<!ENTITY bluez-version                "5.49">
    266 <!ENTITY colord-version               "1.4.2">
     266<!ENTITY colord-version               "1.4.3">
    267267<!ENTITY cpio-version                 "2.12">
    268268<!ENTITY cups-pk-helper-version       "0.2.6">
     
    536536<!ENTITY xcursor-themes-version       "1.0.5">
    537537<!ENTITY xkeyboard-config-version     "2.23.1">
    538 <!ENTITY mesa-major-minor             "17.3">
    539 <!ENTITY mesa-version                 "&mesa-major-minor;.7">
     538<!ENTITY mesa-major-minor             "18.0">
     539<!ENTITY mesa-version                 "&mesa-major-minor;.1">
    540540<!ENTITY xcb-util-version             "0.4.0">
    541541<!ENTITY xcb-util-image-version       "0.4.0">
  • x/installing/libinput.xml

    rc434186 r2f59d11  
    55  %general-entities;
    66
    7   <!ENTITY libinput-version "1.10.4">
     7  <!ENTITY libinput-version "1.10.5">
    88
    99  <!ENTITY libinput-download-http "https://www.freedesktop.org/software/libinput/libinput-&libinput-version;.tar.xz">
    1010  <!ENTITY libinput-download-ftp  " ">
    11   <!ENTITY libinput-md5sum        "4f48ea484b3b4a099894d49e59ba8ce7">
    12   <!ENTITY libinput-size          "484 KB">
     11  <!ENTITY libinput-md5sum        "3d37aa6292b7e34847811a47f3ddc860">
     12  <!ENTITY libinput-size          "488 KB">
    1313  <!ENTITY libinput-buildsize     "8.2 MB">
    1414  <!ENTITY libinput-time          "less than 0.1 SBU">
  • x/installing/mesa.xml

    rc434186 r2f59d11  
    77  <!ENTITY mesa-download-http "https://mesa.freedesktop.org/archive/mesa-&mesa-version;.tar.xz">
    88  <!ENTITY mesa-download-ftp  "ftp://ftp.freedesktop.org/pub/mesa/mesa-&mesa-version;.tar.xz">
    9   <!ENTITY mesa-md5sum        "769137f2538562c300c4b76bcb097377">
     9  <!ENTITY mesa-md5sum        "a240b17769ad5ff918507848590f9397">
    1010  <!ENTITY mesa-size          "10 MB">
    11   <!ENTITY mesa-buildsize     "369 MB (with demos and docs, add 69 MB for tests)">
    12   <!ENTITY mesa-time          "4.1 SBU (with parallelism=4, demos, and docs; add 0.9 SBU for tests)">
     11  <!ENTITY mesa-buildsize     "382 MB (with demos and docs, add 72 MB for tests)">
     12  <!ENTITY mesa-time          "4.3 SBU (with parallelism=4, demos, and docs; add 1.0 SBU for tests)">
    1313]>
    1414
     
    311311<!-- Those libraries are associated with the "swr" gallium driver,
    312312     which has been removed at r17757. Keeping as a comment in case we
    313      reintroduce that driver.
     313     reintroduce that driver. AVX libs are restored in version 18.0.1 -->
    314314          libswrAVX.so,
    315           libswrAVX2.so,-->
     315          libswrAVX2.so,
    316316          libwayland-egl.so (if built with <application>Wayland</application>)
    317317          libxatracker.so,
Note: See TracChangeset for help on using the changeset viewer.