summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2014-05-16 15:43:32 -0400
committerLuke Shumaker <LukeShu@sbcglobal.net>2014-05-16 15:43:32 -0400
commit66c80efe3dfc8b2bb3ee349d38eacbac81dc87ac (patch)
tree565f8ca198ea8ec6dc7f04a6cae9bd86e059f552
parent01a4b029ff9873c9f7806e0887b0c1265227b5e3 (diff)
libre/licenses-libre: add MPL2 and WTFPL2
The RUBY checksum changed because it switched from \r\n (Windows/network) newlines to \n (Unix) newlines, and also added a trailing newline. The MPL1 checksum changed because of a fixed typo (432s/NPL/MPL/). I removed the dead 'links' makedepend.
-rw-r--r--libre/licenses-libre/PKGBUILD32
1 files changed, 22 insertions, 10 deletions
diff --git a/libre/licenses-libre/PKGBUILD b/libre/licenses-libre/PKGBUILD
index 19012126c..7ca0036bb 100644
--- a/libre/licenses-libre/PKGBUILD
+++ b/libre/licenses-libre/PKGBUILD
@@ -1,11 +1,12 @@
# $Id: PKGBUILD 176952 2013-02-03 00:38:36Z dan $
-# Maintainer: Dan McGee <dan@archlinux.org>
-# Maintainer (Parabola): fauno <fauno@kiwwwi.com.ar>
-# Maintainer (Parabola): Márcio Silva <coadde@parabola.nu>
-# Maintainer (Parabola): André Silva <emulatorman@parabola.nu>
+# Maintainer (Arch): Dan McGee <dan@archlinux.org>
+# Maintainer: fauno <fauno@kiwwwi.com.ar>
+# Maintainer: Márcio Silva <coadde@parabola.nu>
+# Maintainer: André Silva <emulatorman@parabola.nu>
+# Contributor: Luke Shumaker <lukeshu@sbcglobal.net>
pkgname=licenses-libre
-pkgver=20130203
+pkgver=20140516
pkgrel=1.1
pkgdesc="The standard licenses distribution package"
arch=('any')
@@ -15,7 +16,6 @@ groups=('base')
provides=("licenses=${pkgver}")
conflicts=('licenses')
replaces=('licenses')
-makedepends=(links)
source=(apache-2.0.txt::http://www.apache.org/licenses/LICENSE-2.0.txt
cc-by-3.0.txt
cc-by-sa-3.0.txt
@@ -31,6 +31,7 @@ source=(apache-2.0.txt::http://www.apache.org/licenses/LICENSE-2.0.txt
http://www.gnu.org/licenses/fdl-1.3.txt
http://www.latex-project.org/lppl.txt
mpl-1.1.txt::http://www.mozilla.org/MPL/1.1/index.txt
+ mpl-2.0.txt::http://www.mozilla.org/MPL/2.0/index.txt
perlartistic.txt
http://www.perlfoundation.org/attachment/legal/artistic-2_0.txt
php-3.0.txt::http://www.php.net/license/3_0.txt
@@ -38,6 +39,7 @@ source=(apache-2.0.txt::http://www.apache.org/licenses/LICENSE-2.0.txt
cpl-1.0.txt
python-2.txt
w3c.txt
+ wtfpl-2.txt::http://www.wtfpl.net/txt/copying/
ZopePublicLicense.txt)
md5sums=('3b83ef96387f14655fc854ddc3c6bd57'
'ffb24d1bbf8b83d373f0b8edc3feb0c6'
@@ -53,14 +55,16 @@ md5sums=('3b83ef96387f14655fc854ddc3c6bd57'
'24ea4c7092233849b4394699333b5c56'
'10b9de612d532fdeeb7fe8fcd1435cc6'
'9f4337828d782bdea41f03dd2ad1b808'
- 'bfe1f75d606912a4111c90743d6c7325'
+ 'b7426de1c630b269dc95ba20ea82a290'
+ '815ca599c9df247a0c7f619bab123dad'
'd09c120ca7db95ef2aeecec0cb08293b'
'b4a94da2a1f918b217ef5156634fc9e0'
'a45bb1bbeed9e26b26c5763df1d3913d'
- 'f24b942d957112d759762054b6e7cf34'
+ '837b32593517ae48b9c3b5c87a5d288c'
'f083e41c43db25e18f36c91e57750b64'
'a055911c32fb4ed6e96c453ceaeba857'
'6f2095b5d61770740852873b195a4d21'
+ '8365d07beeb5f39d87e846dca3ae7b64'
'dc8502850eab9e1ff330a12d7ca18a19')
package() {
@@ -111,8 +115,12 @@ package() {
mkdir LPPL
cp "$srcdir"/lppl.txt LPPL/license.txt
- mkdir MPL
- cp "$srcdir"/mpl-1.1.txt MPL/license.txt
+ mkdir MPL1.1
+ cp "$srcdir"/mpl-1.1.txt MPL1.1/license.txt
+ ln -s MPL1.1 MPL
+
+ mkdir MPL2
+ cp "$srcdir"/mpl-2.0.txt MPL2/license.txt
mkdir PerlArtistic
cp "$srcdir"/perlartistic.txt PerlArtistic/license.txt
@@ -129,6 +137,10 @@ package() {
mkdir W3C
cp "$srcdir"/w3c.txt W3C/license.txt
+ mkdir WTFPL2
+ cp "$srcdir"/wtfpl-2.txt WTFPL2/license.txt
+ ln -s WTFPL2 WTFPL
+
mkdir ZPL
cp "$srcdir"/ZopePublicLicense.txt ZPL/license.txt
}