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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E0556158099 for ; Fri, 1 Dec 2023 11:31:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F34D62BC02C; Fri, 1 Dec 2023 11:31:01 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D7C452BC02C for ; Fri, 1 Dec 2023 11:31:01 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BAE65335D75 for ; Fri, 1 Dec 2023 11:31:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1EEBA143B for ; Fri, 1 Dec 2023 11:30:59 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1701430250.ebe9a4126ecedf414f478d7a0cca93d44598c437.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libsidplay/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libsidplay/libsidplay-1.36.59-r2.ebuild X-VCS-Directories: media-libs/libsidplay/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: ebe9a4126ecedf414f478d7a0cca93d44598c437 X-VCS-Branch: master Date: Fri, 1 Dec 2023 11:30:59 +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: 166c27cc-dc85-452b-b29d-fb222bdfe751 X-Archives-Hash: 5a6d17006926a343f6d86a8089c81925 commit: ebe9a4126ecedf414f478d7a0cca93d44598c437 Author: Ulrich Müller gentoo org> AuthorDate: Fri Dec 1 10:39:23 2023 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Fri Dec 1 11:30:50 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ebe9a412 media-libs/libsidplay: drop 1.36.59-r2 Signed-off-by: Ulrich Müller gentoo.org> media-libs/libsidplay/libsidplay-1.36.59-r2.ebuild | 38 ---------------------- 1 file changed, 38 deletions(-) diff --git a/media-libs/libsidplay/libsidplay-1.36.59-r2.ebuild b/media-libs/libsidplay/libsidplay-1.36.59-r2.ebuild deleted file mode 100644 index 6142907388d4..000000000000 --- a/media-libs/libsidplay/libsidplay-1.36.59-r2.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit libtool multilib-minimal - -DESCRIPTION="C64 SID player library" -HOMEPAGE="http://critical.ch/distfiles/" -SRC_URI="http://critical.ch/distfiles/${P}.tgz" - -LICENSE="GPL-2" -SLOT="1" -KEYWORDS="~alpha amd64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86" -IUSE="static-libs" -DEPEND="" -RDEPEND="" - -DOCS=( AUTHORS DEVELOPER ) -PATCHES=( - "${FILESDIR}"/${P}-gcc43.patch - "${FILESDIR}"/${P}-fix-c++14.patch -) - -src_prepare() { - default - elibtoolize # required for fbsd .so versioning -} - -multilib_src_configure() { - ECONF_SOURCE="${S}" \ - econf $(use_enable static-libs static) -} - -multilib_src_install_all() { - einstalldocs - find "${D}" -name '*.la' -delete || die -}