Changeset 3aee187
- Timestamp:
- 05/29/2020 09:43:04 AM (4 years ago)
- Branches:
- 10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, kea, ken/inkscape-core-mods, ken/tuningfonts, lazarus, lxqt, plabs/python-mods, qt5new, renodr/vulkan-addition, trunk, upgradedb, xry111/intltool, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
- Children:
- 432f6a2
- Parents:
- 26cceda
- Files:
-
- 1 added
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
general.ent
r26cceda r3aee187 1 1 <!-- $LastChangedBy$ $Date$ --> 2 2 3 <!ENTITY day "2 8"> <!-- Always 2 digits -->3 <!ENTITY day "29"> <!-- Always 2 digits --> 4 4 <!ENTITY month "05"> <!-- Always 2 digits --> 5 5 <!ENTITY year "2020"> … … 7 7 <!ENTITY copyholder "The BLFS Development Team"> 8 8 <!ENTITY version "&year;-&month;-&day;"> 9 <!ENTITY releasedate "May 2 8th, &year;">9 <!ENTITY releasedate "May 29th, &year;"> 10 10 <!ENTITY pubdate "&year;-&month;-&day;"> <!-- metadata req. by TLDP --> 11 11 <!ENTITY blfs-version "svn"> <!-- svn|[release #] --> -
general/prog/python-modules.xml
r26cceda r3aee187 47 47 <listitem> 48 48 <para> 49 <xref linkend="py3c"/> 50 </para> 51 </listitem> 52 <listitem> 53 <para> 49 54 <xref linkend="pyatspi2"/> 50 55 </para> … … 163 168 164 169 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" 170 href="py3c.xml"/> 171 172 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" 165 173 href="pyatspi2.xml"/> 166 174 <!-- -
general/prog/subversion.xml
r26cceda r3aee187 129 129 <xref linkend="libsecret"/>, 130 130 <!-- <xref linkend="kdelibs"/> (for <ulink url="http://utils.kde.org/projects/kwalletmanager/">KWallet</ulink> support), --> 131 <xref linkend="py3c"/> (for tests) 131 132 <xref linkend="python2"/> (with sqlite support for the tests), 132 133 <xref linkend="ruby"/>, … … 141 142 <ulink url="http://www.inet.no/dante/">Dante</ulink> or 142 143 <ulink url="http://jikes.sourceforge.net/">Jikes</ulink>, 143 and <ulink url="https://junit.org/junit4/">JUnit 4</ulink> 144 (to test the Java bindings). Note that JUnit is included with 144 <ulink url="https://junit.org/junit4/">JUnit 4</ulink> (to test the Java bindings) and 145 145 <xref linkend="apache-ant"/>. 146 146 </para> … … 197 197 198 198 <para> 199 If you passed the <option>--enable-javahl</option> parameter to 200 <command>configure</command> and wish to build the Java bindings, issue 201 the following command: 199 If you wish to build the Java bindings pass the <option>--enable-javahl</option> 200 parameter to the <command>configure</command> command. In addition, if 201 you want to run the Java test suite, you have to specify the location 202 of the <application>JUnit</application> file by adding 203 <option>--with-junit=<path to junit jar></option> (for 204 instance <option>--with-junit=/usr/local/java/lib/junit-4.13.jar</option>) 205 to <command>configure</command>. The JUnit jar file is no longer 206 included in <xref linkend="apache-ant"/> and must be downloaded seperatly. 207 To build the Java bindings, issue the following command: 202 208 </para> 203 209 <para> … … 207 213 <para> 208 214 If you want to compile <application>Perl</application>, 209 <application>Python 2</application>, or <application>Ruby</application>215 <application>Python</application>, or <application>Ruby</application> 210 216 bindings, issue any of the following command: 211 217 </para> … … 213 219 <screen><command>make swig-pl</command> # for <application>Perl</application> 214 220 <command>make swig-py \ 215 swig_pydir=/usr/lib/python&python 2-majorver;/site-packages/libsvn \216 swig_pydir_extra=/usr/lib/python&python 2-majorver;/site-packages/svn</command> # for <application>Python</application>221 swig_pydir=/usr/lib/python&python3-majorver;/site-packages/libsvn \ 222 swig_pydir_extra=/usr/lib/python&python3-majorver;/site-packages/svn</command> # for <application>Python</application> 217 223 <command>make swig-rb</command> # for <application>Ruby</application></screen> 218 224 </para> … … 225 231 <para> 226 232 To test the results of the Java bindings build, 227 issue <command>make check-javahl</command>. The 228 <application>JUnit</application> testing framework must be installed, 233 issue <command>LANG=C make check-javahl</command>. 234 <!-- ~~ This explanation is added to the configure above ~~ 235 The <application>JUnit</application> testing framework must be installed, 229 236 and the location of the JUnit jar has to be specified by passing the 230 <option>- -with-junit=<path to junit jar></option> parameter to237 <option>- -with-junit=<path to junit jar></option> parameter to 231 238 <command>configure</command>. Note that <application>JUnit</application> 232 239 is included in <xref linkend="apache-ant"/>, and can be accessed by 233 passing <option>- -with-junit=/opt/ant/lib/junit-4.12.jar</option>240 passing <option>- -with-junit=/opt/ant/lib/junit-4.12.jar</option> 234 241 to <command>configure</command>. 242 --> 235 243 </para> 236 244 … … 242 250 <command>make check-swig-rb</command>. 243 251 </para> 244 <!-- I can no longer confirm this with 9.0-rc1 -renodr245 <note><para>246 The Python Bindings test suite (<command>make check-swig-py</command>)247 is broken with SWIG-4.0.0, however the bindings themselves work as248 expected.249 </para></note>250 -->251 252 252 253 <para> … … 269 270 <para> 270 271 If you built the <application>Perl</application>, 271 <application>Python 2</application>, or272 <application>Python</application>, or 272 273 <application>Ruby</application> bindings, issue any of the following 273 274 commands as the <systemitem class="username">root</systemitem> user … … 277 278 <screen><command>make install-swig-pl</command> 278 279 <command>make install-swig-py \ 279 swig_pydir=/usr/lib/python&python 2-majorver;/site-packages/libsvn \280 swig_pydir_extra=/usr/lib/python&python 2-majorver;/site-packages/svn</command>280 swig_pydir=/usr/lib/python&python3-majorver;/site-packages/libsvn \ 281 swig_pydir_extra=/usr/lib/python&python3-majorver;/site-packages/svn</command> 281 282 <command>make install-swig-rb</command></screen> 282 283 </para> … … 386 387 /usr/include/subversion-1, 387 388 /usr/lib/perl5/site_perl/&lfs-perl-version;/{,auto/}SVN, 388 /usr/lib/python 2.7/site-packages/{libsvn,svn},389 /usr/lib/python&python3-majorver;/site-packages/{libsvn,svn}, 389 390 /usr/lib/ruby/site_ruby/<x.y.z>/{,<arch-linux>-linux/}svn, 390 391 /usr/lib/svn-javahl, and -
general/prog/swig.xml
r26cceda r3aee187 128 128 129 129 <para> 130 To test the results, issue: <command> make -k check TCL_INCLUDE=</command>.130 To test the results, issue: <command>PY3=1 make -k check TCL_INCLUDE=</command>. 131 131 The unsetting of the variable <envar>TCL_INCLUDE</envar> is 132 132 necessary since it is not correctly set by … … 134 134 languages installed on your machine, so the disk space and SBU values 135 135 given for the tests may vary, and should be considered as mere orders of 136 magnitude. If you have <xref linkend="python2"/> installed, the Python-3 136 magnitude. <!-- Phase out P2 support 137 If you have <xref linkend="python2"/> installed, the Python-3 137 138 tests are not run. You can run tests for Python-3 by issuing 138 139 <command>PY3=1 make check-python-examples</command> followed by 139 <command>PY3=1 make check-python-test-suite</command>. According to140 <command>PY3=1 make check-python-test-suite</command>. --> According to 140 141 <application>SWIG</application>'s documentation, the failure of some 141 142 tests should not be considered harmful. -
introduction/welcome/changelog.xml
r26cceda r3aee187 43 43 --> 44 44 <listitem> 45 <para>May 29th, 2020</para> 46 <itemizedlist> 47 <listitem> 48 <para>[thomas] - Upgrade subversion-1.14.0. Drop description of Python2 bindings. Fixes 49 <ulink url="&blfs-ticket-root;13584">#13584</ulink>.</para> 50 </listitem> 51 <listitem> 52 <para>[thomas] - Make swig using Python3.</para> 53 </listitem> 54 <listitem> 55 <para>[thomas] - Add Python module py3c-1.1 (needed by subversion).</para> 56 </listitem> 57 </itemizedlist> 58 </listitem> 59 60 <listitem> 45 61 <para>May 28th, 2020</para> 46 62 <itemizedlist> -
packages.ent
r26cceda r3aee187 364 364 <!ENTITY scons-version "3.1.2"> 365 365 <!ENTITY slang-version "2.3.2"> 366 <!ENTITY subversion-version "1.1 3.0">366 <!ENTITY subversion-version "1.14.0"> 367 367 <!ENTITY swig-version "4.0.1"> 368 368 <!ENTITY tcl-version "8.6.10"> … … 548 548 <!ENTITY mako-version "1.1.2"> 549 549 <!ENTITY MarkupSafe-version "1.1.1"> 550 <!ENTITY py3c-version "1.1"> 550 551 <!ENTITY pyatspi2-version "2.36.0"> 551 552 <!--<!ENTITY py2cairo-version "1.10.0"> -->
Note:
See TracChangeset
for help on using the changeset viewer.