This is an automated email from the git hooks/post-receive script.
guix_mirror_bot pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 257d328f90 gnu: parallel: Separate out the doc directory.
257d328f90 is described below
commit 257d328f90e6e88c9d81ba128067b2c038db70e7
Author: Efraim Flashner <[email protected]>
AuthorDate: Thu Nov 27 11:46:07 2025 +0200
gnu: parallel: Separate out the doc directory.
* gnu/packages/parallel.scm (parallel)[outputs]: Add doc.
[arguments]: Add configure-flags.
Change-Id: I3a3e57a60d4e2089be9a04505f1756ccbb2300ce
---
gnu/packages/parallel.scm | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/parallel.scm b/gnu/packages/parallel.scm
index 72d601a8c9..51f0cd209e 100644
--- a/gnu/packages/parallel.scm
+++ b/gnu/packages/parallel.scm
@@ -81,6 +81,7 @@
(package
(name "parallel")
(version "20251122")
+ (outputs '("out" "doc"))
(source
(origin
(method url-fetch)
@@ -101,7 +102,10 @@
"src/parallel_cheat_bw.pdf")))))
(build-system gnu-build-system)
(arguments
- `(#:phases
+ `(#:configure-flags
+ (list (string-append "--docdir=" (assoc-ref %outputs "doc")
+ "/share/doc/parallel"))
+ #:phases
(modify-phases %standard-phases
(add-after 'unpack 'patch-bin-sh
(lambda _