Changeset 440647ab
- Timestamp:
- 01/11/2019 08:34:09 PM (6 years ago)
- Branches:
- 10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 12.2, 8.4, 9.0, 9.1, bdubbs/svn, gimp3, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, lazarus, lxqt, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, trunk, upgradedb, xry111/for-12.3, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/spidermonkey128, xry111/test-20220226, xry111/xf86-video-removal
- Children:
- 6878aa6
- Parents:
- 227b44ff
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
general/prog/scons.xml
r227b44ff r440647ab 7 7 <!ENTITY scons-download-http "&sourceforge-dl;/scons/scons-&scons-version;.tar.gz"> 8 8 <!ENTITY scons-download-ftp " "> 9 <!ENTITY scons-md5sum " 1c99878d0eaf9b768b50721e913142d3">10 <!ENTITY scons-size "6 16 KB">11 <!ENTITY scons-buildsize " 5.3MB">9 <!ENTITY scons-md5sum "aebc976d65d034f83fd1b14e33f1d34b"> 10 <!ENTITY scons-size "636 KB"> 11 <!ENTITY scons-buildsize "12 MB"> 12 12 <!ENTITY scons-time "less than 0.1 SBU"> 13 13 ]> … … 73 73 <bridgehead renderas="sect3">SCons Dependencies</bridgehead> 74 74 75 <bridgehead renderas="sect4">Required</bridgehead>76 <para role="required">77 <xref linkend="python2"/>78 </para>79 80 75 <bridgehead renderas="sect4">Optional</bridgehead> 81 76 <para role="optional"> 82 77 <xref linkend="docbook-xsl"/>, 83 <xref role="runtime" linkend="libxml2py2"/> and 84 <xref role="runtime" linkend="libxslt"/> (the 85 <application>Python2</application> modules can be invoked at 86 runtime if using the SCons Docbook tool) 78 <xref role="runtime" linkend="libxslt"/> 87 79 </para> 88 80 … … 100 92 </para> 101 93 102 <screen role="root"><userinput>python setup.py install --prefix=/usr \ 103 --standard-lib \ 104 --optimize=1 \ 105 --install-data=/usr/share</userinput></screen> 94 <screen role="root"><userinput>sed -i 's/env python/&3/' script/* && 95 python3 setup.py install --prefix=/usr \ 96 --standard-lib \ 97 --optimize=1 \ 98 --install-data=/usr/share && 99 rm /usr/bin/scons*.bat</userinput></screen> 106 100 107 101 </sect2> … … 117 111 <seglistitem> 118 112 <seg> 119 scons, scons-&scons-version;, sconsign, sconsign-&scons-version;, 120 scons-time, and scons-time-&scons-version; 113 scons, scons-configure-cache, sconsign, and scons-time 121 114 </seg> 122 115 <seg> … … 124 117 </seg> 125 118 <seg> 126 /usr/lib/python&python 2-majorver;/site-packages/SCons119 /usr/lib/python&python3-majorver;/site-packages/SCons 127 120 </seg> 128 121 </seglistitem> … … 142 135 <indexterm zone="scons scons-prog"> 143 136 <primary sortas="b-scons">scons</primary> 137 </indexterm> 138 </listitem> 139 </varlistentry> 140 141 <varlistentry id="scons-configure-cache"> 142 <term><command>scons-configure-cache</command></term> 143 <listitem> 144 <para> 145 shows or converts the configuration of an 146 <application>SCons</application> cache directory. 147 </para> 148 <indexterm zone="scons scons-configure-cache"> 149 <primary sortas="b-scons-configure-cache">scons-configure-cache</primary> 144 150 </indexterm> 145 151 </listitem> -
introduction/welcome/changelog.xml
r227b44ff r440647ab 47 47 <itemizedlist> 48 48 <listitem> 49 <para>[pierre] - Update to scons-3.0.3. Adapt build for 50 Python 3. Same for serf. Fixes 51 <ulink url="&blfs-ticket-root;11408">#11408</ulink>.</para> 52 </listitem> 53 <listitem> 49 54 <para>[bdubbs] - Update to subversion-1.11.1. Fixes 50 55 <ulink url="&blfs-ticket-root;11540">#11540</ulink>.</para> -
networking/netlibs/serf.xml
r227b44ff r440647ab 104 104 sed -i "/Alias/s:install_static,::" SConstruct && 105 105 sed -i "/ print/{s/print/print(/; s/$/)/}" SConstruct && 106 sed -i "/get_contents()/s/,/.decode()&/" SConstruct && 106 107 107 108 scons PREFIX=/usr</userinput></screen> … … 116 117 --> 117 118 119 <!-- With Python 3, check.py is broken. It could be fixed, but since the 120 testsuite hangs anyway... 118 121 <para> 119 122 To test the results, issue: <command>scons check</command>. 120 123 The tests currently will cause a hang. 121 <!-- with 8.1, tests hang for some reason. Look into this later. --> 124 </para> 125 --> 126 127 <para> 128 This package does not come with a functional testsuite. 122 129 </para> 123 130 … … 136 143 <command>sed -i "..."</command>: The first command removes the runtime 137 144 path from a shared library and the next two commands disable building and 138 installing of the static library. The last command corrects for 139 changes in scons-3.x. 145 installing of the static library. The fourth command corrects for 146 changes in scons-3.x. The last command allows to use <application> 147 Python 3</application>. 140 148 </para> 141 149
Note:
See TracChangeset
for help on using the changeset viewer.