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 0C68E1382C5 for ; Sun, 20 May 2018 11:23:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 113CDE09D7; Sun, 20 May 2018 11:22:59 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 DD5A0E09D7 for ; Sun, 20 May 2018 11:22:58 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 860A9335CD7 for ; Sun, 20 May 2018 11:22:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E21DE2A4 for ; Sun, 20 May 2018 11:22:55 +0000 (UTC) From: "Johannes Huber" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Johannes Huber" Message-ID: <1526815371.cbac0f038d3d602ccee4fee139de2d59bd1b73dc.johu@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/lilv/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/lilv/lilv-0.24.2.ebuild X-VCS-Directories: media-libs/lilv/ X-VCS-Committer: johu X-VCS-Committer-Name: Johannes Huber X-VCS-Revision: cbac0f038d3d602ccee4fee139de2d59bd1b73dc X-VCS-Branch: master Date: Sun, 20 May 2018 11:22:55 +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: 0c12706b-a7e6-4bad-8a78-62ad3775d4eb X-Archives-Hash: d65602a07b0ad27cea2d39718eafd495 commit: cbac0f038d3d602ccee4fee139de2d59bd1b73dc Author: Johannes Huber gentoo org> AuthorDate: Sun May 20 11:22:16 2018 +0000 Commit: Johannes Huber gentoo org> CommitDate: Sun May 20 11:22:51 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cbac0f03 media-libs/lilv: Remove 0.24.2 (r0) Uses deprecated EAPI 4, inherits deprecated base eclass and overshadowed by 0.24.2-r2. Package-Manager: Portage-2.3.38, Repoman-2.3.9 media-libs/lilv/lilv-0.24.2.ebuild | 52 -------------------------------------- 1 file changed, 52 deletions(-) diff --git a/media-libs/lilv/lilv-0.24.2.ebuild b/media-libs/lilv/lilv-0.24.2.ebuild deleted file mode 100644 index 150ae8a325d..00000000000 --- a/media-libs/lilv/lilv-0.24.2.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 - -PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} ) -PYTHON_REQ_USE='threads(+)' - -inherit base python-any-r1 waf-utils bash-completion-r1 - -DESCRIPTION="Library to make the use of LV2 plugins as simple as possible for applications" -HOMEPAGE="http://drobilla.net/software/lilv/" -SRC_URI="http://download.drobilla.net/${P}.tar.bz2" - -LICENSE="ISC" -SLOT="0" -KEYWORDS="amd64 ~ppc x86" -IUSE="doc +dyn-manifest static-libs test" - -RDEPEND=">=media-libs/lv2-1.14.0 - >=media-libs/sratom-0.4.0 - >=dev-libs/serd-0.14.0 - >=dev-libs/sord-0.13.0" -DEPEND="${RDEPEND} - ${PYTHON_DEPS} - doc? ( app-doc/doxygen ) - virtual/pkgconfig" - -DOCS=( "AUTHORS" "NEWS" "README" ) - -src_prepare() { - sed -i -e 's/^.*run_ldconfig/#\0/' wscript || die -} - -src_configure() { - waf-utils_src_configure \ - --docdir="${EPREFIX}"/usr/share/doc/${PF} \ - --no-bash-completion \ - $(use test && echo "--test") \ - $(use doc && echo "--docs") \ - $(use static-libs && echo "--static") \ - $(use dyn-manifest && echo "--dyn-manifest") -} - -src_test() { - ./waf test || die -} - -src_install() { - waf-utils_src_install - newbashcomp utils/lilv.bash_completion ${PN} -}