[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
79/204: gnu: Add python-cffsubr.
From: |
guix-commits |
Subject: |
79/204: gnu: Add python-cffsubr. |
Date: |
Wed, 20 Apr 2022 02:03:23 -0400 (EDT) |
apteryx pushed a commit to branch wip-ipython-polyglossia
in repository guix.
commit 8250f1a33f2f5263192e3e4aabd4521d0b46e502
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Fri Apr 8 09:01:13 2022 -0400
gnu: Add python-cffsubr.
* gnu/packages/fontutils.scm (python-cffsubr): New variable.
---
gnu/packages/fontutils.scm | 49 ++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 49 insertions(+)
diff --git a/gnu/packages/fontutils.scm b/gnu/packages/fontutils.scm
index 0c479cd5de..9d170da953 100644
--- a/gnu/packages/fontutils.scm
+++ b/gnu/packages/fontutils.scm
@@ -271,6 +271,55 @@ but also provides many useful font conversion and analysis
facilities.
@end table")
(license license:asl2.0)))
+(define-public python-cffsubr
+ (package
+ (name "python-cffsubr")
+ (version "0.2.9.post1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "cffsubr" version))
+ (modules '((guix build utils)))
+ (snippet '(delete-file-recursively "external")) ;unbundle ADFKO
+ (sha256
+ (base32 "0p7wyagkmwf4agr6ysgswrpmpifx5rz8dnjbcs2gmj29rwnl2cbb"))))
+ (build-system python-build-system)
+ (arguments
+ (list
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'patch-setup.py
+ (lambda _
+ (substitute* '("pyproject.toml"
+ "setup.py")
+ ;; This is not needed when building the package.
+ (("setuptools-git-ls-files") "")
+ ;; Do not attempt to build the unbundled ADFKO.
+ (("cmdclass\\[\"build_ext\"] = ExecutableBuildExt.*")
+ ""))))
+ (add-after 'unpack 'patch-tx-path
+ (lambda* (#:key inputs #:allow-other-keys)
+ (define tx (search-input-file inputs "bin/tx"))
+ (substitute* "src/cffsubr/__init__.py"
+ (("TX_EXE = \"tx\"")
+ (format #f "TX_EXE = ~s" tx))
+ ;; Use the full 'tx' file name directly.
+ (("with path\\(__name__, TX_EXE) as tx_cli:")
+ "")
+ ((" (return subprocess.run\\(\\[)str\\(tx_cli)(].*)" _ h t)
+ (format #f "~a~s~a" h tx t)))))
+ (replace 'check
+ (lambda* (#:key tests? #:allow-other-keys)
+ (when tests?
+ (invoke "pytest" "-vv")))))))
+ (native-inputs (list python-pytest python-setuptools-scm python-wheel))
+ (inputs (list python-afdko))
+ (propagated-inputs (list python-fonttools))
+ (home-page "https://github.com/adobe-type-tools/cffsubr")
+ (synopsis "Compact Font Format (CFF) subroutinizer")
+ (description "This package provides the @command{cffsubr} command, a
+Compact Font Format (CFF) subroutinizer based on the Adobe Font Development
+Kit for OpenType (AFDKO) @command{tx} tool.")
(license license:asl2.0)))
(define-public python-cu2qu
- 39/204: gnu: Add python-jaraco-functools-bootstrap., (continued)
- 39/204: gnu: Add python-jaraco-functools-bootstrap., guix-commits, 2022/04/20
- 40/204: gnu: Add python-autocommand., guix-commits, 2022/04/20
- 44/204: gnu: Add python-pytest-enabler-bootstrap., guix-commits, 2022/04/20
- 49/204: gnu: python-mypy: Update to 0.942 and fix search path., guix-commits, 2022/04/20
- 52/204: gnu: Add python-jaraco-classes., guix-commits, 2022/04/20
- 53/204: gnu: Add python-jaraco-context., guix-commits, 2022/04/20
- 54/204: gnu: Add python-jaraco-functools., guix-commits, 2022/04/20
- 56/204: gnu: Add python-path., guix-commits, 2022/04/20
- 42/204: gnu: Add python-types-pytz., guix-commits, 2022/04/20
- 76/204: gnu: Add java-antlr4-runtime-cpp., guix-commits, 2022/04/20
- 79/204: gnu: Add python-cffsubr.,
guix-commits <=
- 87/204: gnu: Add font-sil-ezra., guix-commits, 2022/04/20
- 104/204: gnu: python-jupyter-client: Update to 7.2.2., guix-commits, 2022/04/20
- 106/204: gnu: Add python-pytest-tornado., guix-commits, 2022/04/20
- 109/204: gnu: python-nbclient: Update to 0.6.0., guix-commits, 2022/04/20
- 110/204: gnu: python-bleach: Update to 5.0.0., guix-commits, 2022/04/20
- 10/204: gnu: python-ipython: Update to 8.2.0 [fixes CVE-2022-21699]., guix-commits, 2022/04/20
- 11/204: gnu: python-nbformat: Update to 5.3.0., guix-commits, 2022/04/20
- 12/204: gnu: Add texlive-paralist., guix-commits, 2022/04/20
- 18/204: gnu: Add texlive-zref., guix-commits, 2022/04/20
- 14/204: gnu: Add texlive-metalogo., guix-commits, 2022/04/20