aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2019-10-31 09:01:54 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2019-11-05 15:33:59 +0000
commit4faa6bbf8cfd887e0216185e0f5fd38b69de7c86 (patch)
tree3c667018b9ec29d445c956263a4ad3c85a4c75f7
parentac1b160f8c108cf4e7c3dab2adfc2dcedd1e5fdd (diff)
community/volume_key: rebuild atainst python 3.8
we need to explicitly disable python2 with --without-python
-rw-r--r--community/volume_key/APKBUILD6
1 files changed, 4 insertions, 2 deletions
diff --git a/community/volume_key/APKBUILD b/community/volume_key/APKBUILD
index 7dc806a5302..6caaebbc5dd 100644
--- a/community/volume_key/APKBUILD
+++ b/community/volume_key/APKBUILD
@@ -2,7 +2,7 @@
# Maintainer: Rasmus Thomsen <oss@cogitri.dev>
pkgname=volume_key
pkgver=0.3.12
-pkgrel=0
+pkgrel=1
pkgdesc="Library for manipulating storage volume encryption keys"
url="https://pagure.io/volume_key"
arch="all"
@@ -19,7 +19,9 @@ build() {
--prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
- --localstatedir=/var
+ --localstatedir=/var \
+ --without-python \
+ --with-python3
make
}