diff options
author | Anatol Pomozov | 2016-01-30 10:52:06 -0800 |
---|---|---|
committer | Anatol Pomozov | 2016-01-30 10:52:06 -0800 |
commit | 83c664a925cd390aefaeae4e8d1171e44241abb8 (patch) | |
tree | 32fb25d3bfd0d30228ac7692c4b88adc59365754 | |
parent | 55b14a7b5578f54d10f5431346bcf4fe0c70bd8b (diff) | |
download | aur-83c664a925cd390aefaeae4e8d1171e44241abb8.tar.gz |
Add patch with perl 5.22 support
-rw-r--r-- | .SRCINFO | 8 | ||||
-rw-r--r-- | PKGBUILD | 11 |
2 files changed, 13 insertions, 6 deletions
@@ -1,12 +1,14 @@ +# Generated by mksrcinfo v8 +# Sat Jan 30 18:51:57 UTC 2016 pkgbase = mod_perl pkgdesc = Apache module that embeds the Perl interpreter within the server pkgver = 2.0.9 - pkgrel = 3 + pkgrel = 4 url = http://perl.apache.org/ arch = i686 arch = x86_64 license = APACHE - depends = perl<5.22 + depends = perl depends = apache depends = db depends = apr-util @@ -15,9 +17,11 @@ pkgbase = mod_perl source = http://apache.org/dist/perl/mod_perl-2.0.9.tar.gz source = http://apache.org/dist/perl/mod_perl-2.0.9.tar.gz.asc source = undefined_symbol.patch::http://pkgs.fedoraproject.org/cgit/mod_perl.git/plain/mod_perl-2.0.4-inline.patch?h=f22 + source = perl_522.patch::https://github.com/apache/mod_perl/commit/82827132efd3c2e25cc413c85af61bb63375da6e.patch sha256sums = 0260f26ab771c1c95fadc67544b3400e420bb30b8a77565d2d02ad05498ef52b sha256sums = SKIP sha256sums = 08cd008e25d3eee44f477c744f50e574e2cb9853556d268ba06e8b3cb33341e4 + sha256sums = df0f379bab70f69c2b7ef5f68dd0ceda1861920bc7570e5d9c553d609b58e403 pkgname = mod_perl @@ -5,24 +5,27 @@ pkgname=mod_perl pkgver=2.0.9 -pkgrel=3 +pkgrel=4 pkgdesc='Apache module that embeds the Perl interpreter within the server' arch=(i686 x86_64) url='http://perl.apache.org/' license=(APACHE) -depends=('perl<5.22' apache db apr-util perl-linux-pid) +depends=(perl apache db apr-util perl-linux-pid) options=(!emptydirs) source=(http://apache.org/dist/perl/mod_perl-2.0.9.tar.gz{,.asc} - undefined_symbol.patch::http://pkgs.fedoraproject.org/cgit/mod_perl.git/plain/mod_perl-2.0.4-inline.patch?h=f22) + undefined_symbol.patch::http://pkgs.fedoraproject.org/cgit/mod_perl.git/plain/mod_perl-2.0.4-inline.patch?h=f22 + perl_522.patch::https://github.com/apache/mod_perl/commit/82827132efd3c2e25cc413c85af61bb63375da6e.patch) validpgpkeys=(2026E6A4A6A4483E61BA6F3FAB34BA0040E92ECE) sha256sums=('0260f26ab771c1c95fadc67544b3400e420bb30b8a77565d2d02ad05498ef52b' 'SKIP' - '08cd008e25d3eee44f477c744f50e574e2cb9853556d268ba06e8b3cb33341e4') + '08cd008e25d3eee44f477c744f50e574e2cb9853556d268ba06e8b3cb33341e4' + 'df0f379bab70f69c2b7ef5f68dd0ceda1861920bc7570e5d9c553d609b58e403') prepare() { cd mod_perl-$pkgver # FS#45392 patch -p1 < ../undefined_symbol.patch + patch -p1 < ../perl_522.patch } build() { |