[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
11/23: gnu: python-glyphslib: Use pyproject-build-system.
From: |
guix-commits |
Subject: |
11/23: gnu: python-glyphslib: Use pyproject-build-system. |
Date: |
Thu, 27 Oct 2022 13:47:11 -0400 (EDT) |
mbakke pushed a commit to branch master
in repository guix.
commit 6f6257a6bcb3a672edd5586c6e9ab7e38dcc8775
Author: Marius Bakke <marius@gnu.org>
AuthorDate: Mon Oct 17 21:07:09 2022 +0200
gnu: python-glyphslib: Use pyproject-build-system.
* gnu/packages/fontutils.scm (python-glyphslib)[build-system]: Switch to
PYPROJECT-BUILD-SYSTEM.
[arguments]: Add #:test-flags. Remove #:phases.
[native-inputs]: Remove PYTHON-PYPA-BUILD and PYTHON-WHEEL.
---
gnu/packages/fontutils.scm | 42 +++++++++++-------------------------------
1 file changed, 11 insertions(+), 31 deletions(-)
diff --git a/gnu/packages/fontutils.scm b/gnu/packages/fontutils.scm
index f80130a565..f797847802 100644
--- a/gnu/packages/fontutils.scm
+++ b/gnu/packages/fontutils.scm
@@ -76,8 +76,9 @@
#:use-module (guix build-system copy)
#:use-module (guix build-system cmake)
#:use-module (guix build-system gnu)
- #:use-module (guix build-system python)
#:use-module (guix build-system meson)
+ #:use-module (guix build-system pyproject)
+ #:use-module (guix build-system python)
#:use-module (guix utils)
#:use-module (srfi srfi-1))
@@ -594,39 +595,18 @@ process. FontParts is the successor of RoboFab.")
(sha256
(base32
"0mkkwd09g76hvif603ij5aqicxh47zvhgyyd0pjcjmpdy6dr70yw"))))
- (build-system python-build-system)
+ (build-system pyproject-build-system)
(arguments
(list
- #:phases
- #~(modify-phases %standard-phases
- (replace 'build
- (lambda _
- ;; The Zip format does not support pre-1980 time stamps.
- (let ((circa-1980 (* 10 366 24 60 60)))
- (setenv "SOURCE_DATE_EPOCH" (number->string circa-1980))
- (invoke "python" "-m" "build" "--wheel" "--no-isolation"
"."))))
- (replace 'install
- (lambda _
- (let ((whl (car (find-files "dist" "\\.whl$"))))
- (invoke "pip" "--no-cache-dir" "--no-input"
- "install" "--no-deps" "--prefix" #$output whl))))
- (replace 'check
- (lambda* (#:key tests? #:allow-other-keys)
- (when tests?
- (setenv "GUIX_PYTHONPATH"
- (string-append (getcwd) ":" (getenv
"GUIX_PYTHONPATH")))
- (invoke "pytest" "-vv"
- ;; These fail because the test data has not yet been
- ;; updated for newer FontTools:
- ;;
https://github.com/googlefonts/glyphsLib/issues/787
- ;; Re-enable for versions > 6.0.7.
- "--ignore=tests/builder/designspace_gen_test.py"
- "--ignore=tests/builder/interpolation_test.py"
- )))))))
+ #:test-flags #~'("-vv"
+ ;; These fail because the test data has not yet been
+ ;; updated for newer FontTools:
+ ;; https://github.com/googlefonts/glyphsLib/issues/787
+ ;; Re-enable for versions > 6.0.7.
+ "--ignore=tests/builder/designspace_gen_test.py"
+ "--ignore=tests/builder/interpolation_test.py")))
(native-inputs
- (list python-pypa-build
- python-setuptools-scm
- python-wheel
+ (list python-setuptools-scm
;; For tests.
python-pytest
- branch master updated (176a501360 -> f928abac36), guix-commits, 2022/10/27
- 02/23: gnu: Zabbix: Update to 6.0.9., guix-commits, 2022/10/27
- 01/23: gnu: zabbix-agentd: Enable TLS support., guix-commits, 2022/10/27
- 03/23: gnu: python-setuptools: Move to python-build., guix-commits, 2022/10/27
- 10/23: gnu: weasyprint: Use pyproject-build-system., guix-commits, 2022/10/27
- 13/23: gnu: python-ufolib2: Use pyproject-build-system., guix-commits, 2022/10/27
- 05/23: gnu: python-pip: Move to (gnu packages python-build)., guix-commits, 2022/10/27
- 08/23: gnu: python-autopage: Use pyproject-build-system., guix-commits, 2022/10/27
- 11/23: gnu: python-glyphslib: Use pyproject-build-system.,
guix-commits <=
- 17/23: gnu: zabbix-cli: Switch to pyproject-build-system., guix-commits, 2022/10/27
- 20/23: gnu: python-path: Use pyproject-build-system., guix-commits, 2022/10/27
- 09/23: gnu: python-pydyf: Use pyproject-build-system., guix-commits, 2022/10/27
- 04/23: gnu: pypy: Move to separate module., guix-commits, 2022/10/27
- 06/23: build-system: Add pyproject-build-system., guix-commits, 2022/10/27
- 12/23: gnu: python-statmake: Use pyproject-build-system., guix-commits, 2022/10/27
- 14/23: gnu: python-mypy-protobuf: Switch to pyproject-build-system., guix-commits, 2022/10/27
- 15/23: gnu: python-tempora: Switch to pyproject-build-system., guix-commits, 2022/10/27
- 16/23: gnu: python-pygmsh: Use pyproject-build-system., guix-commits, 2022/10/27
- 19/23: gnu: python-openapi-spec-validator: Use pyproject-build-system., guix-commits, 2022/10/27