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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id DE19A158094 for ; Sat, 1 Oct 2022 00:30:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C9246E0A7C; Sat, 1 Oct 2022 00:30:30 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AFB6BE0A7C for ; Sat, 1 Oct 2022 00:30:30 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D385A340FEA for ; Sat, 1 Oct 2022 00:30:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 174455EB for ; Sat, 1 Oct 2022 00:30:28 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1664583964.22977abc5e69c5bc9e3c0b29de30d47bc6c05465.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/ike-scan/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/ike-scan/ike-scan-99999.ebuild X-VCS-Directories: net-analyzer/ike-scan/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 22977abc5e69c5bc9e3c0b29de30d47bc6c05465 X-VCS-Branch: master Date: Sat, 1 Oct 2022 00:30:28 +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: f461be11-1a1f-43f3-b05f-fc8183d76681 X-Archives-Hash: af4d643fb75a4971ffc084cfbd41e553 commit: 22977abc5e69c5bc9e3c0b29de30d47bc6c05465 Author: Sam James gentoo org> AuthorDate: Sat Oct 1 00:26:04 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sat Oct 1 00:26:04 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22977abc net-analyzer/ike-scan: drop 99999 Signed-off-by: Sam James gentoo.org> net-analyzer/ike-scan/ike-scan-99999.ebuild | 43 ----------------------------- 1 file changed, 43 deletions(-) diff --git a/net-analyzer/ike-scan/ike-scan-99999.ebuild b/net-analyzer/ike-scan/ike-scan-99999.ebuild deleted file mode 100644 index 4e89ede7807a..000000000000 --- a/net-analyzer/ike-scan/ike-scan-99999.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit autotools git-r3 - -DESCRIPTION="A utility for finding, fingerprinting and testing IKE VPN servers" -HOMEPAGE="https://github.com/royhills/ike-scan/" -EGIT_REPO_URI="https://github.com/royhills/ike-scan" - -LICENSE="GPL-2" -SLOT="0" -IUSE="ssl" -KEYWORDS="" - -DEPEND=" - ssl? ( - dev-libs/openssl:0= - ) -" -RDEPEND=" - ${DEPEND} -" - -src_prepare() { - # Fix buffer overflow, bug #277556 - sed \ - -e "/MAXLINE/s:255:511:g" \ - -i ike-scan.h || die - - default - - eautoreconf -} - -src_configure() { - econf $(use_with ssl openssl) -} - -src_install() { - default - dodoc udp-backoff-fingerprinting-paper.txt -}