Archived
1
0
Fork 0

gnu: Fix invalid `license' fields.

* gnu/packages/acl.scm (acl): Change `license' field to refer to the
  `license' objects.
* gnu/packages/attr.scm (attr): Likewise.
* gnu/packages/compression.scm (xz): Likewise.
* gnu/packages/global.scm (global): Likewise.
* gnu/packages/linux.scm (linux-libre-headers): Likewise.
This commit is contained in:
Ludovic Courtès 2013-02-01 12:57:06 +01:00
parent cb09fb24ee
commit 38bbd61df1
5 changed files with 7 additions and 7 deletions

View file

@ -63,4 +63,4 @@
"Library and tools for manipulating access control lists") "Library and tools for manipulating access control lists")
(description (description
"Library and tools for manipulating access control lists.") "Library and tools for manipulating access control lists.")
(license '(gpl2+ lgpl2.1+)))) (license (list gpl2+ lgpl2.1+))))

View file

@ -1,6 +1,6 @@
;;; GNU Guix --- Functional package management for GNU ;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2012 Nikita Karetnikov <nikita@karetnikov.org> ;;; Copyright © 2012 Nikita Karetnikov <nikita@karetnikov.org>
;;; Copyright © 2012 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2012, 2013 Ludovic Courtès <ludo@gnu.org>
;;; ;;;
;;; This file is part of GNU Guix. ;;; This file is part of GNU Guix.
;;; ;;;
@ -74,4 +74,4 @@
"Library and tools for manipulating extended attributes") "Library and tools for manipulating extended attributes")
(description (description
"Portable library and tools for manipulating extended attributes.") "Portable library and tools for manipulating extended attributes.")
(license '(gpl2+ lgpl2.1+)))) (license (list gpl2+ lgpl2.1+))))

View file

@ -1,5 +1,5 @@
;;; GNU Guix --- Functional package management for GNU ;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2012 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2012, 2013 Ludovic Courtès <ludo@gnu.org>
;;; ;;;
;;; This file is part of GNU Guix. ;;; This file is part of GNU Guix.
;;; ;;;
@ -171,7 +171,7 @@ been modified quite a lot to be suitable for XZ Utils. The primary
compression algorithm is currently LZMA2, which is used inside the .xz compression algorithm is currently LZMA2, which is used inside the .xz
container format. With typical files, XZ Utils create 30 % smaller output container format. With typical files, XZ Utils create 30 % smaller output
than gzip and 15 % smaller output than bzip2.") than gzip and 15 % smaller output than bzip2.")
(license '(license:gpl2+ license:lgpl2.1+)) ; bits of both (license (list license:gpl2+ license:lgpl2.1+)) ; bits of both
(home-page "http://tukaani.org/xz/"))) (home-page "http://tukaani.org/xz/")))
(define-public lzo (define-public lzo

View file

@ -55,4 +55,4 @@ subdirectories, many #ifdef and many main() functions. It is similar
to ctags or etags but is different from them at the point of to ctags or etags but is different from them at the point of
independence of any editor. It runs on a UNIX (POSIX) compatible independence of any editor. It runs on a UNIX (POSIX) compatible
operating system like GNU and BSD.") operating system like GNU and BSD.")
(license "GPLv3+"))) (license gpl3+)))

View file

@ -80,7 +80,7 @@
#:tests? #f)) #:tests? #f))
(synopsis "GNU Linux-Libre kernel headers") (synopsis "GNU Linux-Libre kernel headers")
(description "Headers of the Linux-Libre kernel.") (description "Headers of the Linux-Libre kernel.")
(license "GPLv2") (license gpl2)
(home-page "http://www.gnu.org/software/linux-libre/")))) (home-page "http://www.gnu.org/software/linux-libre/"))))
(define-public linux-pam (define-public linux-pam