sqlmap: v1.0.12 bump

This commit is contained in:
blshkv 2016-12-20 10:49:54 +08:00
parent fa5e65472a
commit 684e0c0d85
No known key found for this signature in database
GPG key ID: 9CCF6FCB8D8A14BF
3 changed files with 1 additions and 50 deletions

View file

@ -1 +1 @@
DIST sqlmap-1.0.11.tar.gz 6735843 SHA256 9d530182ef9ccc1aee33aaf3d630254a245c76fd1932395452347844237d6a60 SHA512 391dcb042d10eb459d1a65289d21f60860218787bed61f8fd9e0834bb776b6ac19f24904ef8759eb67f2567605507ec8572db32890a8e3a14f78bbc14976b0db WHIRLPOOL 0aed48391834b5fea095fcad304a7fe09ec08ccd10d04f2fffac093b4ad49ffdeb31e669840608e78666b147f1c2c6de1d1506d85a4e9e13a3b6dcd3385548de
DIST sqlmap-1.0.12.tar.gz 6737151 SHA256 f7bfb6fa11d51a8700c4826d3db21ed355f00d66bdbbb0eefeaf9b5a960709d6 SHA512 077836bc24c14755728b09c5eb1ea05fdd556e992d55daeff677b1aacb736de706fb4908468fdc50e8c6d9a6a1515fbeefb28aef9db4711a625bcb70e42ad8cf WHIRLPOOL 9df85ec5b87b47576fc1e646c0a223372c098acf34918bacb6b6054b7dda088a32793bb77270343015cafb88fc95514fd8b1b32173c3aed67698d4bad9cf4e9c

View file

@ -1,49 +0,0 @@
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
PYTHON_COMPAT=( python2_7 )
inherit python-single-r1 git-2
DESCRIPTION="Automatic SQL injection and database takeover tool "
HOMEPAGE="http://sqlmap.org"
EGIT_REPO_URI="https://github.com/sqlmapproject/sqlmap.git"
EGIT_COMMIT="e7aaea2b8eac8680a737416b5df059a4ac9a4630"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="ntlm"
DEPEND=""
RDEPEND="ntlm? ( dev-python/python-ntlm )"
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 /usr/share/${PN}/sqlmap.py /usr/bin/${PN}
}