summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorlberrymage2020-07-16 10:43:53 -0800
committerlberrymage2020-07-16 10:43:53 -0800
commitbbad282a1e77b7d97279aba0a67d081be07057c1 (patch)
treea45dd133573794d18b0ff10fbbbe7f4c69ec980e
parentefee4813f3750d4900ab2c858dc1511ab2aae103 (diff)
downloadaur-bbad282a1e77b7d97279aba0a67d081be07057c1.tar.gz
Require Python2 instead of Python 3
Responder version 3.0.0.0 supposedly added Python 3 support, but basic testing shows many bugs still exist when running it with Python 3. The package upgrade to 3.0.0.0 didn't even run the program with Python 3 because the shell script wasn't changed (my bad), so users probably didn't experience breakage unless they didn't have the python2 package installed. I will do more vigorous testing with upstream responder before I upgrade the Python dependency to version 3. For now, it runs fine on Python 2.
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD4
2 files changed, 4 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 9d8636352cad..189dfa1988b3 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,12 +1,12 @@
pkgbase = responder
pkgdesc = A LLMNR, NBT-NS and MDNS poisoner, with built-in HTTP/SMB/MSSQL/FTP/LDAP rogue authentication server supporting NTLMv1/NTLMv2/LMv2, Extended Security NTLMSSP and Basic HTTP authentication
pkgver = 3.0.0.0
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/lgandx/responder/
arch = any
license = GPL3
makedepends = git
- depends = python
+ depends = python2
source = https://github.com/lgandx/responder/archive/v3.0.0.0.tar.gz
source = responder.sh
source = responder.patch
diff --git a/PKGBUILD b/PKGBUILD
index bc522a5f4949..5497b625ee7e 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,10 +4,10 @@
_pkgname=Responder
pkgname=responder
pkgver=3.0.0.0
-pkgrel=1
+pkgrel=2
pkgdesc='A LLMNR, NBT-NS and MDNS poisoner, with built-in HTTP/SMB/MSSQL/FTP/LDAP rogue authentication server supporting NTLMv1/NTLMv2/LMv2, Extended Security NTLMSSP and Basic HTTP authentication'
arch=('any')
-depends=('python')
+depends=('python2')
makedepends=('git')
url='https://github.com/lgandx/responder/'
license=('GPL3')