Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/sqlmap/
Date: Sun, 19 Mar 2023 03:23:01
Message-Id: 1679195532.9aa54adc6029db6e05d9bd786fa58f4f9363256d.sam@gentoo
1 commit: 9aa54adc6029db6e05d9bd786fa58f4f9363256d
2 Author: Mario Haustein <mario.haustein <AT> hrz <DOT> tu-chemnitz <DOT> de>
3 AuthorDate: Thu Mar 16 16:59:56 2023 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 19 03:12:12 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9aa54adc
7
8 dev-db/sqlmap: drop 1.7
9
10 Signed-off-by: Mario Haustein <mario.haustein <AT> hrz.tu-chemnitz.de>
11 Closes: https://github.com/gentoo/gentoo/pull/30147
12 Signed-off-by: Sam James <sam <AT> gentoo.org>
13
14 dev-db/sqlmap/Manifest | 1 -
15 dev-db/sqlmap/sqlmap-1.7.ebuild | 60 -----------------------------------------
16 2 files changed, 61 deletions(-)
17
18 diff --git a/dev-db/sqlmap/Manifest b/dev-db/sqlmap/Manifest
19 index f499e42c7123..6b985f05281a 100644
20 --- a/dev-db/sqlmap/Manifest
21 +++ b/dev-db/sqlmap/Manifest
22 @@ -1,3 +1,2 @@
23 DIST sqlmap-1.7.2.gh.tar.gz 7208613 BLAKE2B 69c8f6ba75b884ef13a693857a864df973a7f38f796b3489adea3ef1fbfaf01a2181b0f22af124b8efa22c29d0f988fa3bb1050b33e84aa029bb97a6c2f0e949 SHA512 a26da178ba151d8c34574dee30f4247ec16002b719fbb0ecd56dc074c9806daa81ed0d414421641d98b354663ff1685596c5f276f6e4812dae266dbab84a8286
24 DIST sqlmap-1.7.3.gh.tar.gz 7210615 BLAKE2B b20f95f8426a0ac1f4cbd09974bac5132b97b19227be036c2d290e121084e3841d80771834631cb2120f5968541e05ce9496abf317f208c759bd9bc8af396a9d SHA512 4e372ec66c104de01324355a5c7383373f9756057381d77ceaabc673c3d9f1e03b7aa253dd14f32f322926ddbd542401fa2ce65c4fc29dd37772901ea58a3813
25 -DIST sqlmap-1.7.gh.tar.gz 7207796 BLAKE2B 5a30cb111b0b6b8c37ff8b9ec37e3724b51b9a41cdd3d75d9665cfc6ceb4c9d11d642714cd327669015309b427184663c0ba248c4158378489bc5e0668a8cb7a SHA512 ca79239eec7b0e72a37de65471787800837b01c9567a8dae617bda5f4dde70c80a0d2e8f38373245bf43cf6feaca19e606dddd482f7c1ca7b18745ca107693f3
26
27 diff --git a/dev-db/sqlmap/sqlmap-1.7.ebuild b/dev-db/sqlmap/sqlmap-1.7.ebuild
28 deleted file mode 100644
29 index ad6dac4b9230..000000000000
30 --- a/dev-db/sqlmap/sqlmap-1.7.ebuild
31 +++ /dev/null
32 @@ -1,60 +0,0 @@
33 -# Copyright 1999-2023 Gentoo Authors
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=8
37 -
38 -PYTHON_COMPAT=( python3_{9..11} )
39 -PYTHON_REQ_USE="sqlite"
40 -
41 -inherit bash-completion-r1 python-single-r1 wrapper
42 -
43 -DESCRIPTION="An automatic SQL injection and database takeover tool"
44 -HOMEPAGE="https://sqlmap.org/"
45 -
46 -if [[ ${PV} == 9999 ]] ; then
47 - inherit git-r3
48 - EGIT_REPO_URI="https://github.com/sqlmapproject/sqlmap"
49 -else
50 - SRC_URI="https://github.com/sqlmapproject/sqlmap/archive/refs/tags/${PV}.tar.gz -> ${P}.gh.tar.gz"
51 - KEYWORDS="amd64 x86"
52 -fi
53 -
54 -# sqlmap (GPL-2+)
55 -# ansitrm (BSD)
56 -# beautifulsoup (BSD)
57 -# bottle (MIT)
58 -# chardet (LGPL-2.1+)
59 -# clientform (BSD)
60 -# colorama (BSD)
61 -# fcrypt (BSD-2)
62 -# identitywaf (MIT)
63 -# keepalive (LGPL-2.1+)
64 -# magic (MIT)
65 -# multipartpost (LGPL-2.1+)
66 -# ordereddict (MIT)
67 -# prettyprint (BSD-2)
68 -# pydes (public-domain)
69 -# six (MIT)
70 -# socks (BSD)
71 -# termcolor (BSD)
72 -# wininetpton (public-domain)
73 -LICENSE="BSD BSD-2 GPL-2+ LGPL-2.1+ MIT public-domain"
74 -SLOT="0"
75 -
76 -RDEPEND="${PYTHON_DEPS}"
77 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
78 -
79 -DOCS=( doc/ README.md )
80 -
81 -src_install () {
82 - einstalldocs
83 -
84 - insinto /usr/share/${PN}/
85 - doins -r *
86 - python_optimize "${ED}"/usr/share/${PN}
87 -
88 - make_wrapper ${PN} \
89 - "${EPYTHON} ${EPREFIX}/usr/share/${PN}/sqlmap.py"
90 -
91 - newbashcomp "${FILESDIR}"/sqlmap.bash-completion sqlmap
92 -}