From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8FC0D138359 for ; Fri, 2 Oct 2020 13:57:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 88BB1E096F; Fri, 2 Oct 2020 13:57:22 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 72129E096F for ; Fri, 2 Oct 2020 13:57:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3A54B33E55B for ; Fri, 2 Oct 2020 13:57:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A835C379 for ; Fri, 2 Oct 2020 13:57:19 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1601647029.a020609ad269562f9c1afc6fe4a251b3f3395a0e.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/zmap/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/zmap/zmap-2.1.1-r1.ebuild X-VCS-Directories: net-analyzer/zmap/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: a020609ad269562f9c1afc6fe4a251b3f3395a0e X-VCS-Branch: master Date: Fri, 2 Oct 2020 13:57:19 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 2af64d13-cb74-420e-9a9c-95ae95c6776a X-Archives-Hash: 53cbc7fd028b53e569e17647925bc7a5 commit: a020609ad269562f9c1afc6fe4a251b3f3395a0e Author: Jakov Smolic sartura hr> AuthorDate: Fri Sep 18 05:22:35 2020 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Fri Oct 2 13:57:09 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a020609a net-analyzer/zmap: drop 2.1.1-r1 Package-Manager: Portage-3.0.4, Repoman-3.0.1 Signed-off-by: Jakov Smolic sartura.hr> Signed-off-by: Joonas Niilola gentoo.org> net-analyzer/zmap/zmap-2.1.1-r1.ebuild | 45 ---------------------------------- 1 file changed, 45 deletions(-) diff --git a/net-analyzer/zmap/zmap-2.1.1-r1.ebuild b/net-analyzer/zmap/zmap-2.1.1-r1.ebuild deleted file mode 100644 index dac6ede5634..00000000000 --- a/net-analyzer/zmap/zmap-2.1.1-r1.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils fcaps - -DESCRIPTION="Fast network scanner designed for Internet-wide network surveys" -HOMEPAGE="https://zmap.io/" -SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -SLOT="0" -LICENSE="Apache-2.0" -KEYWORDS="~amd64 ~arm ~x86" -IUSE="json mongo redis" - -RDEPEND=" - dev-libs/gmp:0 - net-libs/libpcap - dev-libs/json-c:= - mongo? ( dev-db/mongodb ) - redis? ( dev-libs/hiredis )" -DEPEND="${RDEPEND} - dev-util/gengetopt - sys-devel/flex - dev-util/byacc" - -src_prepare() { - sed \ - -e '/ggo/s:CMAKE_CURRENT_SOURCE_DIR}:CMAKE_BINARY_DIR}/src:g' \ - -i src/CMakeLists.txt || die - cmake-utils_src_prepare -} - -src_configure() { - local mycmakeargs=( - -DENABLE_DEVELOPMENT=OFF - -DWITH_WERROR=OFF - -DWITH_MONGO="$(usex mongo)" - -DWITH_REDIS="$(usex redis)" - ) - cmake-utils_src_configure -} - -FILECAPS=( cap_net_raw=ep usr/sbin/zmap )