summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorLingMan2024-02-10 19:56:51 +0100
committerLingMan2024-02-10 19:56:51 +0100
commit0aec200309551b3d4545dcea6caa6a6ebae78d99 (patch)
tree217e4fac074e4a139960a5ecc69a33c1b5a495a7
parent5cbb73b04dbdb1baaab1f37966795e25047bfde2 (diff)
downloadaur-python2-twisted.tar.gz
Drop explicit `--prefix`
Not needed and it apparently breaks some usecase involving non-root prefixes.
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD4
2 files changed, 3 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index d52798e89510..a3fdfb35d770 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = python2-twisted
pkgdesc = Asynchronous networking framework written in Python (20.3.0 is the last version supporting Python 2)
pkgver = 20.3.0
- pkgrel = 5
+ pkgrel = 6
url = https://twistedmatrix.com/
arch = x86_64
license = MIT
diff --git a/PKGBUILD b/PKGBUILD
index d024a38f9019..6eb56eb7d306 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=python2-twisted
# Do not update. This is the last twisted version supporting Python2.
pkgver=20.3.0
-pkgrel=5
+pkgrel=6
pkgdesc="Asynchronous networking framework written in Python (20.3.0 is the last version supporting Python 2)"
arch=('x86_64')
url="https://twistedmatrix.com/"
@@ -37,7 +37,7 @@ build() {
package() {
cd twisted-twisted-$pkgver
- python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+ python2 setup.py install --root="$pkgdir" --optimize=1
# python-twisted already provides these command line tools.
# Let's depend on python-twisted and rename the tools here so we don't conflict.