diff options
author | John Kehayias <john.kehayias@protonmail.com> | 2025-04-25 00:20:46 -0400 |
---|---|---|
committer | John Kehayias <john.kehayias@protonmail.com> | 2025-04-25 01:11:39 -0400 |
commit | b0d02a49c4adb33b2a47d9bebf23465fd80ca418 (patch) | |
tree | ad5143f6bfc23c5fb6da4fc75d58324a4169ef96 | |
parent | 5b981a2b5c9c880634d883f3b7ae078b4fa75fdb (diff) | |
download | guix-b0d02a49c4adb33b2a47d9bebf23465fd80ca418.tar.gz guix-b0d02a49c4adb33b2a47d9bebf23465fd80ca418.zip |
gnu: scons: Update to 4.9.1.
* gnu/packages/build-tools.scm (scons): Update to 4.9.1.
[arguments]: Remove phase 'bootstrap (no longer needed).
Change-Id: I3715510c2ce4182421bcaef5145a462b854581da
-rw-r--r-- | gnu/packages/build-tools.scm | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/gnu/packages/build-tools.scm b/gnu/packages/build-tools.scm index 415ddee3e0..1335989bb2 100644 --- a/gnu/packages/build-tools.scm +++ b/gnu/packages/build-tools.scm @@ -438,7 +438,7 @@ other lower-level build files."))) (define-public scons (package (name "scons") - (version "4.5.0") + (version "4.9.1") (source (origin (method git-fetch) (uri (git-reference @@ -448,7 +448,7 @@ other lower-level build files."))) (patches (search-patches "scons-test-environment.patch")) (sha256 (base32 - "1skz1kzhwsp54i71jrsg46rkxwicfici7pq6qmfhlqd5zhrg21zb")))) + "1h9653965bqf8zab4gbsilsmnhp6nxn5b5b9yvm6pf401qjx8n4x")))) (build-system python-build-system) (arguments (list @@ -461,11 +461,6 @@ other lower-level build files."))) (substitute* "SCons/Script/Main.py" (("/usr/share/scons") (string-append #$output "/share/scons"))))) - (add-before 'build 'bootstrap - (lambda _ - ;; XXX: Otherwise setup.py bdist_wheel fails. - (setenv "PYTHONPATH" (getenv "GUIX_PYTHONPATH")) - (invoke "python" "scripts/scons.py"))) (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? |