summaryrefslogtreecommitdiff
path: root/community/perl-crypt-blowfish
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-08-07 03:03:38 -0700
committerroot <root@rshg054.dnsready.net>2013-08-07 03:03:38 -0700
commitb7d2dcfdb924359a7bdb0614960df38e6e4a9feb (patch)
tree80a10c5f9d110268b99228832caa676955cc459b /community/perl-crypt-blowfish
parenta2fb8ff517d83749ec3b5543aeba805f07ea257d (diff)
Wed Aug 7 02:56:35 PDT 2013
Diffstat (limited to 'community/perl-crypt-blowfish')
-rw-r--r--community/perl-crypt-blowfish/PKGBUILD17
-rw-r--r--community/perl-crypt-blowfish/perl-5.18.patch13
2 files changed, 5 insertions, 25 deletions
diff --git a/community/perl-crypt-blowfish/PKGBUILD b/community/perl-crypt-blowfish/PKGBUILD
index 726c0ee4f..80b24bbc7 100644
--- a/community/perl-crypt-blowfish/PKGBUILD
+++ b/community/perl-crypt-blowfish/PKGBUILD
@@ -1,23 +1,16 @@
-# $Id: PKGBUILD 91659 2013-05-26 09:24:50Z bluewind $
+# $Id: PKGBUILD 95154 2013-08-06 11:51:02Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer: Charles Mauch <cmauch@gmail.com>
pkgname=perl-crypt-blowfish
-pkgver=2.12
-pkgrel=6
+pkgver=2.14
+pkgrel=1
pkgdesc="Perl/CPAN Module Crypt::Blowfish : XSbased implementation of Blowfish"
arch=("i686" "x86_64")
url="http://search.cpan.org/dist/Crypt-Blowfish"
license=("GPL" "PerlArtistic")
-source=("http://search.cpan.org/CPAN/authors/id/D/DP/DPARIS/Crypt-Blowfish-$pkgver.tar.gz"
- "perl-5.18.patch")
-md5sums=('a0eca17addc8bdaf38c044c365a8800c'
- '700129e690f239f9c1a318fffd3504c7')
-
-prepare() {
- cd $srcdir/Crypt-Blowfish-$pkgver
- patch -p1 <$srcdir/perl-5.18.patch
-}
+source=("http://search.cpan.org/CPAN/authors/id/D/DP/DPARIS/Crypt-Blowfish-$pkgver.tar.gz")
+md5sums=('792b43cd4e49d2c2cf4a9f6990ff7d1b')
build() {
cd $srcdir/Crypt-Blowfish-$pkgver
diff --git a/community/perl-crypt-blowfish/perl-5.18.patch b/community/perl-crypt-blowfish/perl-5.18.patch
deleted file mode 100644
index 291733cb9..000000000
--- a/community/perl-crypt-blowfish/perl-5.18.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff -wbBur Crypt-Blowfish-2.12.org/Blowfish.xs Crypt-Blowfish-2.12/Blowfish.xs
---- Crypt-Blowfish-2.12.org/Blowfish.xs 2000-11-30 09:25:21.000000000 +0300
-+++ Crypt-Blowfish-2.12/Blowfish.xs 2013-05-20 15:31:52.481940353 +0400
-@@ -63,8 +63,7 @@
- output = sv_newmortal();
- output_len = 8;
-
-- if (!SvUPGRADE(output, SVt_PV))
-- croak("cannot use output argument as lvalue");
-+ SvUPGRADE(output, SVt_PV);
-
- /* blowfish_crypt_8bytes(input, SvGROW(output, 8), ks, dir); */
- /* HP-UX (HP cc) fix below, thanks Addi! */