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 B129C138334 for ; Thu, 27 Jun 2019 17:21:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5B7C3E089F; Thu, 27 Jun 2019 17:21:26 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 421E8E089F for ; Thu, 27 Jun 2019 17:21:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 22171346BB6 for ; Thu, 27 Jun 2019 17:21:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 744BB6DF for ; Thu, 27 Jun 2019 17:21:20 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1561656047.c548851019bf52d959be3bd6f953e7deb43cad5e.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/authforce/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/authforce/authforce-0.9.9-r1.ebuild X-VCS-Directories: net-analyzer/authforce/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: c548851019bf52d959be3bd6f953e7deb43cad5e X-VCS-Branch: master Date: Thu, 27 Jun 2019 17:21:20 +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: 8351cdfc-6113-438a-821e-88dfe1502d57 X-Archives-Hash: 20ba4db0761a36993cff156f596d75f0 commit: c548851019bf52d959be3bd6f953e7deb43cad5e Author: Michael Mair-Keimberger gmail com> AuthorDate: Thu Jun 27 17:12:51 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Thu Jun 27 17:20:47 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5488510 net-analyzer/authforce: remove old (EAPI4) Signed-off-by: Michael Mair-Keimberger gmail.com> Closes: https://github.com/gentoo/gentoo/pull/12343 Signed-off-by: Andreas Sturmlechner gentoo.org> net-analyzer/authforce/authforce-0.9.9-r1.ebuild | 33 ------------------------ 1 file changed, 33 deletions(-) diff --git a/net-analyzer/authforce/authforce-0.9.9-r1.ebuild b/net-analyzer/authforce/authforce-0.9.9-r1.ebuild deleted file mode 100644 index fea985a8e03..00000000000 --- a/net-analyzer/authforce/authforce-0.9.9-r1.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 - -inherit base - -DESCRIPTION="An HTTP authentication brute forcer" -HOMEPAGE="http://www.divineinvasion.net/authforce/" -SRC_URI="http://www.divineinvasion.net/${PN}/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~ppc x86" -IUSE="curl nls" - -DEPEND=" - sys-libs/readline - curl? ( net-misc/curl ) - nls? ( sys-devel/gettext )" - -DOCS=( AUTHORS BUGS NEWS README THANKS TODO ) -PATCHES=( - "${FILESDIR}"/${P}-curl.patch - "${FILESDIR}"/${P}-locale.patch - ) - -src_configure() { - econf \ - $(use_with curl) \ - $(use_enable nls) \ - --with-path=/usr/share/${PN}/data:. -}