[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#32260] [PATCH 03/21] gnu: python: Rebuild bytecode after removing t
From: |
Marius Bakke |
Subject: |
[bug#32260] [PATCH 03/21] gnu: python: Rebuild bytecode after removing tests. |
Date: |
Tue, 24 Jul 2018 14:35:46 +0200 |
* gnu/packages/python.scm (python-3.7)[arguments]: Run 'rebuild-bytecode'
after 'remove-tests' to save CPU cycles. Adjust exclude regex.
---
gnu/packages/python.scm | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index dcc8f0921..395258aa9 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -358,7 +358,7 @@ data types.")
;; FIXME: Without this phase we have close to 400 files that
;; differ across different builds of this package. With this phase
;; there are 44 files left that differ.
- (add-after 'install 'rebuild-bytecode
+ (add-after 'remove-tests 'rebuild-bytecode
(lambda* (#:key outputs #:allow-other-keys)
(let ((out (assoc-ref outputs "out")))
(for-each
@@ -372,8 +372,7 @@ data types.")
"-m" "compileall"
"-f" ; force rebuild
;; Don't build lib2to3, because it's
Python 2 code.
- ;; Also don't build obviously broken
test code.
- "-x" "(lib2to3|test/bad.*)"
+ "-x" "lib2to3.*"
,file)))
(find-files out "\\.py$")))
(list '() '("-O") '("-OO")))
--
2.18.0
- [bug#32260] [PATCH 00/21] Python updates, Marius Bakke, 2018/07/24
- [bug#32260] [PATCH 00/21] Python updates, Marius Bakke, 2018/07/24
- [bug#32260] [PATCH 03/21] gnu: python: Rebuild bytecode after removing tests.,
Marius Bakke <=
- [bug#32260] [PATCH 06/21] gnu: python-py: Update to 1.5.4., Marius Bakke, 2018/07/24
- [bug#32260] [PATCH 04/21] gnu: python: Build reproducibly., Marius Bakke, 2018/07/24
- [bug#32260] [PATCH 09/21] gnu: python-more-itertools: Update to 4.2.0., Marius Bakke, 2018/07/24
- [bug#32260] [PATCH 07/21] gnu: python-py: Update home page., Marius Bakke, 2018/07/24
- [bug#32260] [PATCH 12/21] gnu: python-pytest-runner: Update to 4.2., Marius Bakke, 2018/07/24
- [bug#32260] [PATCH 02/21] gnu: python: Update to 3.7.0., Marius Bakke, 2018/07/24
- [bug#32260] [PATCH 05/21] gnu: python-py: Add missing dependency on setuptools-scm., Marius Bakke, 2018/07/24
- [bug#32260] [PATCH 14/21] gnu: python-hypothesis: Update to 3.66.6., Marius Bakke, 2018/07/24
- [bug#32260] [PATCH 15/21] gnu: python-pytest-cov: Update to 2.5.1., Marius Bakke, 2018/07/24