Changeset 8857a6c


Ignore:
Timestamp:
09/28/2018 03:09:55 AM (6 years ago)
Author:
Ken Moffat <ken@…>
Branches:
perl-modules
Children:
c93f431
Parents:
67a158e
Message:

perl modules branch: Merge trunk -r 20534:20544 - that was unpleasant, for no obvious reason.

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/branches/perl-modules@20545 af4574ff-66df-0310-9fd7-8a98e5e911e0

Files:
6 edited

Legend:

Unmodified
Added
Removed
  • general.ent

    r67a158e r8857a6c  
    11<!-- $LastChangedBy$ $Date$ -->
    22
    3 <!ENTITY day          "26">                   <!-- Always 2 digits -->
     3<!ENTITY day          "27">                   <!-- Always 2 digits -->
    44<!ENTITY month        "09">                   <!-- Always 2 digits -->
    55<!ENTITY year         "2018">
     
    77<!ENTITY copyholder   "The BLFS Development Team">
    88<!ENTITY version      "&year;-&month;-&day;">
    9 <!ENTITY releasedate  "September 26th, &year;">
     9<!ENTITY releasedate  "September 27th, &year;">
    1010<!ENTITY pubdate      "&year;-&month;-&day;"> <!-- metadata req. by TLDP -->
    1111<!ENTITY blfs-version "svn">                  <!-- svn|[release #] -->
  • general/prog/perl-modules.xml

    r67a158e r8857a6c  
    5555  <!ENTITY Error-md5sum "0dcd94640f617df02b6d6c1e4e92018c">
    5656
    57   <!ENTITY File-BaseDir-download-http "&perl_authors;/id/K/KI/KIMRYAN/File-BaseDir-&File-BaseDir-version;.tar.gz">
    58   <!ENTITY File-BaseDir-md5sum "667a7faa144c0c9a22b4421ed395fe89">
     57<!-- <!ENTITY File-BaseDir-download-http "&perl_authors;/id/K/KI/KIMRYAN/File-BaseDir-&File-BaseDir-version;.tar.gz">
     58  <!ENTITY File-BaseDir-md5sum "667a7faa144c0c9a22b4421ed395fe89"> -->
    5959
    6060  <!ENTITY File-Slurper-download-http "&perl_authors;/id/L/LE/LEONT/File-Slurper-&File-Slurper-version;.tar.gz">
     
    10951095
    10961096   <!-- File::BaseDir -->
    1097     <bridgehead renderas="sect3" id="perl-file-basedir"
     1097<!--<bridgehead renderas="sect3" id="perl-file-basedir"
    10981098    xreflabel="File::BaseDir-&File-BaseDir-version;">
    10991099    File::BaseDir-&File-BaseDir-version;</bridgehead>
     
    11081108    One set of tests (03_userdirs.t) may fail if
    11091109    <xref linkend="xdg-user-dirs"/> is installed and
    1110     <envar>XDG_CONFIG_HOME</envar> is set.</para>
     1110    <envar>XDG_CONFIG_HOME</envar> is set.</para>-->
    11111111
    11121112    <!-- File-BaseDir -->
    1113     &lfs83_checked;
     1113<!--&lfs83_checked;
    11141114
    11151115    <itemizedlist>
     
    11361136        </itemizedlist>
    11371137      </listitem>
    1138     </itemizedlist>
     1138    </itemizedlist>-->
    11391139
    11401140    <!-- File::Slurper -->
     
    24422442    <para>
    24432443      Unicode::Collate provides a Unicode collation algorithm.
    2444       This module uses the 'unsafe' variant of the standard
    2445       <xref linkend="perl-standard-install"/>.
     2444      This module uses the standard <xref linkend="perl-standard-install"/>.
    24462445    </para>
    24472446
  • general/prog/pygobject3.xml

    r67a158e r8857a6c  
    66
    77  <!ENTITY pygobject3-download-http
    8            "&gnome-download-http;/pygobject/&gnome-minor-28;/pygobject-&pygobject3-version;.tar.xz">
     8           "&gnome-download-http;/pygobject/&gnome-minor-30;/pygobject-&pygobject3-version;.tar.xz">
    99  <!ENTITY pygobject3-download-ftp
    10            "&gnome-download-ftp;/pygobject/&gnome-minor-28;/pygobject-&pygobject3-version;.tar.xz">
    11   <!ENTITY pygobject3-md5sum        "3bac63c86bb963aa401f97859464aa90">
    12   <!ENTITY pygobject3-size          "984 KB">
    13   <!ENTITY pygobject3-buildsize     "23 MB (both modules, with tests)">
     10           "&gnome-download-ftp;/pygobject/&gnome-minor-30;/pygobject-&pygobject3-version;.tar.xz">
     11  <!ENTITY pygobject3-md5sum        "77ba5f41a00d5c0cc22962a475f8de67">
     12  <!ENTITY pygobject3-size          "540 KB">
     13  <!ENTITY pygobject3-buildsize     "26 MB (both modules, with tests)">
    1414  <!ENTITY pygobject3-time          "0.3 SBU (both modules, with tests)">
    1515]>
     
    109109<screen><userinput>mkdir python2 &amp;&amp;
    110110pushd python2 &amp;&amp;
    111 ../configure --prefix=/usr --with-python=/usr/bin/python &amp;&amp;
    112 make &amp;&amp;
     111meson --prefix=/usr -Dpython=python2 .. &amp;&amp;
     112ninja &amp;&amp;
    113113popd</userinput></screen>
    114114
    115115      <para>
    116         To test the results, issue: <command>make -C python2 check</command>.
     116        To test the results, issue: <command>ninja -C python2 test</command>.
    117117        An already active graphical session with bus address is necessary to
    118118        run the tests.
     
    127127<screen><userinput>mkdir python3 &amp;&amp;
    128128pushd python3 &amp;&amp;
    129 ../configure --prefix=/usr --with-python=/usr/bin/python3 &amp;&amp;
    130 make &amp;&amp;
     129meson --prefix=/usr -Dpython=python3 &amp;&amp;
     130ninja &amp;&amp;
    131131popd</userinput></screen>
    132132
    133133      <para>
    134         To test the results, issue: <command>make -C python3 check</command>.
     134        To test the results, issue: <command>ninja -C python3 test</command>.
    135135        An already active graphical session with bus address is necessary to
    136136        run the tests.
     
    143143      </para>
    144144
    145 <screen role="root"><userinput>make -C python2 install</userinput></screen>
     145<screen role="root"><userinput>ninja -C python2 install</userinput></screen>
    146146
    147147      <para>
     
    151151      </para>
    152152
    153 <screen role="root"><userinput>make -C python3 install</userinput></screen>
     153<screen role="root"><userinput>ninja -C python3 install</userinput></screen>
    154154
    155155    </sect3>
  • introduction/welcome/changelog.xml

    r67a158e r8857a6c  
    4242    </listitem>
    4343-->
     44
     45    <listitem>
     46      <para>September 29th, 2018</para>
     47      <itemizedlist>
     48        <listitem>
     49          <para>[renodr] - Update to pygobject-3.30.1. Partially fixes
     50          <ulink url="&blfs-ticket-root;11090">#11090</ulink>.</para>
     51        </listitem>
     52        <listitem>
     53          <para>[renodr] - Update to samba-4.9.1. Fixes
     54          <ulink url="&blfs-ticket-root;11144">#11144</ulink>.</para>
     55        </listitem>
     56      </itemizedlist>
     57    </listitem>
     58
    4459    <listitem>
    4560      <para>September 26th, 2018</para>
  • networking/netprogs/samba.xml

    r67a158e r8857a6c  
    77  <!ENTITY samba-download-http "https://www.samba.org/ftp/samba/stable/samba-&samba-version;.tar.gz">
    88  <!ENTITY samba-download-ftp  " ">
    9   <!ENTITY samba-md5sum        "b3dc5d6fbe35dcfdc490a608704d572e">
     9  <!ENTITY samba-md5sum        "22f9201d1a7033ada4302b4e82d36516">
    1010  <!ENTITY samba-size          "17 MB">
    11   <!ENTITY samba-buildsize     "588 MB (add 373 MB for quicktest)">
    12   <!ENTITY samba-time          "4.5 SBU (add 4.1 SBU for quicktest)">
     11  <!ENTITY samba-buildsize     "596 MB (add 640 MB for quicktest)">
     12  <!ENTITY samba-time          "4.6 SBU (add 4.5 SBU for quicktest)">
    1313]>
    1414
     
    6565    <bridgehead renderas="sect4">Required</bridgehead>
    6666    <para role="required">
     67      <xref linkend="jansson"/>,
    6768      <xref linkend="libtirpc"/>,
     69      <xref linkend="lmdb"/>,
    6870      <xref linkend="python2"/>, and
    6971      <xref linkend="rpcsvc-proto"/>
     
    568570          mvxattr, ndrdump, net, nmbd, nmblookup, ntlm_auth, oLschema2ldif,
    569571          pdbedit, pidl, profiles, regdiff, regpatch, regshell, regtree,
    570           rpcclient, samba, samba_dnsupdate, samba_kcc, samba-regedit,
     572          rpcclient, samba, samba_dnsupdate, samba_kcc, samba-gpupdate, samba-regedit,
    571573          samba_spnupdate, samba-tool, samba_upgradedns, sharesec,
    572574          smbcacls, smbclient, smbcontrol, smbcquotas, smbd, smbget,
     
    940942      </varlistentry>
    941943
     944      <varlistentry id="samba-gpupdate">
     945        <term><command>samba-gpupdate</command></term>
     946        <listitem>
     947          <para>allows you to edit Microsoft Group Policy Objects (GPOs).</para>
     948          <indexterm zone="samba samba-gpupdate">
     949            <primary sortas="b-samba-gpupdate">samba-gpupdate</primary>
     950          </indexterm>
     951        </listitem>
     952      </varlistentry>
     953
    942954      <varlistentry id="samba-regedit">
    943955        <term><command>samba-regedit</command></term>
  • packages.ent

    r67a158e r8857a6c  
    377377<!ENTITY Encode-HanExtra-version      "0.23">
    378378<!ENTITY Error-version                "0.17026">
    379 <!ENTITY File-BaseDir-version         "0.08">
     379<!--<!ENTITY File-BaseDir-version         "0.08">-->
    380380<!ENTITY File-Slurper-version         "0.012">
    381381<!ENTITY File-Which-version           "1.22">
     
    455455<!ENTITY pycrypto-version             "2.6.1">
    456456<!ENTITY pygobject2-version           "2.28.7">
    457 <!ENTITY pygobject3-version           "3.28.3">
     457<!ENTITY pygobject3-version           "3.30.1">
    458458<!ENTITY pygtk-version                "2.24.0">
    459459<!ENTITY pyxdg-version                "0.25">
     
    478478<!ENTITY rpcbind-version              "1.2.5">
    479479<!ENTITY rsync-version                "3.1.3">
    480 <!ENTITY samba-version                "4.8.5">
     480<!ENTITY samba-version                "4.9.1">
    481481<!ENTITY wget-version                 "1.19.5">
    482482<!ENTITY wireless-tools-version       "29">
Note: See TracChangeset for help on using the changeset viewer.