From 38bbd61df1e647b475815f1f35f79e97799f2824 Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Fri, 1 Feb 2013 12:57:06 +0100 Subject: 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. --- gnu/packages/acl.scm | 2 +- gnu/packages/attr.scm | 4 ++-- gnu/packages/compression.scm | 4 ++-- gnu/packages/global.scm | 2 +- gnu/packages/linux.scm | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/gnu/packages/acl.scm b/gnu/packages/acl.scm index 1cba608c8c..14579e9ea9 100644 --- a/gnu/packages/acl.scm +++ b/gnu/packages/acl.scm @@ -63,4 +63,4 @@ (define-public acl "Library and tools for manipulating access control lists") (description "Library and tools for manipulating access control lists.") - (license '(gpl2+ lgpl2.1+)))) + (license (list gpl2+ lgpl2.1+)))) diff --git a/gnu/packages/attr.scm b/gnu/packages/attr.scm index 2f8a0e0e65..254792f4ed 100644 --- a/gnu/packages/attr.scm +++ b/gnu/packages/attr.scm @@ -1,6 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2012 Nikita Karetnikov -;;; Copyright © 2012 Ludovic Courtès +;;; Copyright © 2012, 2013 Ludovic Courtès ;;; ;;; This file is part of GNU Guix. ;;; @@ -74,4 +74,4 @@ (define-public attr "Library and tools for manipulating extended attributes") (description "Portable library and tools for manipulating extended attributes.") - (license '(gpl2+ lgpl2.1+)))) + (license (list gpl2+ lgpl2.1+)))) diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm index dc00f323ce..086900990b 100644 --- a/gnu/packages/compression.scm +++ b/gnu/packages/compression.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2012 Ludovic Courtès +;;; Copyright © 2012, 2013 Ludovic Courtès ;;; ;;; This file is part of GNU Guix. ;;; @@ -171,7 +171,7 @@ (define-public xz compression algorithm is currently LZMA2, which is used inside the .xz container format. With typical files, XZ Utils create 30 % smaller output 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/"))) (define-public lzo diff --git a/gnu/packages/global.scm b/gnu/packages/global.scm index 592aefc66e..b604ab6478 100644 --- a/gnu/packages/global.scm +++ b/gnu/packages/global.scm @@ -55,4 +55,4 @@ (define-public global ; a global variable to ctags or etags but is different from them at the point of independence of any editor. It runs on a UNIX (POSIX) compatible operating system like GNU and BSD.") - (license "GPLv3+"))) + (license gpl3+))) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index de6d53a0d9..4d51d8b310 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -80,7 +80,7 @@ (define-public linux-libre-headers #:tests? #f)) (synopsis "GNU Linux-Libre kernel headers") (description "Headers of the Linux-Libre kernel.") - (license "GPLv2") + (license gpl2) (home-page "http://www.gnu.org/software/linux-libre/")))) (define-public linux-pam -- cgit v1.2.3