Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/zmap/
Date: Fri, 02 Oct 2020 13:57:23
Message-Id: 1601647029.a020609ad269562f9c1afc6fe4a251b3f3395a0e.juippis@gentoo
1 commit: a020609ad269562f9c1afc6fe4a251b3f3395a0e
2 Author: Jakov Smolic <jakov.smolic <AT> sartura <DOT> hr>
3 AuthorDate: Fri Sep 18 05:22:35 2020 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 2 13:57:09 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a020609a
7
8 net-analyzer/zmap: drop 2.1.1-r1
9
10 Package-Manager: Portage-3.0.4, Repoman-3.0.1
11 Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr>
12 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
13
14 net-analyzer/zmap/zmap-2.1.1-r1.ebuild | 45 ----------------------------------
15 1 file changed, 45 deletions(-)
16
17 diff --git a/net-analyzer/zmap/zmap-2.1.1-r1.ebuild b/net-analyzer/zmap/zmap-2.1.1-r1.ebuild
18 deleted file mode 100644
19 index dac6ede5634..00000000000
20 --- a/net-analyzer/zmap/zmap-2.1.1-r1.ebuild
21 +++ /dev/null
22 @@ -1,45 +0,0 @@
23 -# Copyright 1999-2020 Gentoo Authors
24 -# Distributed under the terms of the GNU General Public License v2
25 -
26 -EAPI=6
27 -
28 -inherit cmake-utils fcaps
29 -
30 -DESCRIPTION="Fast network scanner designed for Internet-wide network surveys"
31 -HOMEPAGE="https://zmap.io/"
32 -SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
33 -
34 -SLOT="0"
35 -LICENSE="Apache-2.0"
36 -KEYWORDS="~amd64 ~arm ~x86"
37 -IUSE="json mongo redis"
38 -
39 -RDEPEND="
40 - dev-libs/gmp:0
41 - net-libs/libpcap
42 - dev-libs/json-c:=
43 - mongo? ( dev-db/mongodb )
44 - redis? ( dev-libs/hiredis )"
45 -DEPEND="${RDEPEND}
46 - dev-util/gengetopt
47 - sys-devel/flex
48 - dev-util/byacc"
49 -
50 -src_prepare() {
51 - sed \
52 - -e '/ggo/s:CMAKE_CURRENT_SOURCE_DIR}:CMAKE_BINARY_DIR}/src:g' \
53 - -i src/CMakeLists.txt || die
54 - cmake-utils_src_prepare
55 -}
56 -
57 -src_configure() {
58 - local mycmakeargs=(
59 - -DENABLE_DEVELOPMENT=OFF
60 - -DWITH_WERROR=OFF
61 - -DWITH_MONGO="$(usex mongo)"
62 - -DWITH_REDIS="$(usex redis)"
63 - )
64 - cmake-utils_src_configure
65 -}
66 -
67 -FILECAPS=( cap_net_raw=ep usr/sbin/zmap )