diff options
author | Andrew Hills <ahills@ednos.net> | 2015-05-28 09:49:55 -0400 |
---|---|---|
committer | Francesco Colista <fcolista@alpinelinux.org> | 2015-05-28 13:52:43 +0000 |
commit | a04b8ceb2cb031d99b8dbe4224fee967a84a2057 (patch) | |
tree | 8a790bc4335fa9dc53a9711e6300f15191e9c95d /testing/imapfilter/APKBUILD | |
parent | a4b73bf093882479cba2906772d586f7a8c77bd2 (diff) | |
download | aports-a04b8ceb2cb031d99b8dbe4224fee967a84a2057.tar.bz2 aports-a04b8ceb2cb031d99b8dbe4224fee967a84a2057.tar.xz |
testing/imapfilter: patch password prompt flushing
This is a temporary patch, while we wait for this pull request to
be merged upstream: https://github.com/lefcha/imapfilter/pull/92
Diffstat (limited to 'testing/imapfilter/APKBUILD')
-rw-r--r-- | testing/imapfilter/APKBUILD | 23 |
1 files changed, 18 insertions, 5 deletions
diff --git a/testing/imapfilter/APKBUILD b/testing/imapfilter/APKBUILD index 2beb7e234c..956bd9a4a3 100644 --- a/testing/imapfilter/APKBUILD +++ b/testing/imapfilter/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Andrew Hills <ahills@ednos.net> pkgname=imapfilter pkgver=2.5.7 -pkgrel=0 +pkgrel=1 pkgdesc="Lua-based filtering for IMAP mailboxes" url="https://github.com/lefcha/imapfilter" arch="all" @@ -12,10 +12,20 @@ depends_dev= makedepends="$depends_dev lua-dev openssl-dev pcre-dev libc-dev" install= subpackages="$pkgname-doc" -source="saveas-https://github.com/lefcha/$pkgname/archive/v${pkgver}.tar.gz/$pkgname-$pkgver.tar.gz" +source="saveas-https://github.com/lefcha/$pkgname/archive/v${pkgver}.tar.gz/$pkgname-$pkgver.tar.gz + io-flush.patch" _builddir="$srcdir"/$pkgname-$pkgver +prepare() { + local i + cd "$_builddir" + for i in $source; do + case $i in + *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; + esac + done +} build() { cd "$_builddir" @@ -30,6 +40,9 @@ package() { DESTDIR="$pkgdir" \ install } -md5sums="5af01afcca4a24b46f113f36bc3eaef8 imapfilter-2.5.7.tar.gz" -sha256sums="c792d6a3a187cdc14fc38470837b45722a3750dabd2c6f71672806eeef79fad0 imapfilter-2.5.7.tar.gz" -sha512sums="9297e98812312fbf2c92aa5477bdfecb522048e45b4bc4922e312bd89a72b020a98f5547e3f0882ae665c24db21e6995eda839b762947adc48bc413ab0c882f1 imapfilter-2.5.7.tar.gz" +md5sums="5af01afcca4a24b46f113f36bc3eaef8 imapfilter-2.5.7.tar.gz +c005e65cae202f8f6779380996d51ee1 io-flush.patch" +sha256sums="c792d6a3a187cdc14fc38470837b45722a3750dabd2c6f71672806eeef79fad0 imapfilter-2.5.7.tar.gz +14c49fd8ced2a0730a0b21e20e5b2149ad3a65eca55e258d591fef3f06befb59 io-flush.patch" +sha512sums="9297e98812312fbf2c92aa5477bdfecb522048e45b4bc4922e312bd89a72b020a98f5547e3f0882ae665c24db21e6995eda839b762947adc48bc413ab0c882f1 imapfilter-2.5.7.tar.gz +ab11ad7b52f0b56119e6da636bf4c53f09ca9f2fe8a7083fc9af9528ba0d67657b639283a3100868c919b3958c812ae7169d8879af4b7205f43207458e0b8073 io-flush.patch" |