[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
23/24: gnu: Adjust for python-build-system behavior change.
From: |
guix-commits |
Subject: |
23/24: gnu: Adjust for python-build-system behavior change. |
Date: |
Sun, 5 Dec 2021 08:16:29 -0500 (EST) |
mbakke pushed a commit to branch core-updates-frozen
in repository guix.
commit db5646d957895944007c1bb44fcd998ea392f168
Author: Marius Bakke <marius@gnu.org>
AuthorDate: Sat Dec 4 12:22:11 2021 +0100
gnu: Adjust for python-build-system behavior change.
Commit cb72f9a773e0931ee3758c851d96007ded034e4c changed the semantics of
SITE-PACKAGES, but did not adjust all callers.
* gnu/packages/bioinformatics.scm (python-pyvcf)[arguments]: Adjust for
missing trailing slash.
* gnu/packages/maths.scm (nomad-optimizer)[arguments]: Likewise.
* gnu/packages/patchutils.scm (patchwork)[arguments]: Likewise.
---
gnu/packages/bioinformatics.scm | 3 +--
gnu/packages/maths.scm | 2 +-
gnu/packages/patchutils.scm | 6 +++---
3 files changed, 5 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index fb3ceb8..f3cc1ea 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -15281,8 +15281,7 @@ for the analysis and visualization of raw nanopore
signal.")
(lambda* (#:key inputs outputs #:allow-other-keys)
(delete-file-recursively (string-append
(site-packages inputs outputs)
- "vcf/test"))
- #t)))))
+ "/vcf/test")))))))
(native-inputs `(("python-cython" ,python-cython)))
(propagated-inputs
`(("python-pysam" ,python-pysam)
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index 14aecb9..3ff3c14 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -2009,7 +2009,7 @@ interfaces.")
(lambda* (#:key inputs outputs #:allow-other-keys)
(delete-file (string-append
(site-packages inputs outputs)
- "PyNomad-0.0.0-py"
+ "/PyNomad-0.0.0-py"
(python-version (assoc-ref inputs "python"))
".egg-info"))
#t)))))
diff --git a/gnu/packages/patchutils.scm b/gnu/packages/patchutils.scm
index 3ad795a..e5a03d4 100644
--- a/gnu/packages/patchutils.scm
+++ b/gnu/packages/patchutils.scm
@@ -390,7 +390,7 @@ application = get_wsgi_application()\n") port)))))
(for-each (lambda (directory)
(copy-recursively
directory
- (string-append out-site-packages directory)))
+ (string-append out-site-packages "/" directory)))
'(;; Contains the python code
"patchwork"
;; Contains the templates for the generated HTML
@@ -403,9 +403,9 @@ application = get_wsgi_application()\n") port)))))
(install-file file (string-append out "/bin")))
(list
(string-append out-site-packages
- "patchwork/bin/parsemail.sh")
+ "/patchwork/bin/parsemail.sh")
(string-append out-site-packages
- "patchwork/bin/parsemail-batch.sh")))
+ "/patchwork/bin/parsemail-batch.sh")))
;; Collect the static assets, this includes JavaScript, CSS and
;; fonts. This is a standard Django process when running a
- 20/24: gnu: python-mailman-hyperkitty: Update to 1.2.0., (continued)
- 20/24: gnu: python-mailman-hyperkitty: Update to 1.2.0., guix-commits, 2021/12/05
- 17/24: gnu: python-django-haystack: Update to 3.1.1., guix-commits, 2021/12/05
- 21/24: gnu: python-whisper: Update to 1.1.8., guix-commits, 2021/12/05
- 11/24: gnu: python-django-url-filter: Adjust phase order., guix-commits, 2021/12/05
- 19/24: gnu: python-hyperkitty: Update to 1.3.5., guix-commits, 2021/12/05
- 24/24: gnu: tbb: Update to 2021.4.0., guix-commits, 2021/12/05
- 16/24: gnu: python-alembic: Update to 1.7.5., guix-commits, 2021/12/05
- 18/24: gnu: Add python-mistune-next., guix-commits, 2021/12/05
- 14/24: gnu: python-webassets: Patch for Python 3.9., guix-commits, 2021/12/05
- 06/24: gnu: python-django-sortedm2m: Fix tests., guix-commits, 2021/12/05
- 23/24: gnu: Adjust for python-build-system behavior change.,
guix-commits <=
- 12/24: gnu: python-mailmanclient: Update to 3.3.3., guix-commits, 2021/12/05
- 13/24: gnu: python-django-mailman3: Update to 1.3.7., guix-commits, 2021/12/05
- 10/24: gnu: python-django-netfields: Propagate psycopg2., guix-commits, 2021/12/05
- 22/24: gnu: python-pyvcf: Fix bytecode compilation., guix-commits, 2021/12/05