upgpkg: wfuzz 2.3.4-3
switched to python3
This commit is contained in:
parent
23c4bf0539
commit
18a0988453
2 changed files with 26 additions and 22 deletions
|
@ -1,18 +1,18 @@
|
||||||
pkgbase = wfuzz
|
pkgbase = wfuzz
|
||||||
pkgdesc = Utility to bruteforce web applications to find their not linked resources
|
pkgdesc = Utility to bruteforce web applications to find their not linked resources
|
||||||
pkgver = 2.3.4
|
pkgver = 2.3.4
|
||||||
pkgrel = 2
|
pkgrel = 3
|
||||||
url = https://github.com/xmendez/wfuzz
|
url = https://github.com/xmendez/wfuzz
|
||||||
arch = i686
|
arch = any
|
||||||
arch = x86_64
|
|
||||||
license = GPL
|
license = GPL
|
||||||
depends = python2-pycurl
|
makedepends = python-setuptools
|
||||||
depends = python2-pyparsing
|
depends = python-pycurl
|
||||||
depends = python2-configparser
|
depends = python-pyparsing
|
||||||
depends = python2-future
|
depends = python-future
|
||||||
source = https://github.com/xmendez/wfuzz/archive/v2.3.4.tar.gz
|
source = https://github.com/xmendez/wfuzz/archive/v2.3.4.tar.gz
|
||||||
md5sums = 74817cc7aa14efda785c1727622e4539
|
source = https://github.com/xmendez/wfuzz/pull/117.diff
|
||||||
sha256sums = 87ff36d866cb173389f90cf026136758d3af73079a6199961de12ed86568be51
|
sha256sums = 87ff36d866cb173389f90cf026136758d3af73079a6199961de12ed86568be51
|
||||||
|
sha256sums = d320a192f65b8bce8acd2fa285331ab69ea996cbfe76f3d2563de7ccfe11dd0e
|
||||||
|
|
||||||
pkgname = wfuzz
|
pkgname = wfuzz
|
||||||
|
|
||||||
|
|
|
@ -1,26 +1,30 @@
|
||||||
|
# Maintainer: Cedric Girard <cgirard.archlinux@valinor.fr>
|
||||||
#Contributor: Olivier Le Moal <mail at olivierlemoal dot fr>
|
#Contributor: Olivier Le Moal <mail at olivierlemoal dot fr>
|
||||||
#Maintainer: Dawid Wrobel <cromo@klej.net>
|
#Contributor: Dawid Wrobel <cromo@klej.net>
|
||||||
#Maintainer: Sébastien Duquette <ekse.0x@gmail.com>
|
#Contributor: Sébastien Duquette <ekse.0x@gmail.com>
|
||||||
#Maintainer: onny <onny@project-insanity.org>
|
#Contributor: onny <onny@project-insanity.org>
|
||||||
|
|
||||||
pkgname=wfuzz
|
pkgname=wfuzz
|
||||||
pkgver=2.3.4
|
pkgver=2.3.4
|
||||||
pkgrel=2
|
pkgrel=3
|
||||||
pkgdesc="Utility to bruteforce web applications to find their not linked resources"
|
pkgdesc="Utility to bruteforce web applications to find their not linked resources"
|
||||||
url="https://github.com/xmendez/wfuzz"
|
url="https://github.com/xmendez/wfuzz"
|
||||||
arch=('i686' 'x86_64')
|
arch=('any')
|
||||||
license=('GPL')
|
license=('GPL')
|
||||||
depends=('python2-pycurl' 'python2-pyparsing' 'python2-configparser' 'python2-future')
|
depends=('python-pycurl' 'python-pyparsing' 'python-future')
|
||||||
makedepends=()
|
makedepends=('python-setuptools')
|
||||||
conflicts=()
|
source=("https://github.com/xmendez/wfuzz/archive/v$pkgver.tar.gz"
|
||||||
replaces=()
|
"https://github.com/xmendez/wfuzz/pull/117.diff")
|
||||||
backup=()
|
sha256sums=('87ff36d866cb173389f90cf026136758d3af73079a6199961de12ed86568be51'
|
||||||
source=("https://github.com/xmendez/wfuzz/archive/v$pkgver.tar.gz")
|
'd320a192f65b8bce8acd2fa285331ab69ea996cbfe76f3d2563de7ccfe11dd0e')
|
||||||
md5sums=('74817cc7aa14efda785c1727622e4539')
|
|
||||||
sha256sums=('87ff36d866cb173389f90cf026136758d3af73079a6199961de12ed86568be51')
|
|
||||||
|
|
||||||
|
prepare() {
|
||||||
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
||||||
|
patch -p1 < ../117.diff
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
package() {
|
package() {
|
||||||
cd "${srcdir}/${pkgname}-${pkgver}"
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
||||||
python2 setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
|
python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue