Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/xmlto/
Date: Sat, 01 Jan 2022 09:39:04
Message-Id: 1641029914.c94fd2639c28d829963b46dc993e230aeda2f2b0.sam@gentoo
1 commit: c94fd2639c28d829963b46dc993e230aeda2f2b0
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jan 1 09:37:16 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 1 09:38:34 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c94fd263
7
8 app-text/xmlto: drop 0.0.28-r3
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 app-text/xmlto/xmlto-0.0.28-r3.ebuild | 49 -----------------------------------
13 1 file changed, 49 deletions(-)
14
15 diff --git a/app-text/xmlto/xmlto-0.0.28-r3.ebuild b/app-text/xmlto/xmlto-0.0.28-r3.ebuild
16 deleted file mode 100644
17 index 6b8268c5f689..000000000000
18 --- a/app-text/xmlto/xmlto-0.0.28-r3.ebuild
19 +++ /dev/null
20 @@ -1,49 +0,0 @@
21 -# Copyright 1999-2021 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=7
25 -
26 -DESCRIPTION="script for converting XML and DocBook documents to a variety of output formats"
27 -HOMEPAGE="https://pagure.io/xmlto"
28 -SRC_URI="https://releases.pagure.org/${PN}/${P}.tar.bz2"
29 -
30 -LICENSE="GPL-2"
31 -SLOT="0"
32 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
33 -IUSE="latex text"
34 -
35 -RDEPEND=">=app-text/docbook-xsl-stylesheets-1.62.0-r1
36 - app-text/docbook-xml-dtd:4.2
37 - app-shells/bash:0
38 - dev-libs/libxslt
39 - sys-apps/sed
40 - >=sys-apps/coreutils-6.10-r1
41 - || ( sys-apps/util-linux app-misc/getopt )
42 - sys-apps/which
43 - text? ( || ( virtual/w3m www-client/lynx www-client/elinks ) )
44 - latex? ( dev-texlive/texlive-formatsextra )"
45 -# We only depend on flex when we patch the imput lexer.
46 -DEPEND="${RDEPEND}"
47 -
48 -DOCS="AUTHORS ChangeLog FAQ NEWS README THANKS"
49 -
50 -PATCHES=(
51 - "${FILESDIR}"/${PN}-0.0.22-format_fo_passivetex_check.patch
52 -)
53 -
54 -src_prepare() {
55 - default
56 -
57 - # fix symbol clash on Solaris
58 - if [[ ${CHOST} == *-solaris* ]] ; then
59 - sed -i -e 's/\(attrib\|val\)/XMLTO\1/g' xmlif/xmlif.l || die
60 - fi
61 -}
62 -
63 -src_configure() {
64 - # We don't want the script to detect /bin/sh if it is bash.
65 - export ac_cv_path_BASH=${BASH}
66 - has_version sys-apps/util-linux || export GETOPT=getopt-long
67 -
68 - econf
69 -}