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