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 E7EF915800F for ; Thu, 26 Jan 2023 22:19:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F1D9DE0876; Thu, 26 Jan 2023 22:19:53 +0000 (UTC) Received: from smtp.gentoo.org (dev.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DBA55E0876 for ; Thu, 26 Jan 2023 22:19:53 +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 E418B340FEE for ; Thu, 26 Jan 2023 22:19:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EDAE588A for ; Thu, 26 Jan 2023 22:19:49 +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: <1674771556.3a68e23e1ec128278427ea8b7f8d162fde79adba.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/texinfo/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/texinfo/texinfo-7.0.2.ebuild X-VCS-Directories: sys-apps/texinfo/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 3a68e23e1ec128278427ea8b7f8d162fde79adba X-VCS-Branch: master Date: Thu, 26 Jan 2023 22:19:49 +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: 27382a24-df78-443b-a96a-93129ac425ff X-Archives-Hash: 5cf070c57c0ae1f05d0dabd63e95570a commit: 3a68e23e1ec128278427ea8b7f8d162fde79adba Author: Arsen Arsenović gentoo org> AuthorDate: Wed Jan 25 21:19:11 2023 +0000 Commit: Sam James gentoo org> CommitDate: Thu Jan 26 22:19:16 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a68e23e sys-apps/texinfo: sync 7.0.2 with live The latter is based on the former, and is near identical. Signed-off-by: Arsen Arsenović gentoo.org> Closes: https://github.com/gentoo/gentoo/pull/29269 Signed-off-by: Sam James gentoo.org> sys-apps/texinfo/texinfo-7.0.2.ebuild | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/sys-apps/texinfo/texinfo-7.0.2.ebuild b/sys-apps/texinfo/texinfo-7.0.2.ebuild index 2e06ad1a4026..ab957b84c675 100644 --- a/sys-apps/texinfo/texinfo-7.0.2.ebuild +++ b/sys-apps/texinfo/texinfo-7.0.2.ebuild @@ -12,11 +12,21 @@ inherit flag-o-matic toolchain-funcs DESCRIPTION="The GNU info program and utilities" HOMEPAGE="https://www.gnu.org/software/texinfo/" -if [[ $(ver_cut 3) -ge 90 || $(ver_cut 4) -ge 90 ]] ; then +if [[ ${PV} == 9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://git.savannah.gnu.org/git/texinfo.git" + REGEN_BDEPEND=" + >=sys-devel/autoconf-2.62 + >=sys-devel/automake-1.16 + sys-devel/libtool + " +elif [[ $(ver_cut 3) -ge 90 || $(ver_cut 4) -ge 90 ]] ; then SRC_URI="https://alpha.gnu.org/gnu/${PN}/${P}.tar.xz" + REGEN_BDEPEND="" else SRC_URI="mirror://gnu/${PN}/${P}.tar.xz" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" + REGEN_BDEPEND="" fi LICENSE="GPL-3+" @@ -34,12 +44,17 @@ RDEPEND=" " DEPEND="${RDEPEND}" BDEPEND=" + ${REGEN_BDEPEND} nls? ( >=sys-devel/gettext-0.19.6 ) " src_prepare() { default + if [[ ${PV} == 9999 ]]; then + ./autogen.sh || die + fi + # Needed if a patch touches install-info.c #touch man/install-info.1 || die