summaryrefslogtreecommitdiff
path: root/dev-db/sqlmap/sqlmap-1.6.5.ebuild
diff options
context:
space:
mode:
authorMario Haustein <mario.haustein@hrz.tu-chemnitz.de>2022-08-04 23:06:59 +0200
committerSam James <sam@gentoo.org>2022-08-23 06:32:35 +0100
commitca919af5fb38fb03f2cf5a0c9e2dff264eb62a0d (patch)
treeb2aea920278ab8222c9df2261911e1512db52cba /dev-db/sqlmap/sqlmap-1.6.5.ebuild
parent13ce485f26c4131b2ef7ac06f25493ed9c7d8fb5 (diff)
downloadgentoo-ca919af5fb38fb03f2cf5a0c9e2dff264eb62a0d.tar.gz
gentoo-ca919af5fb38fb03f2cf5a0c9e2dff264eb62a0d.tar.bz2
gentoo-ca919af5fb38fb03f2cf5a0c9e2dff264eb62a0d.zip
dev-db/sqlmap: drop 1.6.5
Signed-off-by: Mario Haustein <mario.haustein@hrz.tu-chemnitz.de> Closes: https://github.com/gentoo/gentoo/pull/26740 Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-db/sqlmap/sqlmap-1.6.5.ebuild')
-rw-r--r--dev-db/sqlmap/sqlmap-1.6.5.ebuild60
1 files changed, 0 insertions, 60 deletions
diff --git a/dev-db/sqlmap/sqlmap-1.6.5.ebuild b/dev-db/sqlmap/sqlmap-1.6.5.ebuild
deleted file mode 100644
index a1ffe637309f..000000000000
--- a/dev-db/sqlmap/sqlmap-1.6.5.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..11} )
-PYTHON_REQ_USE="sqlite"
-
-inherit bash-completion-r1 python-single-r1 wrapper
-
-DESCRIPTION="An automatic SQL injection and database takeover tool"
-HOMEPAGE="https://sqlmap.org/"
-
-if [[ ${PV} == 9999 ]] ; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/sqlmapproject/sqlmap"
-else
- SRC_URI="https://github.com/sqlmapproject/sqlmap/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="amd64 x86"
-fi
-
-# sqlmap (GPL-2+)
-# ansitrm (BSD)
-# beautifulsoup (BSD)
-# bottle (MIT)
-# chardet (LGPL-2.1+)
-# clientform (BSD)
-# colorama (BSD)
-# fcrypt (BSD-2)
-# identitywaf (MIT)
-# keepalive (LGPL-2.1+)
-# magic (MIT)
-# multipartpost (LGPL-2.1+)
-# ordereddict (MIT)
-# prettyprint (BSD-2)
-# pydes (public-domain)
-# six (MIT)
-# socks (BSD)
-# termcolor (BSD)
-# wininetpton (public-domain)
-LICENSE="BSD BSD-2 GPL-2+ LGPL-2.1+ MIT public-domain"
-SLOT="0"
-
-RDEPEND="${PYTHON_DEPS}"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-DOCS=( doc/ README.md )
-
-src_install () {
- einstalldocs
-
- insinto /usr/share/${PN}/
- doins -r *
- python_optimize "${ED}"/usr/share/${PN}
-
- make_wrapper ${PN} \
- "${EPYTHON} ${EPREFIX}/usr/share/${PN}/sqlmap.py"
-
- newbashcomp "${FILESDIR}"/sqlmap.bash-completion sqlmap
-}