sqlmap: 1.3 -> 1.4.6; now depends on python3 instead of python

This commit is contained in:
Tim Biermann 2020-07-01 14:07:58 +00:00
parent b08bd53dd0
commit 41355358e0
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 787 additions and 656 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF32a3behARk4E4pPddWxa1zFm+32A7Fh+Ze6tKSl5IR5oxVYEa0LxvLQaS34y3Rv3lJt/xlOeaKRMb75EPWUBvws=
SHA256 (Pkgfile) = 71301ae4fa275b44406a123b9ea08bb89de2b5a8c4bc4778a6f00b8bdbf0dceb
SHA256 (.footprint) = e8cbaeda6176c94cccfa498bd5af6b065ef5d51543668c907050a466a0aa1b06
SHA256 (sqlmap-1.3.tar.gz) = 7ea4684e01956e411960a5fd8a6d5b74b3f5972c2a3c6553fbd1e729819190ff
RWSagIOpLGJF321f4cdYyFNIyJ9lNWYtEBSmnsm4wdfI4HrKnLuyEZBpWk/DAgf6wgxF9CCtXtofeFBxBLNhAbJ7+5lQ4tWb0gI=
SHA256 (Pkgfile) = fa87e224f99ad90ea8896233aa4cde66278ca7c166c11155424f9b4f717fbf31
SHA256 (.footprint) = acde5948d1c96c5b71a9ce793cd9f08a157585e53e790035a6eadc62a77eab65
SHA256 (sqlmap-1.4.6.tar.gz) = d4ca1b529942c61243759727ec41f43dff19880ed63fca6b10df34f5b71579e6

View File

@ -1,21 +1,21 @@
# Description: automate the process of exploiting SQL injection flaws
# URL: http://sqlmap.org
# Maintainer: Thomas Penteker, tek at serverop dot de
# Depends on: python
# Depends on: python3
name=sqlmap
version=1.3
version=1.4.6
release=1
source=(https://github.com/sqlmapproject/sqlmap/archive/$version/$name-$version.tar.gz)
build() {
find $name-$version -name README\* -delete
install -d $PKG/usr/share $PKG/usr/bin
cp -r $name-$version $PKG/usr/share/sqlmap
ln -s /usr/share/sqlmap/sqlmap.py $PKG/usr/bin/sqlmap
/usr/bin/python -mcompileall $PKG
/usr/bin/python3 -mcompileall $PKG
rm -r $PKG/usr/share/sqlmap/doc
}