sqlmap: v1.2.3 bump

This commit is contained in:
blshkv 2018-03-07 12:12:30 +08:00
parent 94679ca387
commit fa6827aee5
No known key found for this signature in database
GPG key ID: 273E3E90D1A6294F
3 changed files with 1 additions and 49 deletions

View file

@ -1,2 +1 @@
DIST sqlmap-1.1.12.tar.gz 7411646 SHA256 79ae71ed4161b85d3dd6b320a6c93977c7a832e934b30fceb5bc4c0a0323e5b3 SHA512 d75a38643eec04232f7dc158b2d925f011851d6d96ef80345a7a1bf505ba7230ba75ba4353beebd5add1526d9df4f64e1d05de49d91731e984dbcc5bee9dd25f WHIRLPOOL 89bc1f3a412d0da40ada5f1b767af724d34ef557e5e1b2daea245db3b53f92dd59baece30a1dd76fcb3a3ddd1cfd65c6daa52bf88b92d86da03265cd90ae0bb1
DIST sqlmap-1.2.2.tar.gz 7411523 SHA256 f31104a068b56625d5ed52f154b604f447f08d6e9271e39d1502cb791b4d5462 SHA512 11defa0c11d0bf172ae2e5895e9c1e71c0b6d30f0db9800d25ef7556018c56853cd30c3745d33767cac6ae8147701418796fbc7e4b8f517b390478bd8aa7cf01 WHIRLPOOL 0164802894c7ef7784090f28b88c38b103548c2abb4a2fbe83245d161055343b538c3ed9e04238c50499f7fb1ab88eb4ce0445cb736cef581c81c69154d4b892
DIST sqlmap-1.2.3.tar.gz 7415074 BLAKE2B a255080ae4707dffc4716f0fc5a056ebea2d8436c93e742e62eeb36b38a53d56d040861a6fd5771e8df0206f7a611116b4562b650313501006892d546272812e SHA512 29b13f72702919f61156b2d3e8604298425ff9e4cd8c0557c74b8f32c4e5deb3af62a10343ed9ef6baf1baec4103a2613dc883312114321848ce0b2e90832e88

View file

@ -1,47 +0,0 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python2_7 )
inherit python-single-r1
DESCRIPTION="Automatic SQL injection and database takeover tool "
HOMEPAGE="http://sqlmap.org"
SRC_URI="https://github.com/sqlmapproject/sqlmap/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="ntlm"
DEPEND=""
RDEPEND="ntlm? ( dev-python/python-ntlm[${PYTHON_USEDEP}] )"
QA_PREBUILT="
usr/share/${PN}/udf/mysql/linux/32/lib_mysqludf_sys.so
usr/share/${PN}/udf/mysql/linux/64/lib_mysqludf_sys.so
usr/share/${PN}/udf/postgresql/linux/32/8.2/lib_postgresqludf_sys.so
usr/share/${PN}/udf/postgresql/linux/32/8.3/lib_postgresqludf_sys.so
usr/share/${PN}/udf/postgresql/linux/32/8.4/lib_postgresqludf_sys.so
usr/share/${PN}/udf/postgresql/linux/32/9.0/lib_postgresqludf_sys.so
usr/share/${PN}/udf/postgresql/linux/32/9.1/lib_postgresqludf_sys.so
usr/share/${PN}/udf/postgresql/linux/64/8.2/lib_postgresqludf_sys.so
usr/share/${PN}/udf/postgresql/linux/64/8.3/lib_postgresqludf_sys.so
usr/share/${PN}/udf/postgresql/linux/64/8.4/lib_postgresqludf_sys.so
usr/share/${PN}/udf/postgresql/linux/64/9.0/lib_postgresqludf_sys.so"
src_install() {
# fix broken tarball
#find ./ -name .git | xargs rm -rf
# Don't forget to disable the revision check since we removed the SVN files
#sed -i -e 's/= getRevisionNumber()/= "Unknown revision"/' lib/core/settings.py
dodoc -r doc/*
rm -rf doc/
dodir /usr/share/${PN}/
cp -R * "${ED}"/usr/share/${PN}/
python_fix_shebang "${ED}"/usr/share/${PN}
dosym "${EPREFIX}"/usr/share/${PN}/sqlmap.py /usr/bin/${PN}
}