me
/
guix
Archived
1
0
Fork 0

gnu: scons: Update to 3.0.3.

Fixes <https://bugs.gnu.org/34236>.

* gnu/packages/python-xyz.scm (scons): Update to 3.0.3.
[arguments]: Add "bootstrap" phase.
master
Ricardo Wurmus 2019-01-28 20:09:51 +01:00
parent 1d1e3676ba
commit ad34338d1e
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 18 additions and 6 deletions

View File

@ -1337,18 +1337,30 @@ existing ones.")
(define-public scons (define-public scons
(package (package
(name "scons") (name "scons")
(version "3.0.1") (version "3.0.3")
(source (origin (source (origin
(method url-fetch) (method git-fetch)
(uri (string-append "mirror://sourceforge/scons/scons/" version (uri (git-reference
"/scons-" version ".tar.gz")) (url "https://github.com/SCons/scons.git")
(commit version)))
(file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32
"0wzid419mlwqw9llrg8gsx4nkzhqy16m4m40r0xnh6cwscw5wir4")))) "1xizkjgrvydkjhpv7i5rx0mdkp3618sis7jsckjh57nxcynlk5dc"))))
(build-system python-build-system) (build-system python-build-system)
(arguments (arguments
`(#:use-setuptools? #f ; still relies on distutils `(#:use-setuptools? #f ; still relies on distutils
#:tests? #f)) ; no 'python setup.py test' command #:tests? #f ; no 'python setup.py test' command
#:phases
(modify-phases %standard-phases
(add-before 'build 'bootstrap
(lambda _
(substitute* "src/engine/SCons/compat/__init__.py"
(("sys.modules\\[new\\] = imp.load_module\\(old, \\*imp.find_module\\(old\\)\\)")
"sys.modules[new] = __import__(old)"))
(invoke "python" "bootstrap.py" "build/scons" "DEVELOPER=guix")
(chdir "build/scons")
#t)))))
(home-page "http://scons.org/") (home-page "http://scons.org/")
(synopsis "Software construction tool written in Python") (synopsis "Software construction tool written in Python")
(description (description