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 76A7C1382C5 for ; Sun, 10 Jan 2021 13:14:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A28D4E0B05; Sun, 10 Jan 2021 13:14:51 +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 85B8CE0B05 for ; Sun, 10 Jan 2021 13:14:51 +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 47EEC341050 for ; Sun, 10 Jan 2021 13:14:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C1982B8 for ; Sun, 10 Jan 2021 13:14:48 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1610284377.f58486cf23d1654c1ec2a16d537e8184d4eceb79.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libxspf/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libxspf/libxspf-1.2.0.ebuild X-VCS-Directories: media-libs/libxspf/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: f58486cf23d1654c1ec2a16d537e8184d4eceb79 X-VCS-Branch: master Date: Sun, 10 Jan 2021 13:14:48 +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: efe5a826-493e-44e4-a258-f158f4ffa569 X-Archives-Hash: fa8d60ae6fc638dfc1b8d9cb8f131d40 commit: f58486cf23d1654c1ec2a16d537e8184d4eceb79 Author: Sam James gentoo org> AuthorDate: Sun Jan 10 13:12:57 2021 +0000 Commit: Sam James gentoo org> CommitDate: Sun Jan 10 13:12:57 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f58486cf media-libs/libxspf: cleanup old Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Sam James gentoo.org> media-libs/libxspf/libxspf-1.2.0.ebuild | 51 --------------------------------- 1 file changed, 51 deletions(-) diff --git a/media-libs/libxspf/libxspf-1.2.0.ebuild b/media-libs/libxspf/libxspf-1.2.0.ebuild deleted file mode 100644 index 088fadf47a2..00000000000 --- a/media-libs/libxspf/libxspf-1.2.0.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit xdg-utils - -DESCRIPTION="Playlist handling library" -HOMEPAGE="http://libspiff.sourceforge.net/" -SRC_URI="mirror://sourceforge/libspiff/${P}.tar.bz2" - -LICENSE="BSD LGPL-2.1" -SLOT="0" -KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris" -IUSE="static-libs test" -RESTRICT="!test? ( test )" - -RDEPEND=" - >=dev-libs/expat-2 - >=dev-libs/uriparser-0.7.5" -DEPEND="${RDEPEND} - virtual/pkgconfig - test? ( >=dev-util/cpptest-1.1 )" - -DOCS=( AUTHORS ChangeLog NEWS README THANKS ) - -PATCHES=( - "${FILESDIR}"/${P}-gcc44.patch - "${FILESDIR}"/${P}-gcc47.patch -) - -src_prepare() { - default - xdg_environment_reset - - # do not install missing files - sed -e 's/gif,//' -i doc/Makefile* \ - -i bindings/c/doc/Makefile* || die "sed failed" -} - -src_configure() { - econf \ - --disable-doc \ - $(use_enable static-libs static) \ - $(use_enable test) -} - -src_install() { - default - find "${D}" -name '*.la' -delete || die -}