[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
48/84: gnu: python: Support native build on the Hurd.
From: |
guix-commits |
Subject: |
48/84: gnu: python: Support native build on the Hurd. |
Date: |
Wed, 14 Jun 2023 06:23:59 -0400 (EDT) |
janneke pushed a commit to branch wip-hurd
in repository guix.
commit 4e337852c954582b43fc2a1f4c64e7657adbd162
Author: Janneke Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Mon Jun 5 18:57:27 2023 +0200
gnu: python: Support native build on the Hurd.
Running "test_concurrent_futures" and "test_venv" freeze the Hurd. Tests
"test_multiprocessing_forkserver" and "test_multiprocessing_spawn" run over
10mins. Debian simply skips all tests on the Hurd.
* gnu/packages/python.scm (python-3.10)[arguments]: When building for the
Hurd, add "test_concurrent_futures", "test_venv",
"test_multiprocessing_forkserver", "test_multiprocessing_spawn",
"test_builtin", "test_capi", "test_dbm_ndbm, "test_exceptions",
"test_faulthandler", "test_getopt", "test_importlib", "test_json",
"test_multiprocessing_fork", "test_multiprocessing_main_handling",
"test_pdb",
"test_sqlite, and "test_regrtest" to #:make-flags's --exclude flag. Also,
add
'disable-multi-processing' phase to avoid compileall.py hang during install.
---
gnu/packages/python.scm | 27 ++++++++++++++++++++++++---
1 file changed, 24 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index bfe8a68352..5b27a0b4d4 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -56,7 +56,7 @@
;;; Copyright © 2018 Luther Thompson <lutheroto@gmail.com>
;;; Copyright © 2018 Vagrant Cascadian <vagrant@debian.org>
;;; Copyright © 2019 Tanguy Le Carrour <tanguy@bioneland.org>
-;;; Copyright © 2020 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
+;;; Copyright © 2020, 2023 Janneke Nieuwenhuizen <janneke@gnu.org>
;;; Copyright © 2020, 2021 Greg Hogan <code@greghogan.com>
;;; Copyright © 2022 Philip McGrath <philip@philipmcgrath.com>
;;; Copyright © 2022 jgart <jgart@dismail.de>
@@ -488,12 +488,33 @@ data types.")
" test_open_unix_connection"
" test_open_unix_connection_error"
" test_read_pty_output"
- " test_write_pty")
+ " test_write_pty"
+ " test_concurrent_futures" ;freeze
+ " test_venv" ;freeze
+ " test_multiprocessing_forkserver" ;runs over 10min
+ " test_multiprocessing_spawn" ;runs over 10min
+ " test_builtin"
+ " test_capi"
+ " test_dbm_ndbm"
+ " test_exceptions"
+ " test_faulthandler"
+ " test_getopt"
+ " test_importlib"
+ " test_json"
+ " test_multiprocessing_fork"
+ " test_multiprocessing_main_handling"
+ " test_pdb "
+ " test_regrtest"
+ " test_sqlite")
'()))))
((#:phases phases)
`(modify-phases ,phases
,@(if (hurd-system?)
- `((delete 'patch-regen-for-hurd)) ;regen was removed after
3.5.9
+ `((delete 'patch-regen-for-hurd) ;regen was removed after
3.5.9
+ (add-after 'unpack 'disable-multi-processing
+ (lambda _
+ (substitute* "Makefile.pre.in"
+ (("-j0") "-j1")))))
'())
(add-after 'unpack 'remove-windows-binaries
(lambda _
- 58/84: gnu: emacs: Depend on libc-for-target., (continued)
- 58/84: gnu: emacs: Depend on libc-for-target., guix-commits, 2023/06/14
- 51/84: gnu: libbsd: Skip failing test for the Hurd., guix-commits, 2023/06/14
- 45/84: hurd: Support system init in /libexec/runsystem., guix-commits, 2023/06/14
- 77/84: gnu: pango: Support build for the Hurd., guix-commits, 2023/06/14
- 68/84: gnu: zstd: Skip tests when building for the Hurd., guix-commits, 2023/06/14
- 66/84: gnu: tcsh: Skip substitution tests for the Hurd., guix-commits, 2023/06/14
- 14/84: gnu: Add libpciaccess-0.17., guix-commits, 2023/06/14
- 39/84: gnu: grep: Update hanging and failing tests for the Hurd., guix-commits, 2023/06/14
- 47/84: gnu: openssl: Build fix for the Hurd., guix-commits, 2023/06/14
- 46/84: hurd-boot: Support system init: Create essential device nodes., guix-commits, 2023/06/14
- 48/84: gnu: python: Support native build on the Hurd.,
guix-commits <=
- 50/84: gnu: elfutils: Skip failing tests for the Hurd., guix-commits, 2023/06/14
- 22/84: system: hurd: Boot with pci.arbiter and rumpdisk., guix-commits, 2023/06/14
- 37/84: gnu: guile: Skip hanging and failing pipe tests on the Hurd., guix-commits, 2023/06/14
- 59/84: gnu: procps: Skip linux-version test for the Hurd., guix-commits, 2023/06/14
- 70/84: gnu: cmake-minimal: Skip tests for the Hurd., guix-commits, 2023/06/14
- 41/84: gnu: findutils: Move test-strerror_r from XFAIL to skip for the Hurd., guix-commits, 2023/06/14
- 43/84: gnu: gettext-minimal: Remove XFAIL_TESTS for the Hurd., guix-commits, 2023/06/14
- 36/84: Revert "gnu: libunistring: Fix make check for the Hurd.", guix-commits, 2023/06/14
- 56/84: gnu: curl: Skip failing test for the Hurd., guix-commits, 2023/06/14
- 71/84: gnu: doxygen: Fix build for the Hurd., guix-commits, 2023/06/14