[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/24: gnu: python: Update to 3.7.0.
From: |
Marius Bakke |
Subject: |
06/24: gnu: python: Update to 3.7.0. |
Date: |
Sat, 28 Jul 2018 09:58:16 -0400 (EDT) |
mbakke pushed a commit to branch core-updates
in repository guix.
commit a1454169e0080d834cbddf94f04c5bcb7c3703e9
Author: Marius Bakke <address@hidden>
Date: Mon Jul 23 17:14:15 2018 +0200
gnu: python: Update to 3.7.0.
* gnu/packages/python.scm (python-3.6): Rename to ...
(python-3.7): ... this. Update to 3.7.0.
[arguments]: Remove phase 'patch-timestamp-for-pyc-files' and related code.
Add phases to unset SOURCE_DATE_EPOCH during the check phase.
(python-3): Is now PYTHON-3.7.
* guix/build/python-build-system.scm (enable-bytecode-determinism): Don't
set
DETERMINISTIC_BUILD.
---
gnu/packages/python.scm | 61 ++++++++------------------------------
guix/build/python-build-system.scm | 2 --
2 files changed, 13 insertions(+), 50 deletions(-)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index cdeedfe..e394605 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -321,10 +321,10 @@ data types.")
(name "python")
(properties `((superseded . ,python-2)))))
-(define-public python-3.6
+(define-public python-3.7
(package (inherit python-2)
(name "python")
- (version "3.6.5")
+ (version "3.7.0")
(source (origin
(method url-fetch)
(uri (string-append "https://www.python.org/ftp/python/"
@@ -337,7 +337,7 @@ data types.")
(patch-flags '("-p0"))
(sha256
(base32
- "19l7inxm056jjw33zz97z0m02hsi7jnnx5kyb76abj5ml4xhad7l"))
+ "0j9mic5c9lbd2b20wka7hily7szz740wy9ilfrczxap63rnrk0h3"))
(snippet
'(begin
(for-each delete-file
@@ -348,53 +348,18 @@ data types.")
(arguments
(substitute-keyword-arguments (package-arguments python-2)
((#:phases phases)
- `(modify-phases ,phases
- (add-after 'unpack 'patch-timestamp-for-pyc-files
- (lambda _
- ;; We set DETERMINISTIC_BUILD to only override the mtime when
- ;; building with Guix, lest we break auto-compilation in
- ;; environments.
- (setenv "DETERMINISTIC_BUILD" "1")
- (substitute* "Lib/py_compile.py"
- (("source_stats\\['mtime'\\]")
- "(1 if 'DETERMINISTIC_BUILD' in os.environ else
source_stats['mtime'])"))
-
- ;; Use deterministic hashes for strings, bytes, and datetime
- ;; objects.
- (setenv "PYTHONHASHSEED" "0")
-
- ;; Reset mtime when validating bytecode header.
- (substitute* "Lib/importlib/_bootstrap_external.py"
- (("source_mtime = int\\(source_stats\\['mtime'\\]\\)")
- "source_mtime = 1"))
- #t))
- ;; These tests fail because of our change to the bytecode
- ;; validation. They fail because expected exceptions do not get
- ;; thrown. This seems to be no problem.
- (add-after 'unpack 'disable-broken-bytecode-tests
- (lambda _
- (substitute*
"Lib/test/test_importlib/source/test_file_loader.py"
- (("test_bad_marshal")
- "disable_test_bad_marshal")
- (("test_no_marshal")
- "disable_test_no_marshal")
- (("test_non_code_marshal")
- "disable_test_non_code_marshal"))
- #t))
- ;; Unset DETERMINISTIC_BUILD to allow for tests that check that
- ;; stale pyc files are rebuilt.
- (add-before 'check 'allow-non-deterministic-compilation
- (lambda _ (unsetenv "DETERMINISTIC_BUILD") #t))
- ;; We need to rebuild all pyc files for three different
- ;; optimization levels to replace all files that were not built
- ;; deterministically.
-
- ;; FIXME: Without this phase we have close to 2000 files that
+ `(modify-phases ,phases
+ ;; Unset SOURCE_DATE_EPOCH while running the test-suite and set it
+ ;; again afterwards. See <https://bugs.python.org/issue34022>.
+ (add-before 'check 'unset-SOURCE_DATE_EPOCH
+ (lambda _ (unsetenv "SOURCE_DATE_EPOCH") #t))
+ (add-after 'check 'reset-SOURCE_DATE_EPOCH
+ (lambda _ (setenv "SOURCE_DATE_EPOCH" "1") #t))
+ ;; FIXME: Without this phase we have close to 400 files that
;; differ across different builds of this package. With this phase
- ;; there are about 500 files left that differ.
+ ;; there are 44 files left that differ.
(add-after 'install 'rebuild-bytecode
(lambda* (#:key outputs #:allow-other-keys)
- (setenv "DETERMINISTIC_BUILD" "1")
(let ((out (assoc-ref outputs "out")))
(for-each
(lambda (opt)
@@ -421,7 +386,7 @@ data types.")
"/site-packages"))))))))
;; Current 3.x version.
-(define-public python-3 python-3.6)
+(define-public python-3 python-3.7)
;; Current major version.
(define-public python python-3)
diff --git a/guix/build/python-build-system.scm
b/guix/build/python-build-system.scm
index 376ea81..5bb0ba4 100644
--- a/guix/build/python-build-system.scm
+++ b/guix/build/python-build-system.scm
@@ -246,8 +246,6 @@ installed with setuptools."
(define* (enable-bytecode-determinism #:rest _)
"Improve determinism of pyc files."
- ;; Set DETERMINISTIC_BUILD to override the embedded mtime in pyc files.
- (setenv "DETERMINISTIC_BUILD" "1")
;; Use deterministic hashes for strings, bytes, and datetime objects.
(setenv "PYTHONHASHSEED" "0")
#t)
- 01/24: gnu: openldap: Don't build static libraries., (continued)
- 01/24: gnu: openldap: Don't build static libraries., Marius Bakke, 2018/07/28
- 02/24: gnu: icu4c: Don't keep a reference to coreutils., Marius Bakke, 2018/07/28
- 04/24: gnu: libxml2: Add explicit dependency on XZ., Marius Bakke, 2018/07/28
- 03/24: gnu: libxml2: Move static library to separate output., Marius Bakke, 2018/07/28
- 08/24: gnu: python: Build reproducibly., Marius Bakke, 2018/07/28
- 10/24: gnu: python-py: Update to 1.5.4., Marius Bakke, 2018/07/28
- 11/24: gnu: python-py: Update home page., Marius Bakke, 2018/07/28
- 17/24: gnu: python-flake8: Update to 3.5.0., Marius Bakke, 2018/07/28
- 07/24: gnu: python: Rebuild bytecode after removing tests., Marius Bakke, 2018/07/28
- 05/24: gnu: python: Remove outdated comment and phases., Marius Bakke, 2018/07/28
- 06/24: gnu: python: Update to 3.7.0.,
Marius Bakke <=
- 12/24: gnu: python-pyflakes: Update to 2.0.0., Marius Bakke, 2018/07/28
- 13/24: gnu: python-more-itertools: Update to 4.2.0., Marius Bakke, 2018/07/28
- 19/24: gnu: python-pytest-cov: Update to 2.5.1., Marius Bakke, 2018/07/28
- 24/24: gnu: python-fonttools: Update to 3.28.0., Marius Bakke, 2018/07/28
- 23/24: gnu: gdb: Fix build with Python >= 3.7., Marius Bakke, 2018/07/28
- 18/24: gnu: python-hypothesis: Update to 3.66.6., Marius Bakke, 2018/07/28
- 22/24: gnu: python-pytest-mock: Update to 1.10.0., Marius Bakke, 2018/07/28
- 20/24: gnu: Add python-invoke., Marius Bakke, 2018/07/28
- 09/24: gnu: python-py: Add missing dependency on setuptools-scm., Marius Bakke, 2018/07/28
- 15/24: gnu: python-setuptools: Update to 40.0.0., Marius Bakke, 2018/07/28