Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libical/
Date: Tue, 29 May 2018 12:32:19
Message-Id: 1527597068.83356ac5464317edf0b0d21b2b301658e6f0b4d8.asturm@gentoo
1 commit: 83356ac5464317edf0b0d21b2b301658e6f0b4d8
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Tue May 29 11:48:06 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Tue May 29 12:31:08 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=83356ac5
7
8 dev-libs/libical: Drop 2.0.0-r2
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11
12 dev-libs/libical/libical-2.0.0-r2.ebuild | 56 --------------------------------
13 1 file changed, 56 deletions(-)
14
15 diff --git a/dev-libs/libical/libical-2.0.0-r2.ebuild b/dev-libs/libical/libical-2.0.0-r2.ebuild
16 deleted file mode 100644
17 index c0e34d96a4e..00000000000
18 --- a/dev-libs/libical/libical-2.0.0-r2.ebuild
19 +++ /dev/null
20 @@ -1,56 +0,0 @@
21 -# Copyright 1999-2018 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=6
25 -inherit cmake-utils
26 -
27 -DESCRIPTION="An implementation of basic iCAL protocols"
28 -HOMEPAGE="https://github.com/libical/libical"
29 -SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
30 -
31 -LICENSE="|| ( MPL-1.0 LGPL-2.1 )"
32 -SLOT="0/2"
33 -KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
34 -IUSE="doc examples static-libs"
35 -
36 -# The GOBJECT_INTROSPECTION build is broken, and upstream has given up
37 -# on it at the moment (it's disabled in Travis). It will probably come
38 -# back in v2.0.1 or later.
39 -# This snippet belongs to RDEPEND:
40 -# introspection? ( dev-libs/gobject-introspection )"
41 -RDEPEND="dev-libs/icu:="
42 -DEPEND="${RDEPEND}
43 - dev-lang/perl"
44 -
45 -DOCS=(
46 - AUTHORS ReadMe.txt ReleaseNotes.txt TEST THANKS TODO
47 - doc/{AddingOrModifyingComponents,UsingLibical}.txt
48 -)
49 -
50 -PATCHES=(
51 - "${FILESDIR}/fix-libdir-location.patch"
52 - "${FILESDIR}/${P}-tests.patch" #bug 532296
53 -)
54 -
55 -src_configure() {
56 - # See above, introspection is disabled for v2.0.0 at least.
57 - #local mycmakeargs=(
58 - # -DGOBJECT_INTROSPECTION=$(usex introspection true false)
59 - #)
60 - use static-libs || mycmakeargs+=( -DSHARED_ONLY=ON )
61 - cmake-utils_src_configure
62 -}
63 -
64 -src_test() {
65 - local myctestargs=( -j1 )
66 - cmake-utils_src_test
67 -}
68 -
69 -src_install() {
70 - cmake-utils_src_install
71 -
72 - if use examples; then
73 - rm examples/CMakeLists.txt || die
74 - dodoc -r examples
75 - fi
76 -}