From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1177832-garchives=archives.gentoo.org@lists.gentoo.org> 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 EB3A71382C5 for <garchives@archives.gentoo.org>; Sun, 7 Jun 2020 15:34:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 39813E0893; Sun, 7 Jun 2020 15:34:17 +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 212B4E0893 for <gentoo-commits@lists.gentoo.org>; Sun, 7 Jun 2020 15:34:17 +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 964BF34ED0F for <gentoo-commits@lists.gentoo.org>; Sun, 7 Jun 2020 15:34:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2011727F for <gentoo-commits@lists.gentoo.org>; Sun, 7 Jun 2020 15:34:14 +0000 (UTC) From: "Sebastian Pipping" <sping@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sebastian Pipping" <sping@gentoo.org> Message-ID: <1591544033.163e264dd0647897c9f69ddfa3ae3d3cb52e2139.sping@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-r1.ebuild X-VCS-Directories: media-libs/tremor/ X-VCS-Committer: sping X-VCS-Committer-Name: Sebastian Pipping X-VCS-Revision: 163e264dd0647897c9f69ddfa3ae3d3cb52e2139 X-VCS-Branch: master Date: Sun, 7 Jun 2020 15:34:14 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 912e65f9-ba05-4be1-8a83-55ccf1481e99 X-Archives-Hash: 2f0d3f11d76aa4a0f170ad59ee8840a6 commit: 163e264dd0647897c9f69ddfa3ae3d3cb52e2139 Author: Sebastian Pipping <sping <AT> gentoo <DOT> org> AuthorDate: Sun Jun 7 15:32:30 2020 +0000 Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org> CommitDate: Sun Jun 7 15:33:53 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=163e264d media-libs/tremor: Drop vulnerable Bug: https://bugs.gentoo.org/650656 Signed-off-by: Sebastian Pipping <sping <AT> gentoo.org> Package-Manager: Portage-2.3.99, Repoman-2.3.22 media-libs/tremor/tremor-0_pre20130223-r1.ebuild | 44 ------------------------ 1 file changed, 44 deletions(-) diff --git a/media-libs/tremor/tremor-0_pre20130223-r1.ebuild b/media-libs/tremor/tremor-0_pre20130223-r1.ebuild deleted file mode 100644 index eb4cab721d8..00000000000 --- a/media-libs/tremor/tremor-0_pre20130223-r1.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -# svn export http://svn.xiph.org/trunk/Tremor tremor-${PV} - -inherit autotools eutils 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 sparc x86" -IUSE="low-accuracy static-libs" - -RDEPEND=">=media-libs/libogg-1.3.0:=[${MULTILIB_USEDEP}]" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -DOCS=( "CHANGELOG" "README" ) - -src_prepare() { - sed -i \ - -e '/CFLAGS/s:-O2::' \ - -e 's:AM_CONFIG_HEADER:AC_CONFIG_HEADERS:' \ - configure.in || die - - eautoreconf -} - -multilib_src_configure() { - ECONF_SOURCE="${S}" econf \ - $(use_enable static-libs static) \ - $(use_enable low-accuracy) -} - -multilib_src_install_all() { - einstalldocs - dohtml -r doc/* - find "${D}" -name '*.la' -type f -delete || die -}