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 84E30138332 for ; Sun, 20 May 2018 11:43:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 69E66E07D8; Sun, 20 May 2018 11:43:12 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 476A6E07D8 for ; Sun, 20 May 2018 11:43:12 +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 B94C1335CD8 for ; Sun, 20 May 2018 11:43:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0769E2A6 for ; Sun, 20 May 2018 11:43:09 +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: <1526816563.11cdf24bb6c246d0284d3a460dfec8ccc6b1f984.johu@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/sratom/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/sratom/sratom-0.6.0.ebuild X-VCS-Directories: media-libs/sratom/ X-VCS-Committer: johu X-VCS-Committer-Name: Johannes Huber X-VCS-Revision: 11cdf24bb6c246d0284d3a460dfec8ccc6b1f984 X-VCS-Branch: master Date: Sun, 20 May 2018 11:43:09 +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: 4f5359aa-8411-4c63-8bb4-d7fc673e1a1e X-Archives-Hash: 634a84169950f5327c9ef14a19bf1ba9 commit: 11cdf24bb6c246d0284d3a460dfec8ccc6b1f984 Author: Johannes Huber gentoo org> AuthorDate: Sun May 20 11:42:43 2018 +0000 Commit: Johannes Huber gentoo org> CommitDate: Sun May 20 11:42:43 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11cdf24b media-libs/sratom: Remove 0.6.0 (r0) Uses deprecated EAPI 4 and overshadowed by 0.6.0-r1. Package-Manager: Portage-2.3.38, Repoman-2.3.9 media-libs/sratom/sratom-0.6.0.ebuild | 43 ----------------------------------- 1 file changed, 43 deletions(-) diff --git a/media-libs/sratom/sratom-0.6.0.ebuild b/media-libs/sratom/sratom-0.6.0.ebuild deleted file mode 100644 index c3719c26a16..00000000000 --- a/media-libs/sratom/sratom-0.6.0.ebuild +++ /dev/null @@ -1,43 +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 python-any-r1 waf-utils - -DESCRIPTION="Library for serialising LV2 atoms to/from RDF, particularly the Turtle syntax" -HOMEPAGE="http://drobilla.net/software/sratom/" -SRC_URI="http://download.drobilla.net/${P}.tar.bz2" - -LICENSE="ISC" -SLOT="0" -KEYWORDS="amd64 ~ppc x86" -IUSE="doc static-libs test" - -RDEPEND=">=media-libs/lv2-1.8.1 - >=dev-libs/serd-0.23.0 - >=dev-libs/sord-0.12.0" -DEPEND="${RDEPEND} - ${PYTHON_DEPS} - doc? ( app-doc/doxygen ) - virtual/pkgconfig" - -DOCS=( "NEWS" "README" ) - -src_prepare() { - sed -i -e 's/^.*run_ldconfig/#\0/' wscript || die -} - -src_configure() { - waf-utils_src_configure \ - --docdir=/usr/share/doc/${PF} \ - $(use test && echo "--test") \ - $(use doc && echo "--docs") \ - $(use static-libs && echo "--static") -} - -src_test() { - ./waf test || die -}