diff options
author | Bartłomiej Piotrowski <bpiotrowski@alpinelinux.org> | 2013-06-07 10:58:12 +0200 |
---|---|---|
committer | Bartłomiej Piotrowski <bpiotrowski@alpinelinux.org> | 2013-06-07 11:07:30 +0200 |
commit | 01bc02ac4219f539efd2e6ef845b7c69123f1328 (patch) | |
tree | b9f077bc8df433c2db749918c8b8ad2e06a51128 | |
parent | 277eac9a60f3ec9dc504f453d17bfac8a765dc5d (diff) | |
download | aports-01bc02ac4219f539efd2e6ef845b7c69123f1328.tar.bz2 aports-01bc02ac4219f539efd2e6ef845b7c69123f1328.tar.xz |
main/acl: upgrade to 2.2.52
-rw-r--r-- | main/acl/APKBUILD | 13 | ||||
-rw-r--r-- | main/acl/quote-strchr.patch | 25 |
2 files changed, 6 insertions, 32 deletions
diff --git a/main/acl/APKBUILD b/main/acl/APKBUILD index 5e7ceb99e..bed3e6301 100644 --- a/main/acl/APKBUILD +++ b/main/acl/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=acl -pkgver=2.2.51 -pkgrel=3 +pkgver=2.2.52 +pkgrel=0 pkgdesc="Access control list utilities" url="http://acl.bestbits.at/" arch="all" @@ -9,12 +9,10 @@ license="LGPL" depends= makedepends="attr-dev gzip" subpackages="$pkgname-dev $pkgname-doc libacl" -source="http://download.savannah.gnu.org/releases-noredirect/acl/acl-$pkgver.src.tar.gz - quote-strchr.patch" +source="http://download.savannah.gnu.org/releases-noredirect/acl/acl-$pkgver.src.tar.gz" prepare() { cd "$srcdir"/acl-$pkgver - patch -p1 -i "$srcdir"/quote-strchr.patch || return 1 #libtoolize --force && aclocal -I m4 && autoconf && autoheader sed -i \ -e '/^as_dummy=/s:=":="$PATH$PATH_SEPARATOR:' \ @@ -53,5 +51,6 @@ libacl() { mv "$pkgdir"/lib/libacl.so.* "$subpkgdir"/lib/ } -md5sums="3fc0ce99dc5253bdcce4c9cd437bc267 acl-2.2.51.src.tar.gz -1bef4f022a068ebfeb3b5363dc6ce174 quote-strchr.patch" +md5sums="a61415312426e9c2212bd7dc7929abda acl-2.2.52.src.tar.gz" +sha256sums="179074bb0580c06c4b4137be4c5a92a701583277967acdb5546043c7874e0d23 acl-2.2.52.src.tar.gz" +sha512sums="59973199d371cd0b2368e95bc829a1b47f04e808a174fefba4c6854e766158bd19a71d9dbcc8d6fdc1573a1f971cdda39c453f7fa243bce02c1ab97c6e7c72e7 acl-2.2.52.src.tar.gz" diff --git a/main/acl/quote-strchr.patch b/main/acl/quote-strchr.patch deleted file mode 100644 index d2510da24..000000000 --- a/main/acl/quote-strchr.patch +++ /dev/null @@ -1,25 +0,0 @@ -From 7565e4fcb9209782ed02f3caff246cf5ea816674 Mon Sep 17 00:00:00 2001 -From: Mike Frysinger <vapier@gentoo.org> -Date: Fri, 8 Jan 2010 21:28:31 -0500 -Subject: [PATCH] quote: pull in string.h for strchr prototype - -Signed-off-by: Mike Frysinger <vapier@gentoo.org> ---- - libmisc/quote.c | 1 + - 1 files changed, 1 insertions(+), 0 deletions(-) - -diff --git a/libmisc/quote.c b/libmisc/quote.c -index f98c887..bf8f9eb 100644 ---- a/libmisc/quote.c -+++ b/libmisc/quote.c -@@ -20,6 +20,7 @@ - #include <stdio.h> - #include <stdlib.h> - #include <ctype.h> -+#include <string.h> - #include "misc.h" - - const char *quote(const char *str, const char *quote_chars) --- -1.6.6 - |