diff options
author | Leo <thinkabit.ukim@gmail.com> | 2019-09-13 20:54:54 -0300 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2019-09-13 22:39:29 -0300 |
commit | 6c729f5710119534d3839bc383cc15b76bd861e3 (patch) | |
tree | 998c48867ede33a8382caf5d2b6b79c3112b9d88 | |
parent | f8ee143fba5f174cb2531cdfcdc32058f09ab61f (diff) | |
download | aports-6c729f5710119534d3839bc383cc15b76bd861e3.tar.bz2 aports-6c729f5710119534d3839bc383cc15b76bd861e3.tar.xz |
testing/opensmtpd-extras: drop table-python
-rw-r--r-- | testing/opensmtpd-extras/APKBUILD | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/testing/opensmtpd-extras/APKBUILD b/testing/opensmtpd-extras/APKBUILD index b4f8cd461f..778e84d342 100644 --- a/testing/opensmtpd-extras/APKBUILD +++ b/testing/opensmtpd-extras/APKBUILD @@ -2,29 +2,28 @@ # Maintainer: Shiz <hi@shiz.me> pkgname=opensmtpd-extras pkgver=6.4.0 -pkgrel=0 +pkgrel=1 pkgdesc="OpenSMTPD addons" url="https://opensmtpd.org/" arch="all" license="ISC" -depends="" -makedepends="libevent-dev python2-dev mariadb-connector-c-dev postgresql-dev +makedepends="libevent-dev mariadb-connector-c-dev postgresql-dev hiredis-dev sqlite-dev" subpackages="$pkgname-doc" -source="https://www.opensmtpd.org/archives/$pkgname-$pkgver.tar.gz +source="https://www.opensmtpd.org/archives/opensmtpd-extras-$pkgver.tar.gz 0001-uint8_t-is-defined-in-stdint.h-at-least-on-Linux.patch 0002-wrap-stdint.h-in-autoconf-variables.patch remove-decls.patch " -builddir="$srcdir/$pkgname-$pkgver" options="!check" # upstream does not provide tests +replaces="table-python" # removed in 6.4.0-r1 (python2 EOL) + _extras=" table-ldap table-mysql table-passwd table-postgres - table-python table-redis table-socketmap table-sqlite @@ -36,8 +35,6 @@ for _extra in $_extras; do done build() { - cd "$builddir" - local with_extras local extra; for extra in $_extras; do with_extras="$with_extras --with-$extra" @@ -57,8 +54,6 @@ build() { } package() { - cd "$builddir" - make DESTDIR="$pkgdir" install } |