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 58B5E15808C for ; Fri, 11 Feb 2022 14:57:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 68E57E085B; Fri, 11 Feb 2022 14:57:00 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4FD9AE085B for ; Fri, 11 Feb 2022 14:57:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 597E33431DE for ; Fri, 11 Feb 2022 14:56:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E51862D4 for ; Fri, 11 Feb 2022 14:56:57 +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: <1644591404.15cf38a61998d7af68fc1ca9677ee0011d54d0c7.juippis@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: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 15cf38a61998d7af68fc1ca9677ee0011d54d0c7 X-VCS-Branch: master Date: Fri, 11 Feb 2022 14:56:57 +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: 1d6025db-18e0-4d3c-945c-24d49ecd2642 X-Archives-Hash: b923dddc2e38ac0948283f8af6917d3d commit: 15cf38a61998d7af68fc1ca9677ee0011d54d0c7 Author: Joonas Niilola gentoo org> AuthorDate: Fri Feb 11 14:48:10 2022 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Fri Feb 11 14:56:44 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15cf38a6 dev-util/gengetopt: add missing BDEPEND /var/tmp/portage/dev-util/gengetopt-2.23/work/gengetopt-2.23/build-aux/missing: line 81: makeinfo: command not found /var/tmp/portage/dev-util/gengetopt-2.23/work/gengetopt-2.23/build-aux/missing: line 81: makeinfo: command not found Signed-off-by: Joonas Niilola gentoo.org> dev-util/gengetopt/gengetopt-2.23.ebuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/dev-util/gengetopt/gengetopt-2.23.ebuild b/dev-util/gengetopt/gengetopt-2.23.ebuild index 6e5334e0c13b..35a722b03344 100644 --- a/dev-util/gengetopt/gengetopt-2.23.ebuild +++ b/dev-util/gengetopt/gengetopt-2.23.ebuild @@ -1,7 +1,8 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 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" @@ -11,6 +12,9 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.xz" LICENSE="GPL-3" SLOT="0" KEYWORDS="amd64 arm ~arm64 ~hppa ppc ppc64 ~riscv x86 ~x64-cygwin ~amd64-linux ~x86-linux ~sparc-solaris ~sparc64-solaris" + +BDEPEND="sys-apps/texinfo" + PATCHES=( "${FILESDIR}"/${PN}-2.22.6-docdirs.patch )