File tree Expand file tree Collapse file tree 4 files changed +760
-7
lines changed
Expand file tree Collapse file tree 4 files changed +760
-7
lines changed Original file line number Diff line number Diff line change @@ -188,13 +188,15 @@ From the 2.2 release on, Jython contributors have signed
188188Python Software Foundation contributor agreements and releases are
189189covered under the Python Software Foundation license version 2.
190190
191- The standard library is covered by the Python Software Foundation
192- license as well. See the Lib/LICENSE file for details.
191+ The Python standard library developed for CPython is also used in Jython, and
192+ (like Jython itself) is provided under the Python Software Foundation
193+ license. See the file LICENSE_CPython.txt for details.
193194
194195The zxJDBC package was written by Brian Zimmer and originally licensed
195196under the GNU Public License. The package is now covered by the Jython
196197Software License.
197198
198- The command line interpreter is covered by the Apache Software
199- License. See the org/apache/LICENSE file for details.
199+ Elements of the supporting libraries (appearing renamed in some Jython JARs)
200+ are covered by the Apache Software License. See the file LICENSE_Apache.txt
201+ for details.
200202
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ https://github.com/jythontools/jython
55
66Development tip
77 Bugs fixed
8+ - [ 2330 ] full-build fails to copy CPython License
89 - [ 2651 ] Travis builds failing with *** buffer overflow detected ***
910 - [ 2703 ] JycompileAntTask cannot find ...ant.taskdefs.MatchingTask
1011 - [ 2708 ] test_urllib2net fails (on Travis CI)
Original file line number Diff line number Diff line change @@ -801,9 +801,11 @@ The readme text for the next release will be like:
801801 </jar >
802802 </target >
803803
804- <target name =" copy-license" if =" do.checkout" >
805- <echo >copy CPython LICENSE from ${ checkout.dir } /python</echo >
806- <copy file =" ${ checkout.dir } /python/LICENSE" tofile =" ${ dist.dir } /LICENSE_CPython.txt" preservelastmodified =" true" />
804+ <target name =" copy-license" if =" full-build" >
805+ <echo >copy CPython license from ${ jython.base.dir } /lib-python</echo >
806+ <copy file =" ${ jython.base.dir } /lib-python/LICENSE.txt"
807+ tofile =" ${ dist.dir } /LICENSE_CPython.txt"
808+ preservelastmodified =" true" />
807809 </target >
808810
809811 <target name =" copy-misc-files" depends =" init" >
You can’t perform that action at this time.
0 commit comments