Skip to content

Commit f4c078f

Browse files
authored
responder: fix missing dependency (#4534)
* responder: fix missing dependency * Update PKGBUILD * Update to-release * Update PKGBUILD
1 parent a816ace commit f4c078f

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

lists/to-release

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
responder

packages/responder/PKGBUILD

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,25 +3,30 @@
33

44
pkgname=responder
55
pkgver=v3.1.6.0.r2.g398a1fc
6-
pkgrel=1
6+
pkgrel=2
77
epoch=4
88
pkgdesc='A LLMNR and NBT-NS poisoner, with built-in HTTP/SMB/MSSQL/FTP/LDAP rogue authentication server supporting NTLMv1/NTLMv2/LMv2 (multirelay version).'
99
groups=('blackarch' 'blackarch-scanner' 'blackarch-fuzzer' 'blackarch-spoof'
1010
'blackarch-networking')
1111
arch=('any')
12-
depends=('impacket' 'mingw-w64-gcc' 'python' 'python-cryptography'
13-
'python-pycryptodome' 'python-netifaces')
12+
depends=('impacket' 'mingw-w64-gcc' 'python' 'python-aioquic'
13+
'python-cryptography' 'python-pycryptodome' 'python-netifaces')
1414
makedepends=('git')
1515
url='https://github.com/lgandx/Responder'
16-
license=('GPL3')
16+
license=('GPL-3.0-or-later')
1717
source=("$pkgname::git+https://github.com/lgandx/Responder.git")
1818
sha512sums=('SKIP')
1919
install="$pkgname.install"
2020

2121
pkgver() {
2222
cd $pkgname
2323

24-
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
24+
( set -o pipefail
25+
git describe --long --tags --abbrev=7 2>/dev/null |
26+
sed 's/\([^-]*-g\)/r\1/;s/-/./g' ||
27+
printf "%s.%s" "$(git rev-list --count HEAD)" \
28+
"$(git rev-parse --short=7 HEAD)"
29+
)
2530
}
2631

2732
build() {

0 commit comments

Comments
 (0)