Changeset 1004f84


Ignore:
Timestamp:
08/10/2014 06:18:14 PM (10 years ago)
Author:
Fernando de Oliveira <fernando@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 7.10, 7.6, 7.7, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, krejzi/svn, lazarus, lxqt, nosym, 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:
a32ce16
Parents:
aa7c9cd
Message:

Update to stunnel-5.03.
Wrong syntax in iptables masquerading example.
libassuan-2.1.1: Problem building documentation.
Update to libtirpc-0.2.5.

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

Files:
7 edited

Legend:

Unmodified
Added
Removed
  • general.ent

    raa7c9cd r1004f84  
    11<!-- $LastChangedBy$ $Date$ -->
    22
    3 <!ENTITY day          "09">                   <!-- Always 2 digits -->
     3<!ENTITY day          "10">                   <!-- Always 2 digits -->
    44<!ENTITY month        "08">                   <!-- Always 2 digits -->
    55<!ENTITY year         "2014">
     
    77<!ENTITY copyholder   "The BLFS Development Team">
    88<!ENTITY version      "&year;-&month;-&day;">
    9 <!ENTITY releasedate  "August 9th, &year;">
     9<!ENTITY releasedate  "August 10th, &year;">
    1010<!ENTITY pubdate      "&year;-&month;-&day;"> <!-- metadata req. by TLDP -->
    1111<!ENTITY blfs-version "svn">                  <!-- svn|[release #] -->
  • general/genlib/libassuan.xml

    raa7c9cd r1004f84  
    110110    <para>
    111111      If you wish to build documentation, you must have
    112       <xref linkend="texlive"/> installed, then issue
    113       the following command:
     112      <xref linkend="texlive"/> installed. Due to an apparently fake error,
     113      build the documentation in two steps, issuing the following commands:
    114114    </para>
    115115
    116 <screen><userinput>make -C doc pdf ps</userinput></screen>
     116<screen><userinput>make -C doc pdf || true &amp;&amp;
     117make -C doc ps</userinput></screen>
    117118
    118119    <para>
  • introduction/welcome/changelog.xml

    raa7c9cd r1004f84  
    4444
    4545-->
     46
     47    <listitem>
     48      <para>August 10th, 2014</para>
     49      <itemizedlist>
     50        <listitem>
     51          <para>[fernando] - Update to libtirpc-0.2.5. Fixes
     52          <ulink url="&blfs-ticket-root;5348">#5348</ulink>.</para>
     53        </listitem>
     54        <listitem>
     55          <para>[fernando] - libassuan-2.1.1: Problem building documentation.
     56          Fixes <ulink url="&blfs-ticket-root;5346">#5346</ulink>.</para>
     57        </listitem>
     58        <listitem>
     59          <para>[fernando] - Wrong syntax in iptables masquerading example.
     60          Fixes <ulink url="&blfs-ticket-root;5345">#5345</ulink>.</para>
     61        </listitem>
     62        <listitem>
     63          <para>[fernando] - Update to stunnel-5.03. Fixes
     64          <ulink url="&blfs-ticket-root;5343">#5343</ulink>.</para>
     65        </listitem>
     66      </itemizedlist>
     67    </listitem>
    4668
    4769    <listitem>
  • networking/netlibs/libtirpc.xml

    raa7c9cd r1004f84  
    77  <!ENTITY libtirpc-download-http "&sourceforge-repo;/project/libtirpc/libtirpc/&libtirpc-version;/libtirpc-&libtirpc-version;.tar.bz2">
    88  <!ENTITY libtirpc-download-ftp  " ">
    9   <!ENTITY libtirpc-md5sum        "847995e8d002cbf1387bda05947be086">
    10   <!ENTITY libtirpc-size          "448 KB">
    11   <!ENTITY libtirpc-buildsize     "8.0 MB">
    12   <!ENTITY libtirpc-time          "0.2 SBU">
     9  <!ENTITY libtirpc-md5sum        "8cd41a5ef5a9b50d0fb6abb98af15368">
     10  <!ENTITY libtirpc-size          "452 KB">
     11  <!ENTITY libtirpc-buildsize     "6.4 MB">
     12  <!ENTITY libtirpc-time          "less than 0.1 SBU">
    1313]>
    1414
  • packages.ent

    raa7c9cd r1004f84  
    3232<!ENTITY shadow-version               "4.2.1">
    3333<!ENTITY ssh-askpass-version          "&openssh-version;">
    34 <!ENTITY stunnel-version              "5.02">
     34<!ENTITY stunnel-version              "5.03">
    3535<!ENTITY sudo-version                 "1.8.10p3">
    3636<!ENTITY tripwire-version             "2.4.2.2">
     
    347347<!ENTITY libproxy-version             "0.4.7">
    348348<!ENTITY libsoup-version              "2.46.0">
    349 <!ENTITY libtirpc-version             "0.2.4">
     349<!ENTITY libtirpc-version             "0.2.5">
    350350<!ENTITY neon-version                 "0.30.0">
    351351<!ENTITY serf-version                 "1.3.6">
  • postlfs/security/firewalling.xml

    raa7c9cd r1004f84  
    358358# Allow forwarding if the initiated on the intranet
    359359iptables -A FORWARD -m conntrack --ctstate ESTABLISHED,RELATED -j ACCEPT
    360 iptables -A FORWARD  -i ! ppp+ -m conntrack --ctstate NEW      -j ACCEPT
     360iptables -A FORWARD ! -i ppp+ -m conntrack --ctstate NEW       -j ACCEPT
    361361
    362362# Do masquerading
  • postlfs/security/stunnel.xml

    raa7c9cd r1004f84  
    77  <!ENTITY stunnel-download-http "http://mirrors.zerg.biz/stunnel/stunnel-&stunnel-version;.tar.gz">
    88  <!ENTITY stunnel-download-ftp  "ftp://ftp.stunnel.org/stunnel/stunnel-&stunnel-version;.tar.gz">
    9   <!ENTITY stunnel-md5sum        "bb48b1c18cfc0a42708ef996b1a26926">
     9  <!ENTITY stunnel-md5sum        "ee43ef72038e0437400f712837cefee4">
    1010  <!ENTITY stunnel-size          "580 KB">
    1111  <!ENTITY stunnel-buildsize     "5.7 MB">
Note: See TracChangeset for help on using the changeset viewer.