Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libcroco/
Date: Sun, 30 May 2021 19:43:52
Message-Id: 1622403809.c2530fef2b523640b7cf3d3195dde3afb23b5f9c.mattst88@gentoo
1 commit: c2530fef2b523640b7cf3d3195dde3afb23b5f9c
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 30 19:42:54 2021 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Sun May 30 19:43:29 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2530fef
7
8 dev-libs/libcroco: Drop old versions
9
10 Bug: https://bugs.gentoo.org/722752
11 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
12
13 dev-libs/libcroco/libcroco-0.6.13.ebuild | 55 --------------------------------
14 1 file changed, 55 deletions(-)
15
16 diff --git a/dev-libs/libcroco/libcroco-0.6.13.ebuild b/dev-libs/libcroco/libcroco-0.6.13.ebuild
17 deleted file mode 100644
18 index 4b2cca0bd0c..00000000000
19 --- a/dev-libs/libcroco/libcroco-0.6.13.ebuild
20 +++ /dev/null
21 @@ -1,55 +0,0 @@
22 -# Copyright 1999-2021 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=7
26 -
27 -inherit gnome2 multilib-minimal
28 -
29 -DESCRIPTION="Generic Cascading Style Sheet (CSS) parsing and manipulation toolkit"
30 -HOMEPAGE="https://gitlab.gnome.org/Archive/libcroco"
31 -
32 -LICENSE="LGPL-2"
33 -SLOT="0.6"
34 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
35 -IUSE="test"
36 -RESTRICT="!test? ( test )"
37 -
38 -RDEPEND="
39 - >=dev-libs/glib-2.34.3:2[${MULTILIB_USEDEP}]
40 - >=dev-libs/libxml2-2.9.1-r4[${MULTILIB_USEDEP}]
41 -"
42 -DEPEND="${RDEPEND}"
43 -BDEPEND="
44 - dev-util/gtk-doc-am
45 - virtual/pkgconfig
46 -"
47 -
48 -src_prepare() {
49 - if ! use test; then
50 - # don't waste time building tests
51 - sed 's/^\(SUBDIRS .*\=.*\)tests\(.*\)$/\1\2/' -i Makefile.am Makefile.in \
52 - || die "sed failed"
53 - fi
54 -
55 - gnome2_src_prepare
56 -}
57 -
58 -multilib_src_configure() {
59 - ECONF_SOURCE=${S} \
60 - gnome2_src_configure \
61 - --disable-static \
62 - $([[ ${CHOST} == *-darwin* ]] && echo --disable-Bsymbolic)
63 -
64 - if multilib_is_native_abi; then
65 - ln -s "${S}"/docs/reference/html docs/reference/html || die
66 - fi
67 -}
68 -
69 -multilib_src_install() {
70 - gnome2_src_install
71 -}
72 -
73 -multilib_src_install_all() {
74 - DOCS=( AUTHORS ChangeLog HACKING NEWS README TODO )
75 - einstalldocs
76 -}