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 D60F4138359 for ; Wed, 29 Jul 2020 00:20:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0830AE0C10; Wed, 29 Jul 2020 00:20:40 +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 C265CE0C10 for ; Wed, 29 Jul 2020 00:20:39 +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 A6C4934F35C for ; Wed, 29 Jul 2020 00:20:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C6AC32E7 for ; Wed, 29 Jul 2020 00:20:12 +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: <1595981977.99c6a8c3924a9938c21a05f0498046c3e73c50c8.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/audiofile/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/audiofile/audiofile-0.3.6-r3.ebuild X-VCS-Directories: media-libs/audiofile/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 99c6a8c3924a9938c21a05f0498046c3e73c50c8 X-VCS-Branch: master Date: Wed, 29 Jul 2020 00:20:12 +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: c85699fa-c7c5-4c37-98ac-2ce3042fb567 X-Archives-Hash: a4d1f1ecc7529bb4ef5a1bf50548eb13 commit: 99c6a8c3924a9938c21a05f0498046c3e73c50c8 Author: Sam James gentoo org> AuthorDate: Wed Jul 29 00:19:22 2020 +0000 Commit: Sam James gentoo org> CommitDate: Wed Jul 29 00:19:37 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99c6a8c3 media-libs/audiofile: security cleanup Bug: https://bugs.gentoo.org/687766 Bug: https://bugs.gentoo.org/614046 Package-Manager: Portage-3.0.1, Repoman-2.3.23 Signed-off-by: Sam James gentoo.org> media-libs/audiofile/audiofile-0.3.6-r3.ebuild | 50 -------------------------- 1 file changed, 50 deletions(-) diff --git a/media-libs/audiofile/audiofile-0.3.6-r3.ebuild b/media-libs/audiofile/audiofile-0.3.6-r3.ebuild deleted file mode 100644 index 7bde5367300..00000000000 --- a/media-libs/audiofile/audiofile-0.3.6-r3.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit autotools gnome.org multilib-minimal - -DESCRIPTION="An elegant API for accessing audio files" -HOMEPAGE="http://www.68k.org/~michael/audiofile/" - -LICENSE="GPL-2 LGPL-2.1" -SLOT="0/1" # subslot = soname major version -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" -IUSE="flac static-libs test" -RESTRICT="!test? ( test )" - -RDEPEND="flac? ( >=media-libs/flac-1.2.1[${MULTILIB_USEDEP}] )" -DEPEND="${RDEPEND} - virtual/pkgconfig - test? ( dev-cpp/gtest[${MULTILIB_USEDEP}] )" - -PATCHES=( - "${FILESDIR}"/${PN}-0.3.6-gcc6-build-fixes.patch - "${FILESDIR}"/${PN}-0.3.6-system-gtest.patch - "${FILESDIR}"/${PN}-0.3.6-CVE-2015-7747.patch - "${FILESDIR}"/${PN}-0.3.6-mingw32.patch -) - -src_prepare() { - default - eautoreconf -} - -multilib_src_configure() { - local myconf=( - --enable-largefile - --disable-werror - --disable-examples - $(use_enable flac) - $(use_enable static-libs static) - ) - ECONF_SOURCE="${S}" econf "${myconf[@]}" -} - -multilib_src_install_all() { - einstalldocs - - # package provides .pc file - find "${ED}" -name '*.la' -delete || die -}