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 B49EE158091 for ; Sun, 19 Jun 2022 18:50:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E3658E0B34; Sun, 19 Jun 2022 18:50:53 +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 C8418E0B34 for ; Sun, 19 Jun 2022 18:50: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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AC18D34175F for ; Sun, 19 Jun 2022 18:50:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4C9F050B for ; Sun, 19 Jun 2022 18:50:51 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1655664639.7d8b2aeb40c90fec802791c90f8f5e7bb13bef3c.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-doc/xmltoman/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-doc/xmltoman/xmltoman-0.4-r1.ebuild app-doc/xmltoman/xmltoman-0.4-r2.ebuild X-VCS-Directories: app-doc/xmltoman/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 7d8b2aeb40c90fec802791c90f8f5e7bb13bef3c X-VCS-Branch: master Date: Sun, 19 Jun 2022 18:50:51 +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: 498e576b-3096-4323-8747-979ed15ef153 X-Archives-Hash: c6c5a3750493e0db26081d2a45b6de97 commit: 7d8b2aeb40c90fec802791c90f8f5e7bb13bef3c Author: David Seifert gentoo org> AuthorDate: Sun Jun 19 18:50:39 2022 +0000 Commit: David Seifert gentoo org> CommitDate: Sun Jun 19 18:50:39 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d8b2aeb app-doc/xmltoman: update EAPI 6 -> 8 Signed-off-by: David Seifert gentoo.org> .../{xmltoman-0.4-r1.ebuild => xmltoman-0.4-r2.ebuild} | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/app-doc/xmltoman/xmltoman-0.4-r1.ebuild b/app-doc/xmltoman/xmltoman-0.4-r2.ebuild similarity index 92% rename from app-doc/xmltoman/xmltoman-0.4-r1.ebuild rename to app-doc/xmltoman/xmltoman-0.4-r2.ebuild index 9a5c39b406ac..efb9811d3457 100644 --- a/app-doc/xmltoman/xmltoman-0.4-r1.ebuild +++ b/app-doc/xmltoman/xmltoman-0.4-r2.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=8 DESCRIPTION="Simple scripts for converting xml to groff or html" HOMEPAGE="https://sourceforge.net/projects/xmltoman/" @@ -10,18 +10,20 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86" -IUSE="" -RDEPEND="dev-lang/perl +RDEPEND=" + dev-lang/perl dev-perl/XML-Parser" -DEPEND="${RDEPEND}" +BDEPEND="${RDEPEND}" src_install() { # 'make install' requires GNU install, upstream is dead and carrying # a patch is more space than redoing it here dobin xmltoman xmlmantohtml + insinto /usr/share/xmltoman doins xmltoman.{css,dtd,xsl} + dodoc README doman xmltoman.1 xmlmantohtml.1 }