gnu: scons: Update to 3.0.1.
* gnu/packages/python.scm (scons): Update to 3.0.1. (scons-python2): New variable.
This commit is contained in:
parent
c5b2905d92
commit
bf630276a1
|
@ -1365,19 +1365,17 @@ existing ones.")
|
||||||
(define-public scons
|
(define-public scons
|
||||||
(package
|
(package
|
||||||
(name "scons")
|
(name "scons")
|
||||||
(version "2.5.1")
|
(version "3.0.1")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "mirror://sourceforge/scons/scons/" version
|
(uri (string-append "mirror://sourceforge/scons/scons/" version
|
||||||
"/scons-" version ".tar.gz"))
|
"/scons-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1wji1z9jdkhnmm99apx6fhld9cs52rr56aigniyrcsmlwy52298b"))))
|
"0wzid419mlwqw9llrg8gsx4nkzhqy16m4m40r0xnh6cwscw5wir4"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
;; With Python 3.x, fails to build with a syntax error.
|
`(#:use-setuptools? #f ; still relies on distutils
|
||||||
`(#:python ,python-2
|
|
||||||
#:use-setuptools? #f ; still relies on distutils
|
|
||||||
#:tests? #f)) ; no 'python setup.py test' command
|
#:tests? #f)) ; no 'python setup.py test' command
|
||||||
(home-page "http://scons.org/")
|
(home-page "http://scons.org/")
|
||||||
(synopsis "Software construction tool written in Python")
|
(synopsis "Software construction tool written in Python")
|
||||||
|
@ -1389,6 +1387,11 @@ In short, SCons is an easier, more reliable and faster way to build
|
||||||
software.")
|
software.")
|
||||||
(license license:x11)))
|
(license license:x11)))
|
||||||
|
|
||||||
|
(define-public scons-python2
|
||||||
|
(package
|
||||||
|
(inherit (package-with-python2 scons))
|
||||||
|
(name "scons-python2")))
|
||||||
|
|
||||||
(define-public python-extras
|
(define-public python-extras
|
||||||
(package
|
(package
|
||||||
(name "python-extras")
|
(name "python-extras")
|
||||||
|
|
Loading…
Reference in New Issue