# Contributor: Maxim Karasev # Maintainer: Patrycja Rosa pkgname=sqlmap pkgver=1.9.9 pkgrel=0 pkgdesc="Automatic SQL injection and database takeover tool" url="https://sqlmap.org/" arch="noarch" license="GPL-2.0-or-later" depends=" py3-beautifulsoup4 py3-bottle py3-chardet py3-colorama py3-keepalive py3-magic py3-pydes py3-six py3-termcolor " makedepends="py3-setuptools py3-gpep517 py3-wheel" subpackages="$pkgname-pyc" source="https://pypi.python.org/packages/source/s/sqlmap/sqlmap-$pkgver.tar.gz reduce-amount-of-third-party-dependencies.patch " options="!check" # fail with py311 for some reason prepare() { default_prepare # remove unneeded thirdparty moduels (keep patch small) cd sqlmap/thirdparty rm -rf chardet bottle beautifulsoup colorama keepalive magic odict \ pydes six termcolor } build() { gpep517 build-wheel \ --wheel-dir .dist \ --output-fd 3 3>&1 >&2 } check() { python3 -m venv --clear --without-pip --system-site-packages .testenv gpep517 install-wheel --destdir .testenv --prefix '' .dist/*.whl .testenv/bin/python3 -m pytest } package() { gpep517 install-wheel --destdir "$pkgdir" \ .dist/*.whl } sha512sums=" 0ecec70a36f545a46c2c450d518fc0a0dcffe0524d38e1336d259aacbfa63a15edb383499efca9b7cdaf4106d05e41a044fa12814b3370ae80fcd432f875b8d9 sqlmap-1.9.9.tar.gz 9befad1a47ca6b876de1e419b4f12d9ac6b9245467d01cfc0c9690997d6d4db02b64b528eec97ffa3a25632a4fae7ebc4c9a371383624cedd33e7a241942526a reduce-amount-of-third-party-dependencies.patch "