GNU bug report logs -
#67644
[PATCH] gnu: pypy: Update to 7.3.13.
Previous Next
Reported by: Greg Hogan <code <at> greghogan.com>
Date: Tue, 5 Dec 2023 19:52:01 UTC
Severity: normal
Tags: patch
Done: Ludovic Courtès <ludo <at> gnu.org>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your message dated Thu, 14 Dec 2023 22:56:58 +0100
with message-id <87a5qctplh.fsf <at> gnu.org>
and subject line Re: [bug#67644] [PATCH] gnu: pypy: Update to 7.3.13.
has caused the debbugs.gnu.org bug report #67644,
regarding [PATCH] gnu: pypy: Update to 7.3.13.
to be marked as done.
(If you believe you have received this mail in error, please contact
help-debbugs <at> gnu.org.)
--
67644: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=67644
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
The validate-runpath error was previously reported in #57653.
Version update fixes the existing build errors.
* gnu/packages/python.scm (pypy3): Update to 7.3.13.
[source]: Update origin URI.
[arguments]<#:validate-runpath>: Disable check.
[arguments]<#:phases>: Update directory paths.
Change-Id: Ic6ab7dd77e30fa85d6fa5f000f9aa2528951b81e
---
gnu/packages/pypy.scm | 17 +++++++++--------
1 file changed, 9 insertions(+), 8 deletions(-)
diff --git a/gnu/packages/pypy.scm b/gnu/packages/pypy.scm
index c7c74c5c34..59c368417e 100644
--- a/gnu/packages/pypy.scm
+++ b/gnu/packages/pypy.scm
@@ -42,18 +42,19 @@ (define-module (gnu packages pypy)
(define-public pypy
(package
(name "pypy")
- (version "7.3.5")
+ (version "7.3.13")
(source (origin
(method url-fetch)
(uri (string-append "https://downloads.python.org/pypy/"
- "pypy3.7-v" version "-src.tar.bz2"))
+ "pypy3.10-v" version "-src.tar.bz2"))
(sha256
(base32
- "18lrdmpcczlbk3cfarkgwqdmilrybz56i1dafk8dkjlyk90gw86r"))))
+ "0v9s6pwrnaxqi5h1pvmaphj6kgyczx07ykl07hcx656h34y77haa"))))
(build-system gnu-build-system)
(arguments
(list
#:tests? #f ;FIXME: 43 out of 364 tests are failing
+ #:validate-runpath? #f
#:modules '((ice-9 ftw) (ice-9 match)
(guix build utils) (guix build gnu-build-system))
#:disallowed-references (list nss-certs)
@@ -151,7 +152,7 @@ (define-public pypy
(for-each
(lambda (x)
(delete-file-recursively (string-append
- "lib-python/3/" x)))
+ "lib/pypy3.10/" x)))
'("tkinter/test"
"test"
"sqlite3/test"
@@ -161,12 +162,12 @@ (define-public pypy
"ctypes/test"
"unittest/test"))
;; Patch shebang referencing python.
- (substitute* '("lib-python/3/cgi.py"
- "lib-python/3/encodings/rot_13.py")
+ (substitute* '("lib/pypy3.10/cgi.py"
+ "lib/pypy3.10/encodings/rot_13.py")
((shebang-match-python) shebang-pypy3))
(with-fluids ((%default-port-encoding "ISO-8859-1"))
- (substitute* '("lib_pypy/_md5.py"
- "lib_pypy/_sha1.py")
+ (substitute* '("lib/pypy3.10/_md5.py"
+ "lib/pypy3.10/_sha1.py")
((shebang-match-python) shebang-pypy3))))
(copy-recursively dist-dir #$output)))))))
(native-inputs
--
2.40.1
[Message part 3 (message/rfc822, inline)]
[Message part 4 (text/plain, inline)]
Hi,
Greg Hogan <code <at> greghogan.com> skribis:
> The validate-runpath error was previously reported in #57653.
>
> Version update fixes the existing build errors.
>
> * gnu/packages/python.scm (pypy3): Update to 7.3.13.
> [source]: Update origin URI.
> [arguments]<#:validate-runpath>: Disable check.
> [arguments]<#:phases>: Update directory paths.
>
> Change-Id: Ic6ab7dd77e30fa85d6fa5f000f9aa2528951b81e
Applied after adding a comment to justify #:validate-runpath? #f (which
should be used if and only if we have a very good reason to turn it
off—it almost never gives false positives, but this case is an
exception).
Thanks!
Ludo’.
[Message part 5 (text/x-patch, inline)]
diff --git a/gnu/packages/pypy.scm b/gnu/packages/pypy.scm
index 59c368417e..a39621b5ad 100644
--- a/gnu/packages/pypy.scm
+++ b/gnu/packages/pypy.scm
@@ -54,7 +54,11 @@ (define-public pypy
(arguments
(list
#:tests? #f ;FIXME: 43 out of 364 tests are failing
+
+ ;; XXX: ELF file 'pypy.debug' makes 'validate-needed-in-runpath' throw:
+ ;; <https://issues.guix.gnu.org/57653>.
#:validate-runpath? #f
+
#:modules '((ice-9 ftw) (ice-9 match)
(guix build utils) (guix build gnu-build-system))
#:disallowed-references (list nss-certs)
This bug report was last modified 1 year and 158 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.