diff options
| -rw-r--r-- | .SRCINFO | 15 | ||||
| -rw-r--r-- | PKGBUILD | 25 |
2 files changed, 21 insertions, 19 deletions
| @@ -1,8 +1,8 @@ | |||
| 1 | pkgbase = wapiti | 1 | pkgbase = wapiti |
| 2 | pkgdesc = A comprehensive web app vulnerability scanner written in Python | 2 | pkgdesc = A comprehensive web app vulnerability scanner written in Python |
| 3 | pkgver = 3.0.5 | 3 | pkgver = 3.0.8 |
| 4 | pkgrel = 1 | 4 | pkgrel = 1 |
| 5 | url = http://wapiti.sourceforge.net | 5 | url = https://wapiti.sourceforge.net |
| 6 | changelog = ChangeLog | 6 | changelog = ChangeLog |
| 7 | arch = any | 7 | arch = any |
| 8 | license = GPL | 8 | license = GPL |
| @@ -11,18 +11,19 @@ pkgbase = wapiti | |||
| 11 | depends = python-requests | 11 | depends = python-requests |
| 12 | depends = python-beautifulsoup4 | 12 | depends = python-beautifulsoup4 |
| 13 | depends = python-lxml | 13 | depends = python-lxml |
| 14 | depends = python-tld | ||
| 15 | depends = python-yaswfp | 14 | depends = python-yaswfp |
| 15 | depends = python-browser-cookie3 | ||
| 16 | depends = python-mako | 16 | depends = python-mako |
| 17 | depends = python-python_socks | 17 | depends = python-python_socks |
| 18 | depends = python-browser-cookie3 | 18 | depends = python-tld |
| 19 | depends = python-httpx | 19 | depends = python-httpx |
| 20 | depends = python-httpx-socks | 20 | depends = python-httpx-socks |
| 21 | depends = python-aiocache | ||
| 22 | depends = python-sqlalchemy | ||
| 21 | optdepends = python-requests-kerberos: Kerberos authentication | 23 | optdepends = python-requests-kerberos: Kerberos authentication |
| 22 | optdepends = python-requests-ntlm: NTLM authentication | 24 | optdepends = python-requests-ntlm: NTLM authentication |
| 23 | options = zipman | 25 | options = zipman |
| 24 | source = http://downloads.sourceforge.net/sourceforge/wapiti/wapiti/wapiti-3.0.5/wapiti3-3.0.5.tar.gz | 26 | source = https://downloads.sourceforge.net/sourceforge/wapiti/wapiti/wapiti-3.0.8/wapiti3-3.0.8.tar.gz |
| 25 | sha256sums = e039a593d033f58d7293173c2d4c4565b38fbb7c63fda3278a9dcb978e399d49 | 27 | sha256sums = 110d825ec7c2ba6a063398d63c1939d893f219fee6b5444c643f4b1cd9c71441 |
| 26 | 28 | ||
| 27 | pkgname = wapiti | 29 | pkgname = wapiti |
| 28 | |||
| @@ -4,40 +4,41 @@ | |||
| 4 | 4 | ||
| 5 | pkgname=wapiti | 5 | pkgname=wapiti |
| 6 | 6 | ||
| 7 | pkgver=3.0.5 | 7 | pkgver=3.0.8 |
| 8 | pkgrel=1 | 8 | pkgrel=1 |
| 9 | 9 | ||
| 10 | pkgdesc='A comprehensive web app vulnerability scanner written in Python' | 10 | pkgdesc='A comprehensive web app vulnerability scanner written in Python' |
| 11 | arch=('any') | 11 | arch=('any') |
| 12 | url="http://$pkgname.sourceforge.net" | 12 | url="https://$pkgname.sourceforge.net" |
| 13 | license=('GPL') | 13 | license=('GPL') |
| 14 | 14 | ||
| 15 | makedepends=('python-setuptools' 'python-pip') | 15 | makedepends=('python-setuptools' 'python-pip') |
| 16 | depends=('python-requests' 'python-beautifulsoup4' 'python-lxml' 'python-tld' 'python-yaswfp' | 16 | depends=('python-requests' 'python-beautifulsoup4' 'python-lxml' 'python-yaswfp' 'python-browser-cookie3' |
| 17 | 'python-mako' 'python-python_socks' 'python-browser-cookie3' 'python-httpx' 'python-httpx-socks') | 17 | 'python-mako' 'python-python_socks' 'python-tld' 'python-httpx' 'python-httpx-socks' |
| 18 | 'python-aiocache' 'python-sqlalchemy') | ||
| 18 | optdepends=('python-requests-kerberos: Kerberos authentication' | 19 | optdepends=('python-requests-kerberos: Kerberos authentication' |
| 19 | 'python-requests-ntlm: NTLM authentication') | 20 | 'python-requests-ntlm: NTLM authentication') |
| 20 | 21 | ||
| 21 | options=('zipman') | 22 | options=('zipman') |
| 22 | 23 | ||
| 23 | changelog=ChangeLog | 24 | changelog=ChangeLog |
| 24 | source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname/$pkgname-$pkgver/$pkgname${pkgver:0:1}-$pkgver.tar.gz") | 25 | source=("https://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname/$pkgname-$pkgver/$pkgname${pkgver:0:1}-$pkgver.tar.gz") |
| 25 | sha256sums=('e039a593d033f58d7293173c2d4c4565b38fbb7c63fda3278a9dcb978e399d49') | 26 | sha256sums=('110d825ec7c2ba6a063398d63c1939d893f219fee6b5444c643f4b1cd9c71441') |
| 26 | 27 | ||
| 27 | 28 | ||
| 28 | prepare() { | 29 | prepare() { |
| 29 | rm -rf "$pkgname${pkgver:0:1}-$pkgver/tests" | 30 | rm -rf "$pkgname${pkgver:0:1}-$pkgver/tests" |
| 30 | } | 31 | } |
| 31 | 32 | ||
| 32 | build() { | 33 | build() { |
| 33 | cd "$pkgname${pkgver:0:1}-$pkgver" | 34 | cd "$pkgname${pkgver:0:1}-$pkgver" |
| 34 | python setup.py build | 35 | python setup.py build |
| 35 | } | 36 | } |
| 36 | 37 | ||
| 37 | package() { | 38 | package() { |
| 38 | cd "$pkgname${pkgver:0:1}-$pkgver" | 39 | cd "$pkgname${pkgver:0:1}-$pkgver" |
| 39 | PYTHONHASHSEED=0 python setup.py install --root="$pkgdir" --optimize=1 --skip-build | 40 | PYTHONHASHSEED=0 python setup.py install --root="$pkgdir" --optimize=1 --skip-build |
| 40 | } | 41 | } |
| 41 | 42 | ||
| 42 | 43 | ||
| 43 | # vim: ts=4 sw=4 et ft=PKGBUILD: | 44 | # vim: ts=2 sw=2 et ft=PKGBUILD: |
