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 CB4CA138359 for ; Mon, 7 Sep 2020 22:22:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CDD61E07D8; Mon, 7 Sep 2020 22:22:38 +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 B2C6FE07D8 for ; Mon, 7 Sep 2020 22:22:38 +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 9665C33DE47 for ; Mon, 7 Sep 2020 22:22:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 39694348 for ; Mon, 7 Sep 2020 22:22:36 +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: <1599517350.2a89a8c0b44df34d90bf96ef6541b51bfd115914.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libmp4v2/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libmp4v2/libmp4v2-2.0.0-r1.ebuild X-VCS-Directories: media-libs/libmp4v2/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 2a89a8c0b44df34d90bf96ef6541b51bfd115914 X-VCS-Branch: master Date: Mon, 7 Sep 2020 22:22:36 +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: 08205fab-20c5-4a84-9374-8df35973df38 X-Archives-Hash: 5eda6fc28fcf645c0c46ddb1f876c03d commit: 2a89a8c0b44df34d90bf96ef6541b51bfd115914 Author: Sam James gentoo org> AuthorDate: Mon Sep 7 22:22:18 2020 +0000 Commit: Sam James gentoo org> CommitDate: Mon Sep 7 22:22:30 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a89a8c0 media-libs/libmp4v2: security cleanup Bug: https://bugs.gentoo.org/661582 Package-Manager: Portage-3.0.4, Repoman-3.0.1 Signed-off-by: Sam James gentoo.org> media-libs/libmp4v2/libmp4v2-2.0.0-r1.ebuild | 50 ---------------------------- 1 file changed, 50 deletions(-) diff --git a/media-libs/libmp4v2/libmp4v2-2.0.0-r1.ebuild b/media-libs/libmp4v2/libmp4v2-2.0.0-r1.ebuild deleted file mode 100644 index 58d839ef5f3..00000000000 --- a/media-libs/libmp4v2/libmp4v2-2.0.0-r1.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -MY_P=${P/lib} -inherit libtool - -DESCRIPTION="Functions for accessing ISO-IEC:14496-1:2001 MPEG-4 standard" -HOMEPAGE="https://code.google.com/p/mp4v2/" -SRC_URI="https://mp4v2.googlecode.com/files/${MY_P}.tar.bz2" - -LICENSE="MPL-1.1" -SLOT="0" -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="static-libs test utils" -RESTRICT="!test? ( test )" - -BDEPEND=" - sys-apps/sed - test? ( dev-util/dejagnu ) - utils? ( sys-apps/help2man ) -" - -DOCS=( doc/{Authors,BuildSource,Documentation,ReleaseNotes,ToolGuide}.txt README ) - -S=${WORKDIR}/${MY_P} - -PATCHES=( - "${FILESDIR}/${P}-gcc7.patch" - "${FILESDIR}/${P}-mp4tags-corruption.patch" - "${FILESDIR}/${P}-clang.patch" -) - -src_prepare() { - default - elibtoolize -} - -src_configure() { - econf \ - --disable-gch \ - $(use_enable utils util) \ - $(use_enable static-libs static) -} - -src_install() { - default - find "${D}" -name '*.la' -delete || die -}