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 D589B1580B9 for ; Sat, 28 Aug 2021 06:01:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C1CEEE08CD; Sat, 28 Aug 2021 06:01:32 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 A13D1E08CD for ; Sat, 28 Aug 2021 06:01:32 +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 73C0F342ACD for ; Sat, 28 Aug 2021 06:01:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0CB244E for ; Sat, 28 Aug 2021 06:01:30 +0000 (UTC) From: "Miroslav Šulc" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Miroslav Šulc" Message-ID: <1630130478.20b2ec2d78fa047b36d71bd4b118e0c50b6daf57.fordfrog@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/liblrdf/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/liblrdf/liblrdf-0.6.1.ebuild X-VCS-Directories: media-libs/liblrdf/ X-VCS-Committer: fordfrog X-VCS-Committer-Name: Miroslav Šulc X-VCS-Revision: 20b2ec2d78fa047b36d71bd4b118e0c50b6daf57 X-VCS-Branch: master Date: Sat, 28 Aug 2021 06:01:30 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: bcdbde7d-f9d2-4eaa-8879-a29919cf1cb0 X-Archives-Hash: 1e2f533beca33855d2d718e6155df3df commit: 20b2ec2d78fa047b36d71bd4b118e0c50b6daf57 Author: Miroslav Šulc gentoo org> AuthorDate: Sat Aug 28 06:01:18 2021 +0000 Commit: Miroslav Šulc gentoo org> CommitDate: Sat Aug 28 06:01:18 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20b2ec2d media-libs/liblrdf: removed obsolete 0.6.1 Package-Manager: Portage-3.0.22, Repoman-3.0.3 Signed-off-by: Miroslav Šulc gentoo.org> media-libs/liblrdf/liblrdf-0.6.1.ebuild | 45 --------------------------------- 1 file changed, 45 deletions(-) diff --git a/media-libs/liblrdf/liblrdf-0.6.1.ebuild b/media-libs/liblrdf/liblrdf-0.6.1.ebuild deleted file mode 100644 index 33e94d1cda1..00000000000 --- a/media-libs/liblrdf/liblrdf-0.6.1.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2018 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools - -DESCRIPTION="Library for manipulation of RDF files in LADSPA plugins" -HOMEPAGE="https://github.com/swh/LRDF" -SRC_URI="https://github.com/swh/LRDF/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~hppa ppc ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos" -IUSE="static-libs" - -RDEPEND=" - media-libs/ladspa-sdk - media-libs/raptor:2 -" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -DOCS=( AUTHORS ChangeLog README ) - -S="${WORKDIR}/LRDF-${PV}" - -src_prepare() { - default - sed -i -e 's:usr/local:usr:' examples/{instances,remove}_test.c || die #392221 - eautoreconf -} - -src_configure() { - econf $(use_enable static-libs static) -} - -src_test() { - has_version media-plugins/swh-plugins && default #392221 -} - -src_install() { - default - find "${D}" -name '*.la' -delete || die -}