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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 22113158083 for ; Wed, 11 Sep 2024 05:21:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 31BA9E29D5; Wed, 11 Sep 2024 05:21:43 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 17CD4E29D5 for ; Wed, 11 Sep 2024 05:21:43 +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 12E94342F92 for ; Wed, 11 Sep 2024 05:21:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5311A1D57 for ; Wed, 11 Sep 2024 05:21:40 +0000 (UTC) From: "Petr Vaněk" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Petr Vaněk" Message-ID: <1726032009.efa7afdfc658f2d7fde9480593e44eaa1104c007.arkamar@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/gengetopt/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/gengetopt/gengetopt-2.23.ebuild X-VCS-Directories: dev-util/gengetopt/ X-VCS-Committer: arkamar X-VCS-Committer-Name: Petr Vaněk X-VCS-Revision: efa7afdfc658f2d7fde9480593e44eaa1104c007 X-VCS-Branch: master Date: Wed, 11 Sep 2024 05:21:40 +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: 5a90aa3c-8905-429d-a275-a4dbfc52c13b X-Archives-Hash: 41ff392194bc30ee612a6a642187590c commit: efa7afdfc658f2d7fde9480593e44eaa1104c007 Author: Petr Vaněk gentoo org> AuthorDate: Wed Sep 11 05:20:09 2024 +0000 Commit: Petr Vaněk gentoo org> CommitDate: Wed Sep 11 05:20:09 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=efa7afdf dev-util/gengetopt: drop 2.23 Signed-off-by: Petr Vaněk gentoo.org> dev-util/gengetopt/gengetopt-2.23.ebuild | 29 ----------------------------- 1 file changed, 29 deletions(-) diff --git a/dev-util/gengetopt/gengetopt-2.23.ebuild b/dev-util/gengetopt/gengetopt-2.23.ebuild deleted file mode 100644 index 846a58aa41a3..000000000000 --- a/dev-util/gengetopt/gengetopt-2.23.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools - -DESCRIPTION="A tool to write command line option parsing code for C programs" -HOMEPAGE="https://www.gnu.org/software/gengetopt/" -SRC_URI="mirror://gnu/${PN}/${P}.tar.xz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux" - -BDEPEND="sys-apps/texinfo" - -PATCHES=( - "${FILESDIR}"/${PN}-2.22.6-docdirs.patch -) - -src_prepare() { - default - - sed -e 's:AM_CONFIG_HEADER:AC_CONFIG_HEADERS:' -i configure.ac || die - sed -e '/gengetoptdoc_DATA/d' -i Makefile.am || die - - eautoreconf -}