Gentoo Archives: gentoo-commits

From: Viorel Munteanu <ceamac@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/xalan-c/
Date: Tue, 29 Nov 2022 08:09:05
Message-Id: 1669709260.bfc11bc9b84f9a96fc243e441b8a3086ec39a638.ceamac@gentoo
1 commit: bfc11bc9b84f9a96fc243e441b8a3086ec39a638
2 Author: Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
3 AuthorDate: Mon Nov 28 09:54:20 2022 +0000
4 Commit: Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
5 CommitDate: Tue Nov 29 08:07:40 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bfc11bc9
7
8 dev-libs/xalan-c: drop 1.12-r1
9
10 Closes: https://github.com/gentoo/gentoo/pull/28460
11 Signed-off-by: Viorel Munteanu <ceamac <AT> gentoo.org>
12
13 dev-libs/xalan-c/xalan-c-1.12-r1.ebuild | 59 ---------------------------------
14 1 file changed, 59 deletions(-)
15
16 diff --git a/dev-libs/xalan-c/xalan-c-1.12-r1.ebuild b/dev-libs/xalan-c/xalan-c-1.12-r1.ebuild
17 deleted file mode 100644
18 index 53dc25c881f6..000000000000
19 --- a/dev-libs/xalan-c/xalan-c-1.12-r1.ebuild
20 +++ /dev/null
21 @@ -1,59 +0,0 @@
22 -# Copyright 1999-2022 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=8
26 -
27 -inherit cmake
28 -
29 -MY_PN=${PN/-/_}
30 -DESCRIPTION="XSLT processor for transforming XML into HTML, text, or other XML types"
31 -HOMEPAGE="https://apache.github.io/xalan-c/"
32 -if [[ ${PV} == *9999 ]]; then
33 - inherit git-r3
34 - EGIT_REPO_URI="https://github.com/apache/xalan-c.git"
35 -
36 - SLOT="0"
37 -else
38 - inherit verify-sig
39 - SRC_URI="
40 - mirror://apache/xalan/xalan-c/sources/${MY_PN}-${PV}.tar.gz
41 - verify-sig? ( https://dlcdn.apache.org/xalan/xalan-c/sources/${MY_PN}-${PV}.tar.gz.asc )
42 - "
43 - VERIFY_SIG_OPENPGP_KEY_PATH="${BROOT}"/usr/share/openpgp-keys/apache-xalan-c.asc
44 -
45 - SLOT="0/$(ver_cut 1-2)"
46 - KEYWORDS="~amd64 ~ppc ~x86"
47 - S="${WORKDIR}/${MY_PN}-${PV}"
48 - BDEPEND="
49 - verify-sig? ( sec-keys/openpgp-keys-apache-xalan-c )
50 - "
51 -fi
52 -
53 -LICENSE="Apache-2.0"
54 -IUSE="doc"
55 -
56 -RDEPEND="
57 - dev-libs/icu:=
58 - dev-libs/xerces-c[icu]
59 -"
60 -DEPEND="${RDEPEND}"
61 -BDEPEND+="
62 - doc? ( app-doc/doxygen[dot] )
63 -"
64 -
65 -src_configure() {
66 - local mycmakeargs=(
67 - -Ddoxygen=$(usex doc)
68 - )
69 -
70 - cmake_src_configure
71 -}
72 -
73 -src_install() {
74 - cmake_src_install
75 -
76 - if use doc; then
77 - docinto examples
78 - dodoc -r samples/*/
79 - fi
80 -}