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 4329715800A for ; Sat, 19 Aug 2023 22:32:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3B7002BC018; Sat, 19 Aug 2023 22:32:21 +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 26D742BC018 for ; Sat, 19 Aug 2023 22:32:21 +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 5F6EE3411D2 for ; Sat, 19 Aug 2023 22:32:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 977D61034 for ; Sat, 19 Aug 2023 22:32:18 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1692484199.cc676b6ed7efa5dc05addae85dbec6515ca6ea6b.conikost@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-r1.ebuild X-VCS-Directories: dev-util/gengetopt/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: cc676b6ed7efa5dc05addae85dbec6515ca6ea6b X-VCS-Branch: master Date: Sat, 19 Aug 2023 22:32:18 +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: 2fe82f96-0c41-48ab-a8e9-2e798186a042 X-Archives-Hash: e4dc24b5626063f985948474533bbc0f commit: cc676b6ed7efa5dc05addae85dbec6515ca6ea6b Author: Michael Mair-Keimberger levelnine at> AuthorDate: Fri Aug 18 17:30:35 2023 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Sat Aug 19 22:29:59 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc676b6e dev-util/gengetopt: EAPI8 bump, fix LICENSE Signed-off-by: Michael Mair-Keimberger levelnine.at> Closes: https://bugs.gentoo.org/877415 Closes: https://github.com/gentoo/gentoo/pull/32376 Signed-off-by: Conrad Kostecki gentoo.org> dev-util/gengetopt/gengetopt-2.23-r1.ebuild | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/dev-util/gengetopt/gengetopt-2.23-r1.ebuild b/dev-util/gengetopt/gengetopt-2.23-r1.ebuild new file mode 100644 index 000000000000..564527128402 --- /dev/null +++ b/dev-util/gengetopt/gengetopt-2.23-r1.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools + +DESCRIPTION="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+ public-domain" +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 +}