summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorJohn Kehayias <john.kehayias@protonmail.com>2025-04-25 00:20:46 -0400
committerJohn Kehayias <john.kehayias@protonmail.com>2025-04-25 01:11:39 -0400
commitb0d02a49c4adb33b2a47d9bebf23465fd80ca418 (patch)
treead5143f6bfc23c5fb6da4fc75d58324a4169ef96 /gnu
parent5b981a2b5c9c880634d883f3b7ae078b4fa75fdb (diff)
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
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/build-tools.scm9
1 files changed, 2 insertions, 7 deletions
diff --git a/gnu/packages/build-tools.scm b/gnu/packages/build-tools.scm
index 415ddee3e03..1335989bb21 100644
--- a/gnu/packages/build-tools.scm
+++ b/gnu/packages/build-tools.scm
@@ -438,7 +438,7 @@ other lower-level build files.")))
438(define-public scons 438(define-public scons
439 (package 439 (package
440 (name "scons") 440 (name "scons")
441 (version "4.5.0") 441 (version "4.9.1")
442 (source (origin 442 (source (origin
443 (method git-fetch) 443 (method git-fetch)
444 (uri (git-reference 444 (uri (git-reference
@@ -448,7 +448,7 @@ other lower-level build files.")))
448 (patches (search-patches "scons-test-environment.patch")) 448 (patches (search-patches "scons-test-environment.patch"))
449 (sha256 449 (sha256
450 (base32 450 (base32
451 "1skz1kzhwsp54i71jrsg46rkxwicfici7pq6qmfhlqd5zhrg21zb")))) 451 "1h9653965bqf8zab4gbsilsmnhp6nxn5b5b9yvm6pf401qjx8n4x"))))
452 (build-system python-build-system) 452 (build-system python-build-system)
453 (arguments 453 (arguments
454 (list 454 (list
@@ -461,11 +461,6 @@ other lower-level build files.")))
461 (substitute* "SCons/Script/Main.py" 461 (substitute* "SCons/Script/Main.py"
462 (("/usr/share/scons") 462 (("/usr/share/scons")
463 (string-append #$output "/share/scons"))))) 463 (string-append #$output "/share/scons")))))
464 (add-before 'build 'bootstrap
465 (lambda _
466 ;; XXX: Otherwise setup.py bdist_wheel fails.
467 (setenv "PYTHONPATH" (getenv "GUIX_PYTHONPATH"))
468 (invoke "python" "scripts/scons.py")))
469 (replace 'check 464 (replace 'check
470 (lambda* (#:key tests? #:allow-other-keys) 465 (lambda* (#:key tests? #:allow-other-keys)
471 (when tests? 466 (when tests?