commit:     b54147860c8e9ee6eaca0e4ac6ee809c2c24a049
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Aug  1 02:58:18 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> 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 <sam <AT> 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
+}

Reply via email to