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 53757158095 for ; Mon, 1 Aug 2022 03:15:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 87A65E10BA; Mon, 1 Aug 2022 03:15: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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 49D05E10B9 for ; Mon, 1 Aug 2022 03:15: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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4B2FA340C3F for ; Mon, 1 Aug 2022 03:15:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BB931544 for ; Mon, 1 Aug 2022 03:15:40 +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: <1659323663.b54147860c8e9ee6eaca0e4ac6ee809c2c24a049.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/html-xml-utils/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/html-xml-utils/html-xml-utils-7.8-r1.ebuild X-VCS-Directories: app-text/html-xml-utils/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: b54147860c8e9ee6eaca0e4ac6ee809c2c24a049 X-VCS-Branch: master Date: Mon, 1 Aug 2022 03:15: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: f5af0150-b057-4f1d-88e0-96925b8e1721 X-Archives-Hash: f066c0f851659a0a60563715b38dd70a commit: b54147860c8e9ee6eaca0e4ac6ee809c2c24a049 Author: Sam James gentoo org> AuthorDate: Mon Aug 1 02:58:18 2022 +0000 Commit: Sam James gentoo org> CommitDate: Mon Aug 1 03:14:23 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5414786 app-text/html-xml-utils: [QA] EAPI 8, drop multilib, fix tests, fix deps - EAPI 8 - Drop multilib-minimal (installs only binaries) - Clean up phase definitions (almost all not needed) - Fix tests (missing shebang and fail w/ non-bash, so force bash for them) - Fix dependencies (missing libidn2, although could use libidn, let's not add deps on legacy stuff). Signed-off-by: Sam James gentoo.org> .../html-xml-utils/html-xml-utils-7.8-r1.ebuild | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/app-text/html-xml-utils/html-xml-utils-7.8-r1.ebuild b/app-text/html-xml-utils/html-xml-utils-7.8-r1.ebuild new file mode 100644 index 000000000000..28ec0c74a63f --- /dev/null +++ b/app-text/html-xml-utils/html-xml-utils-7.8-r1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="A number of simple utilities for manipulating HTML and XML files" +HOMEPAGE="https://www.w3.org/Tools/HTML-XML-utils/" +SRC_URI="https://www.w3.org/Tools/HTML-XML-utils/${P}.tar.gz" + +LICENSE="W3C" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-linux ~ppc-macos" + +RDEPEND=" + net-dns/libidn2:= + net-misc/curl +" +DEPEND="${RDEPEND}" + +src_prepare() { + default + sed -e "/doc_DATA = COPYING/d" -i Makefile.in || die +} + +src_test() { + # Lots of tests lack a shebang and use bashisms + emake check SHELL="${BROOT}"/bin/bash +}