mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: kde-frameworks: Fix 'license' fields.
* gnu/packages/kde-frameworks.scm (kde-frameworkintegration)[license]: Turn into a list of <license> objects. (kdelibs4support)[license]: Likewise. (khtml)[license]: Likewise. (kjs)[license]: Likewise. (kross)[license]: Likewise.
This commit is contained in:
parent
2482c02f3b
commit
1873321279
1 changed files with 13 additions and 13 deletions
|
@ -3086,7 +3086,7 @@ (define-public kde-frameworkintegration
|
|||
workspace.")
|
||||
;; This package is distributed under either LGPL2 or LGPL3, but some
|
||||
;; files are explicitly LGPL2+.
|
||||
(license '(lgpl2.0 lgpl3.0 lgpl2.0+))
|
||||
(license (list license:lgpl2.0 license:lgpl3 license:lgpl2.0+))
|
||||
(properties `((upstream-name . "frameworkintegration")))))
|
||||
|
||||
|
||||
|
@ -3202,7 +3202,7 @@ (define-public kdelibs4support
|
|||
http://community.kde.org/Frameworks/Porting_Notes should help with this.")
|
||||
;; Most files are distributed under LGPL2+, but the package includes code
|
||||
;; under a variety of licenses.
|
||||
(license '(license:lgpl2.1+ license:lgpl2.0 license:lgpl2.0+
|
||||
(license (list license:lgpl2.1+ license:lgpl2.0 license:lgpl2.0+
|
||||
license:gpl2 license:gpl2+
|
||||
license:expat license:bsd-2 license:bsd-3
|
||||
license:public-domain))))
|
||||
|
@ -3261,7 +3261,7 @@ (define-public khtml
|
|||
technology and using KJS for JavaScript support.")
|
||||
;; Most files are distributed under LGPL2+, but the package includes code
|
||||
;; under a variety of licenses.
|
||||
(license '(license:lgpl2.0+ license:lgpl2.1+
|
||||
(license (list license:lgpl2.0+ license:lgpl2.1+
|
||||
license:gpl2 license:gpl3+
|
||||
license:expat license:bsd-2 license:bsd-3))))
|
||||
|
||||
|
@ -3294,7 +3294,7 @@ (define-public kjs
|
|||
support.")
|
||||
;; Most files are distributed under LGPL2+, but the package also includes
|
||||
;; code under a variety of licenses.
|
||||
(license '(license:lgpl2.1+
|
||||
(license (list license:lgpl2.1+
|
||||
license:bsd-2 license:bsd-3
|
||||
(license:non-copyleft "file://src/kjs/dtoa.cpp")))))
|
||||
|
||||
|
@ -3414,5 +3414,5 @@ (define-public kross
|
|||
offers abstract functionality to deal with scripts.")
|
||||
;; Most files are distributed under LGPL2+, but the package includes code
|
||||
;; under a variety of licenses.
|
||||
(license '(license:lgpl2.0+ license:lgpl2.1+
|
||||
(license (list license:lgpl2.0+ license:lgpl2.1+
|
||||
license:lgpl2.0 license:gpl3+))))
|
||||
|
|
Loading…
Reference in a new issue