Changeset 55e8f78


Ignore:
Timestamp:
07/21/2016 02:39:01 AM (8 years ago)
Author:
Douglas R. Reno <renodr@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 7.10, 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, 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:
b417f2a
Parents:
f547d35
Message:

Update to highlight-3.30
Add a sed to prevent useless warnings in libxml2
Add a patch to fix problems with Valgrind's test suite
Remove obsolete note about cURL test suite.

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

Files:
7 edited

Legend:

Unmodified
Added
Removed
  • general/genlib/libxml2.xml

    rf547d35 r55e8f78  
    126126    </para>
    127127
    128 <screen><userinput>./configure --prefix=/usr --disable-static --with-history &amp;&amp;
     128<screen><userinput>sed -i "/seems to be moved/s/^/#/" ltmain.sh &amp;&amp;
     129./configure --prefix=/usr --disable-static --with-history &amp;&amp;
    129130make</userinput></screen>
    130131
     
    150151  <sect2 role="commands">
    151152    <title>Command Explanations</title>
     153
     154    <para>
     155      <command>sed -i ...</command>: This sed prevents many useless warnings
     156      from being issued from libtool.
     157    </para>
    152158
    153159    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • general/genutils/highlight.xml

    rf547d35 r55e8f78  
    77  <!ENTITY highlight-download-http "http://www.andre-simon.de/zip/highlight-&highlight-version;.tar.bz2">
    88  <!ENTITY highlight-download-ftp  " ">
    9   <!ENTITY highlight-md5sum        "05f75d4fb18a401181e658dcaf8ff562">
    10   <!ENTITY highlight-size          "608 KB">
    11   <!ENTITY highlight-buildsize     "17 MB (without GUI or API docs)">
    12   <!ENTITY highlight-time          "0.7 SBU (without GUI or API docs)">
     9  <!ENTITY highlight-md5sum        "3636b0db7ba0285bac4f27b34a38bf16">
     10  <!ENTITY highlight-size          "620 KB">
     11  <!ENTITY highlight-buildsize     "15 MB (without API docs)">
     12  <!ENTITY highlight-time          "0.6 SBU (without API docs)">
    1313]>
    1414
     
    152152      <seglistitem>
    153153        <seg>
    154           highlight and highlight-gui
     154          highlight
    155155        </seg>
    156156        <seg>
     
    182182      </varlistentry>
    183183
     184<!--
    184185      <varlistentry id="highlight-gui">
    185186        <term><command>highlight-gui</command></term>
     
    194195        </listitem>
    195196      </varlistentry>
     197-->
    196198
    197199    </variablelist>
  • general/prog/guile.xml

    rf547d35 r55e8f78  
    100100    </para>
    101101
    102 <screen><userinput>sed -i "/seems to be moved /s/^/:#/" build-aux/ltmain.sh &amp;&amp;
     102<screen><userinput>sed -i "/seems to be moved/s/^/:#/" build-aux/ltmain.sh &amp;&amp;
    103103
    104104./configure --prefix=/usr    \
  • general/prog/valgrind.xml

    rf547d35 r55e8f78  
    7070        <para>
    7171          Estimated build time: &valgrind-time;
     72        </para>
     73      </listitem>
     74    </itemizedlist>
     75
     76    <bridgehead renderas="sect3">Additional Downloads</bridgehead>
     77    <itemizedlist spacing="compact">
     78      <listitem>
     79        <para>
     80          Required patch:
     81          <ulink url="&patch-root;/valgrind-&valgrind-version;-upstream_fixes-1.patch"/>
    7282        </para>
    7383      </listitem>
     
    100110  <sect2 role="installation">
    101111    <title>Installation of Valgrind</title>
     112
     113    <para>
     114      First, apply a patch that fixes problems with the test suite as well
     115      as with file closing.
     116    </para>
     117
     118<screen><userinput>patch -Np1 -i ../valgrind-3.11.0-upstream_fixes-1.patch</userinput></screen>
    102119
    103120    <para>
  • introduction/welcome/changelog.xml

    rf547d35 r55e8f78  
    4747      <para>July 20th, 2016</para>
    4848      <itemizedlist>
     49        <listitem>
     50          <para>[renodr] - Added a sed to libxml2 to remove a lot of irritating
     51          and useless warnings.</para>
     52        </listitem>
     53        <listitem>
     54          <para>[renodr] - Added a patch for Valgrind to force it to close
     55          open files properly as well as not cause the test suite to instantly
     56          crash.</para>
     57        </listitem>
     58        <listitem revision="systemd">
     59          <para>[renodr] - Update to highlight-3.30. Fixes
     60          <ulink url="&blfs-ticket-root;8097">#8097</ulink>.</para>
     61        </listitem>
    4962        <listitem>
    5063          <para>[renodr] - Update to guile-2.0.12. Fixes
  • networking/netlibs/curl.xml

    rf547d35 r55e8f78  
    161161
    162162    <para>
    163       To run the test suite, issue: <command>make test</command>. Two tests,
    164       1139 and 1140, may fail.<!--  Some
     163      To run the test suite, issue: <command>make test</command>. <!-- Two tests,
     164      1139 and 1140, may fail. Works fine for me. Douglas 20160720 --><!--  Some
    165165      tests (up to 2%) may fail due to timing issues, kernel configuration,
    166166      or other issues.-->
  • packages.ent

    rf547d35 r55e8f78  
    211211<!ENTITY hicolor-icon-theme-version   "0.15">
    212212<!ENTITY icon-naming-utils-version    "0.8.90">
    213 <!ENTITY highlight-version            "3.28">
     213<!ENTITY highlight-version            "3.30">
    214214<!ENTITY ibus-version                 "1.5.13">
    215215<!ENTITY imagemagick-version          "7.0.1">
Note: See TracChangeset for help on using the changeset viewer.