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 CF8E1138334 for ; Sun, 15 Jul 2018 23:45:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5EE4DE07F1; Sun, 15 Jul 2018 23:45:52 +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 2CCA1E07F1 for ; Sun, 15 Jul 2018 23:45:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 6ED71335C8E for ; Sun, 15 Jul 2018 23:45:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C5AE4372 for ; Sun, 15 Jul 2018 23:45:47 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1531698327.7e4925d1c1aa39bacd24a5f575d21e2a08dcc02d.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/vorbis-tools/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/vorbis-tools/vorbis-tools-1.4.0-r3.ebuild X-VCS-Directories: media-sound/vorbis-tools/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 7e4925d1c1aa39bacd24a5f575d21e2a08dcc02d X-VCS-Branch: master Date: Sun, 15 Jul 2018 23:45:47 +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-Archives-Salt: 23786227-b663-4ba3-8f58-106fe0d3dd95 X-Archives-Hash: b2a2b03886381865c130057d6177834a commit: 7e4925d1c1aa39bacd24a5f575d21e2a08dcc02d Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Jul 15 23:32:38 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Jul 15 23:45:27 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e4925d1 media-sound/vorbis-tools: Cleanup vulnerable Bug: https://bugs.gentoo.org/537422 Package-Manager: Portage-2.3.42, Repoman-2.3.9 .../vorbis-tools/vorbis-tools-1.4.0-r3.ebuild | 45 ---------------------- 1 file changed, 45 deletions(-) diff --git a/media-sound/vorbis-tools/vorbis-tools-1.4.0-r3.ebuild b/media-sound/vorbis-tools/vorbis-tools-1.4.0-r3.ebuild deleted file mode 100644 index 040a329e40b..00000000000 --- a/media-sound/vorbis-tools/vorbis-tools-1.4.0-r3.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -inherit autotools eutils - -DESCRIPTION="tools for using the Ogg Vorbis sound file format" -HOMEPAGE="http://www.vorbis.com" -SRC_URI="http://downloads.xiph.org/releases/vorbis/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris" -IUSE="flac kate nls +ogg123 speex" - -RDEPEND=">=media-libs/libvorbis-1.3.0 - flac? ( media-libs/flac ) - kate? ( media-libs/libkate ) - ogg123? ( - >=media-libs/libao-1.0.0 - net-misc/curl - ) - speex? ( media-libs/speex )" -DEPEND="${RDEPEND} - nls? ( sys-devel/gettext ) - virtual/pkgconfig" - -DOCS="AUTHORS CHANGES README" - -src_prepare() { - epatch "${FILESDIR}"/${P}-underlinking.patch - epatch "${FILESDIR}"/${P}-format-security.patch - epatch "${FILESDIR}"/${P}-aiff-buffer-overflow.patch - sed -i -e 's:AM_CONFIG_HEADER:AC_CONFIG_HEADERS:' configure.ac || die #515220 - eautoreconf -} - -src_configure() { - econf \ - $(use_enable nls) \ - $(use_enable ogg123) \ - $(use_with flac) \ - $(use_with speex) \ - $(use_with kate) -}