Disambiguate ‘expat’ in (gnu packages man).

This follows up on commit e445ae9ae1.

* gnu/packages/man.scm: Import (guix licences) with a ‘license:’ prefix.
Adjust all users.
This commit is contained in:
Tobias Geerinckx-Rice 2020-08-19 00:16:33 +02:00
parent affae3241c
commit 9e371e9595
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -25,7 +25,7 @@
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
(define-module (gnu packages man)
#:use-module (guix licenses)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (guix git-download)
#:use-module (guix download)
#:use-module (guix packages)
@ -72,7 +72,7 @@ (define-public xmltoman
to man pages in groff format or html. It features the usual man page items such
as description, options, see also, etc.")
(home-page "http://xmltoman.sourceforge.net/")
(license gpl2+)))
(license license:gpl2+)))
(define-public ronn
(package
@ -96,7 +96,7 @@ (define-public ronn
(description "Ronn builds manuals. It converts simple, human readable
textfiles to roff for terminal display, and also to HTML for the web.")
(home-page "https://rtomayko.github.io/ronn/")
(license expat)))
(license license:expat)))
(define-public libpipeline
(package
@ -116,7 +116,7 @@ (define-public libpipeline
(description
"libpipeline is a C library for manipulating pipelines of subprocesses in
a flexible and convenient way.")
(license gpl3+)))
(license license:gpl3+)))
(define-public man-db
(package
@ -218,7 +218,7 @@ (define-public man-db
"Man-db is an implementation of the standard Unix documentation system
accessed using the man command. It uses a Berkeley DB database in place of
the traditional flat-text whatis databases.")
(license gpl2+)))
(license license:gpl2+)))
(define-public man-pages
(package
@ -254,7 +254,7 @@ (define-public man-pages
Linux kernel and C library interfaces employed by user-space programs.")
;; Each man page has its own license; some are GPLv2+, some are MIT/X11.
(license gpl2+)))
(license license:gpl2+)))
(define-public help2man
(package
@ -285,7 +285,7 @@ (define-public help2man
"GNU help2man is a program that converts the output of standard
\"--help\" and \"--version\" command-line arguments into a manual page
automatically.")
(license gpl3+)))
(license license:gpl3+)))
(define-public scdoc
(package
@ -312,7 +312,7 @@ (define-public scdoc
(description "scdoc is a simple man page generator written for POSIX systems
in C99.")
;; MIT license, see /share/doc/scdoc-1.6.0/COPYING.
(license expat)))
(license license:expat)))
(define-public txt2man
(package
@ -338,4 +338,4 @@ (define-public txt2man
(home-page "https://github.com/mvertes/txt2man")
(synopsis "Convert text to man page")
(description "Txt2man converts flat ASCII text to man page format.")
(license gpl2+)))
(license license:gpl2+)))