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 80D44158020 for ; Wed, 16 Nov 2022 08:35:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B3837E0871; Wed, 16 Nov 2022 08:35:11 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 988D0E0871 for ; Wed, 16 Nov 2022 08:35:11 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 81FFC340E91 for ; Wed, 16 Nov 2022 08:35:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C55E0738 for ; Wed, 16 Nov 2022 08:35:08 +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: <1668587701.5adf2bcfaef5ad2a9e6aeebb96844ccb60f6b53f.fordfrog@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/tremor/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/tremor/tremor-0_pre20130223-r2.ebuild X-VCS-Directories: media-libs/tremor/ X-VCS-Committer: fordfrog X-VCS-Committer-Name: Miroslav Šulc X-VCS-Revision: 5adf2bcfaef5ad2a9e6aeebb96844ccb60f6b53f X-VCS-Branch: master Date: Wed, 16 Nov 2022 08:35:08 +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: 55a4a405-c137-47c3-bca0-5227040df3d5 X-Archives-Hash: bdf84a916aaa739f4d49161af97addf4 commit: 5adf2bcfaef5ad2a9e6aeebb96844ccb60f6b53f Author: Miroslav Šulc gentoo org> AuthorDate: Wed Nov 16 08:35:01 2022 +0000 Commit: Miroslav Šulc gentoo org> CommitDate: Wed Nov 16 08:35:01 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5adf2bcf media-libs/tremor: dropped obsolete 0_pre20130223-r2 Bug: https://bugs.gentoo.org/881167 Signed-off-by: Miroslav Šulc gentoo.org> media-libs/tremor/tremor-0_pre20130223-r2.ebuild | 40 ------------------------ 1 file changed, 40 deletions(-) diff --git a/media-libs/tremor/tremor-0_pre20130223-r2.ebuild b/media-libs/tremor/tremor-0_pre20130223-r2.ebuild deleted file mode 100644 index 1fa4c476ded3..000000000000 --- a/media-libs/tremor/tremor-0_pre20130223-r2.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit autotools multilib-minimal - -DESCRIPTION="A fixed-point version of the Ogg Vorbis decoder (also known as libvorbisidec)" -HOMEPAGE="https://wiki.xiph.org/Tremor" -SRC_URI="https://dev.gentoo.org/~ssuominen/${P}.tar.xz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86" -IUSE="low-accuracy" - -RDEPEND=">=media-libs/libogg-1.3.0:=[${MULTILIB_USEDEP}]" -DEPEND="${RDEPEND}" -BDEPEND="virtual/pkgconfig" - -PATCHES=( - "${FILESDIR}"/${P}-out-of-bounds-write.patch - "${FILESDIR}"/${P}-autoconf.patch -) - -src_prepare() { - default - eautoreconf -} - -multilib_src_configure() { - ECONF_SOURCE="${S}" econf $(use_enable low-accuracy) -} - -multilib_src_install_all() { - HTML_DOCS=( doc/. ) - einstalldocs - - find "${ED}" -name '*.la' -type f -delete || die -}