From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 33D92138330 for ; Tue, 29 May 2018 12:32:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 89FC4E0802; Tue, 29 May 2018 12:32:18 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 65AE5E0802 for ; Tue, 29 May 2018 12:32:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 92D30335C81 for ; Tue, 29 May 2018 12:32:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4D4062B8 for ; Tue, 29 May 2018 12:32:14 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1527597068.83356ac5464317edf0b0d21b2b301658e6f0b4d8.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libical/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libical/libical-2.0.0-r2.ebuild X-VCS-Directories: dev-libs/libical/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 83356ac5464317edf0b0d21b2b301658e6f0b4d8 X-VCS-Branch: master Date: Tue, 29 May 2018 12:32:14 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 7fabffdf-a2aa-42dc-a209-4a6529232bcd X-Archives-Hash: 8f94f22f98c542d1a82775a0781fd961 commit: 83356ac5464317edf0b0d21b2b301658e6f0b4d8 Author: Andreas Sturmlechner gentoo org> AuthorDate: Tue May 29 11:48:06 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Tue May 29 12:31:08 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=83356ac5 dev-libs/libical: Drop 2.0.0-r2 Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-libs/libical/libical-2.0.0-r2.ebuild | 56 -------------------------------- 1 file changed, 56 deletions(-) diff --git a/dev-libs/libical/libical-2.0.0-r2.ebuild b/dev-libs/libical/libical-2.0.0-r2.ebuild deleted file mode 100644 index c0e34d96a4e..00000000000 --- a/dev-libs/libical/libical-2.0.0-r2.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -inherit cmake-utils - -DESCRIPTION="An implementation of basic iCAL protocols" -HOMEPAGE="https://github.com/libical/libical" -SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="|| ( MPL-1.0 LGPL-2.1 )" -SLOT="0/2" -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" -IUSE="doc examples static-libs" - -# The GOBJECT_INTROSPECTION build is broken, and upstream has given up -# on it at the moment (it's disabled in Travis). It will probably come -# back in v2.0.1 or later. -# This snippet belongs to RDEPEND: -# introspection? ( dev-libs/gobject-introspection )" -RDEPEND="dev-libs/icu:=" -DEPEND="${RDEPEND} - dev-lang/perl" - -DOCS=( - AUTHORS ReadMe.txt ReleaseNotes.txt TEST THANKS TODO - doc/{AddingOrModifyingComponents,UsingLibical}.txt -) - -PATCHES=( - "${FILESDIR}/fix-libdir-location.patch" - "${FILESDIR}/${P}-tests.patch" #bug 532296 -) - -src_configure() { - # See above, introspection is disabled for v2.0.0 at least. - #local mycmakeargs=( - # -DGOBJECT_INTROSPECTION=$(usex introspection true false) - #) - use static-libs || mycmakeargs+=( -DSHARED_ONLY=ON ) - cmake-utils_src_configure -} - -src_test() { - local myctestargs=( -j1 ) - cmake-utils_src_test -} - -src_install() { - cmake-utils_src_install - - if use examples; then - rm examples/CMakeLists.txt || die - dodoc -r examples - fi -}