summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMantas Mikulėnas2023-01-02 10:24:59 +0200
committerMantas Mikulėnas2023-01-02 10:24:59 +0200
commit12e53d4e1f0eb41e93b2388a2fd2f5cbe2af9396 (patch)
treec74ae65484a32d3ae805f13b9f8f529f96cae037
parent3411626c41e16bd995a3d1a9710d8af0af098f07 (diff)
downloadaur-12e53d4e1f0eb41e93b2388a2fd2f5cbe2af9396.tar.gz
build with python3 only
-rw-r--r--.SRCINFO6
-rw-r--r--PKGBUILD8
2 files changed, 7 insertions, 7 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 73e6aa2c579f..09d4ef6631ca 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,11 +1,11 @@
pkgbase = botan1.10
- pkgdesc = Obsolete branch of a crypto library written in C++ - for Monotone
+ pkgdesc = Obsolete branch of the Botan crypto library for Monotone
pkgver = 1.10.17
- pkgrel = 2
+ pkgrel = 3
url = http://botan.randombit.net/
arch = x86_64
license = BSD
- makedepends = python2
+ makedepends = python
depends = gcc-libs
depends = sh
source = https://botan.randombit.net/releases/old/Botan-1.10.17.tgz
diff --git a/PKGBUILD b/PKGBUILD
index 623fc4ce2f5a..49541cfa3e64 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,13 +4,13 @@
pkgname=botan1.10
pkgver=1.10.17
-pkgrel=2
-pkgdesc='Obsolete branch of a crypto library written in C++ - for Monotone'
+pkgrel=3
+pkgdesc='Obsolete branch of the Botan crypto library for Monotone'
license=('BSD')
arch=('x86_64')
url='http://botan.randombit.net/'
depends=('gcc-libs' 'sh')
-makedepends=('python2')
+makedepends=('python')
source=("https://botan.randombit.net/releases/old/Botan-${pkgver}.tgz"{,.asc}
"sphinx-python3.diff")
sha512sums=('a47cab3af113652247c8efc8b0f043eb62175eaa8554833d5fc3016ea94dbdd8aa722ab9b5226cc5f133afbcc088d54362111630eaa4594812c39925cc3c8649'
@@ -27,7 +27,7 @@ prepare() {
build() {
cd "Botan-$pkgver"
- python2 configure.py --prefix=/usr --enable-modules=cvc
+ python configure.py --prefix=/usr --enable-modules=cvc
make
}