diff options
author | Francesco Colista <fcolista@alpinelinux.org> | 2019-04-04 13:04:43 +0000 |
---|---|---|
committer | Francesco Colista <fcolista@alpinelinux.org> | 2019-04-04 13:04:43 +0000 |
commit | a2d50894b15e9e2dfabb2a7d13e8628188d72ba7 (patch) | |
tree | 504c6eb654fd0b05446b95b377c28c27f721cb43 /testing/barman | |
parent | a106e23d44b0049aab02244d90b82f32523d573c (diff) | |
download | aports-a2d50894b15e9e2dfabb2a7d13e8628188d72ba7.tar.bz2 aports-a2d50894b15e9e2dfabb2a7d13e8628188d72ba7.tar.xz |
testing/barman: upgrade to 2.7. Uses python3 now
Diffstat (limited to 'testing/barman')
-rw-r--r-- | testing/barman/APKBUILD | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/testing/barman/APKBUILD b/testing/barman/APKBUILD index 6ee279694f..0ac9eceed3 100644 --- a/testing/barman/APKBUILD +++ b/testing/barman/APKBUILD @@ -1,30 +1,30 @@ # Contributor: Francesco Colista <fcolista@alpinelinux.org> # Maintainer: Francesco Colista <fcolista@alpinelinux.org> pkgname=barman -pkgver=2.4 +pkgver=2.7 pkgrel=0 pkgdesc="Backup and recovery manager for PostgreSQL" url="http://www.pgbarman.org" arch="noarch" license="GPL" -depends="python2 rsync py2-argcomplete py2-dateutil py2-psycopg2 py-argh" +depends="python3 rsync py3-argcomplete py3-dateutil py3-psycopg2 py3-argh" subpackages="$pkgname-doc" source="https://sourceforge.net/projects/pgbarman/files/${pkgver}/barman-${pkgver}.tar.gz" builddir="$srcdir/$pkgname-$pkgver" build() { cd "$builddir" - python2 setup.py build + python3 setup.py build } check() { cd "$builddir" - python2 setup.py check + python3 setup.py check } package() { cd "$builddir" - python2 setup.py install --prefix=/usr --root="$pkgdir" + python3 setup.py install --prefix=/usr --root="$pkgdir" } -sha512sums="ef316de7cae7f41d95894892b260e1cc67f62866c6feaf03acd96391ab07d9eb27ea7fd6cb472743cbd56658dde24718ac0892ba2280706098f4bdd14b5674d1 barman-2.4.tar.gz" +sha512sums="5a7987b728e6694212d50e4326c47bd6d4fa8bb68fdeba7d3130cf2c21903b8ee826388e2d59cf0688e4e1048a7185664ef4f7bad257f909f00b045896acf12c barman-2.7.tar.gz" |