GNU bug report logs -
#57347
[PATCH] packages: Add man-pages-posix.
Previous Next
Reported by: Lilah Tascheter <lilah <at> lunabee.space>
Date: Mon, 22 Aug 2022 20:53:02 UTC
Severity: normal
Tags: patch
Done: Ludovic Courtès <ludo <at> gnu.org>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your message dated Thu, 08 Sep 2022 14:55:09 +0200
with message-id <87sfl2gh5e.fsf_-_ <at> gnu.org>
and subject line Re: bug#57347: [PATCH] packages: Add man-pages-posix.
has caused the debbugs.gnu.org bug report #57347,
regarding [PATCH] packages: Add man-pages-posix.
to be marked as done.
(If you believe you have received this mail in error, please contact
help-debbugs <at> gnu.org.)
--
57347: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=57347
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
* gnu/packages/man.scm (man-pages-posix): New variable.
---
gnu/packages/man.scm | 33 +++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
diff --git a/gnu/packages/man.scm b/gnu/packages/man.scm
index 1c1d82758b..e6f4a8bb5b 100644
--- a/gnu/packages/man.scm
+++ b/gnu/packages/man.scm
@@ -302,6 +302,39 @@ (define-public man-pages
;; Each man page has its own license; some are GPLv2+, some are MIT/X11.
(license license:gpl2+)))
+(define-public man-pages-posix
+ (package
+ (name "man-pages-posix")
+ (version "2013-a")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://kernel.org/linux/docs/man-pages/"
+ "man-pages-posix/man-pages-posix-" version
+ ".tar.xz"))
+ (sha256
+ (base32 "0258j05zdrxpgdj8nndbyi7bvrs8fxdksb0xbfrylzgzfmf3lqqr"))))
+ (build-system gnu-build-system)
+ (arguments
+ '(#:tests? #f
+ #:make-flags (list (string-append "prefix=" (assoc-ref %outputs "out")))
+ #:license-file-regexp "POSIX-COPYRIGHT"
+ #:phases (modify-phases %standard-phases
+ (delete 'configure)
+ (replace 'build
+ (lambda _
+ ;; make all is useless due to guix build semantics, so just gzip.
+ ;; Parallel builds are useless with how the Makefile's setup.
+ (invoke "make" "gz"))))))
+ (home-page "https://www.kernel.org/doc/man-pages/")
+ (synopsis "Man pages from the POSIX.1-2013 standard")
+ (description "This package contains excerpts from the POSIX.1-2008 and TC1
+standards (collectively, POSIX.1-2013) in manual page form.")
+ (license (license:fsdg-compatible "file://POSIX-COPYRIGHT"
+ "Redistribution of this material is permitted so long as this
+notice and the corresponding notices within each POSIX manual page are retained
+on any distribution, and the nroff source is included."))))
+
(define-public help2man
;; TODO: Manual pages for languages not available from the implicit
;; input "locales" contain the original (English) text.
base-commit: ff3cecffafad0ddf5cc2af6cb676e73bcf58e431
--
2.37.1
[Message part 3 (message/rfc822, inline)]
Hi Lilah,
Lilah Tascheter <lilah <at> lunabee.space> skribis:
> * gnu/packages/man.scm (man-pages-posix): New variable.
[...]
> * gnu/packages/man.scm (man-pages)[arguments]: Refer to package output
> using gexps instead of assoc-ref on a parameter.
Applied (with minor tweaks to the man-pages-posix description), thanks!
And thank you Maxime for reviewing.
Ludo’.
This bug report was last modified 2 years and 259 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.