Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libxslt/
Date: Sat, 01 Jan 2022 09:39:02
Message-Id: 1641029909.a3e404dae37843c593b242981ea4e5c17b26e656.sam@gentoo
1 commit: a3e404dae37843c593b242981ea4e5c17b26e656
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jan 1 09:34:54 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 1 09:38:29 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3e404da
7
8 dev-libs/libxslt: drop 1.1.34-r1
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 dev-libs/libxslt/libxslt-1.1.34-r1.ebuild | 67 -------------------------------
13 1 file changed, 67 deletions(-)
14
15 diff --git a/dev-libs/libxslt/libxslt-1.1.34-r1.ebuild b/dev-libs/libxslt/libxslt-1.1.34-r1.ebuild
16 deleted file mode 100644
17 index fd7981f397ae..000000000000
18 --- a/dev-libs/libxslt/libxslt-1.1.34-r1.ebuild
19 +++ /dev/null
20 @@ -1,67 +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 -VERIFY_SIG_OPENPGP_KEY_PATH=${BROOT}/usr/share/openpgp-keys/danielveillard.asc
27 -inherit libtool multilib-minimal verify-sig
28 -
29 -# Note: Please bump this in sync with dev-libs/libxml2.
30 -DESCRIPTION="XSLT libraries and tools"
31 -HOMEPAGE="http://www.xmlsoft.org/ https://gitlab.gnome.org/GNOME/libxslt"
32 -SRC_URI="ftp://xmlsoft.org/${PN}/${P}.tar.gz"
33 -SRC_URI+=" verify-sig? ( ftp://xmlsoft.org/${PN}/${P}.tar.gz.asc )"
34 -
35 -LICENSE="MIT"
36 -SLOT="0"
37 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
38 -IUSE="crypt debug examples static-libs elibc_Darwin"
39 -
40 -BDEPEND=">=virtual/pkgconfig-1
41 - verify-sig? ( sec-keys/openpgp-keys-danielveillard )"
42 -RDEPEND="
43 - >=dev-libs/libxml2-2.9.10:2[${MULTILIB_USEDEP}]
44 - crypt? ( >=dev-libs/libgcrypt-1.5.3:0=[${MULTILIB_USEDEP}] )
45 -"
46 -DEPEND="${RDEPEND}"
47 -
48 -MULTILIB_CHOST_TOOLS=(
49 - /usr/bin/xslt-config
50 -)
51 -
52 -MULTILIB_WRAPPED_HEADERS=(
53 - /usr/include/libxslt/xsltconfig.h
54 -)
55 -
56 -src_prepare() {
57 - default
58 -
59 - DOCS=( AUTHORS ChangeLog FEATURES NEWS README TODO )
60 -
61 - # Prefix always needs elibtoolize if not eautoreconf'd.
62 - elibtoolize
63 -}
64 -
65 -multilib_src_configure() {
66 - # Python bindings were dropped as they were Python 2 only at the time
67 - ECONF_SOURCE="${S}" econf \
68 - --with-html-dir="${EPREFIX}"/usr/share/doc/${PF} \
69 - --with-html-subdir=html \
70 - --without-python \
71 - $(use_with crypt crypto) \
72 - $(use_with debug) \
73 - $(use_with debug mem-debug) \
74 - $(use_enable static-libs static) \
75 - "$@"
76 -}
77 -
78 -multilib_src_install() {
79 - # "default" does not work here - docs are installed by multilib_src_install_all
80 - emake DESTDIR="${D}" install
81 -}
82 -
83 -multilib_src_install_all() {
84 - einstalldocs
85 -
86 - find "${ED}" -type f -name "*.la" -delete || die
87 -}