public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Aaron Bauman" <bman@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/lame/
Date: Fri, 23 Mar 2018 23:55:31 +0000 (UTC)	[thread overview]
Message-ID: <1521849320.b469ec2d931fcc7c2f7549e11ed413db1efb9e12.bman@gentoo> (raw)

commit:     b469ec2d931fcc7c2f7549e11ed413db1efb9e12
Author:     Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 23 23:54:38 2018 +0000
Commit:     Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Fri Mar 23 23:55:20 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b469ec2d

media-sound/lame: drop vulnerable wrt bug #634598

 media-sound/lame/Manifest              |  2 -
 media-sound/lame/lame-3.99.5-r1.ebuild | 80 ----------------------------------
 2 files changed, 82 deletions(-)

diff --git a/media-sound/lame/Manifest b/media-sound/lame/Manifest
index 660b616eb69..38a803ac7bd 100644
--- a/media-sound/lame/Manifest
+++ b/media-sound/lame/Manifest
@@ -1,3 +1 @@
 DIST lame-3.100.tar.gz 1524133 BLAKE2B 6954d30cfd3951ea07762ba5dd7ff27038b78455f423099a225ebf748abddf9970e444456ca5a6179bd381e2205b32293392cb757c203901674860710fe2c183 SHA512 0844b9eadb4aacf8000444621451277de365041cc1d97b7f7a589da0b7a23899310afd4e4d81114b9912aa97832621d20588034715573d417b2923948c08634b
-DIST lame-3.99.5-automake-2.12.patch.gz 536 BLAKE2B d8e3aa813abdd255c4e95d55936f0f53bec08af8dcfa0eec7ed9978d569fe566085f92e2bb4962b13ef56c7f8a57e2100ca767b3ae9bc13ca5dfe3bad012fc77 SHA512 9d6211e257d573ced5c29c43ba5d5cc98a231b213d6e0cfc352b14776c06c9e656ed1873d5caae466afb27dfe753eeac0842c7221a8538ccecea8f4ba0f8bfe2
-DIST lame-3.99.5.tar.gz 1445348 BLAKE2B 3bb2e3b680fb03a2af517b9d03a20e9366326a410fe9c3688323eb7cad7186273d25071258fe4df38bb47f9ee033a5b9e3fa8a508e65058f37485f204c580c72 SHA512 ce62d7eb9fc8c53c343374ded30f11153a296910f0be7e649197bca7412c6660aad1aa6143d56b750f866229eb492cf7bb4f682535c383fb4aa57d7077d8b4d8

diff --git a/media-sound/lame/lame-3.99.5-r1.ebuild b/media-sound/lame/lame-3.99.5-r1.ebuild
deleted file mode 100644
index 63a1db9b353..00000000000
--- a/media-sound/lame/lame-3.99.5-r1.ebuild
+++ /dev/null
@@ -1,80 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit autotools eutils multilib-minimal
-
-DESCRIPTION="LAME Ain't an MP3 Encoder"
-HOMEPAGE="http://lame.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz
-	mirror://gentoo/${P}-automake-2.12.patch.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
-IUSE="debug cpu_flags_x86_mmx +frontend mp3rtp sndfile static-libs"
-
-# These deps are without MULTILIB_USEDEP and are correct since we only build
-# libmp3lame for multilib and these deps apply to the lame frontend executable.
-RDEPEND="
-	frontend? (
-		>=sys-libs/ncurses-5.7-r7:0=
-		sndfile? ( >=media-libs/libsndfile-1.0.2 )
-	)
-	abi_x86_32? ( !app-emulation/emul-linux-x86-medialibs[-abi_x86_32(-)] )"
-DEPEND="${RDEPEND}
-	virtual/pkgconfig
-	cpu_flags_x86_mmx? ( dev-lang/nasm )"
-
-src_prepare() {
-	epatch -p1 \
-		"${FILESDIR}"/${PN}-3.96-ccc.patch \
-		"${FILESDIR}"/${PN}-3.98-gtk-path.patch \
-		"${FILESDIR}"/${PN}-3.99.5-tinfo.patch \
-		"${FILESDIR}"/${PN}-3.99.5-msse.patch \
-		"${WORKDIR}"/${P}-automake-2.12.patch
-
-	mkdir libmp3lame/i386/.libs || die #workaround parallel build with nasm
-
-	sed -i -e '/define sp/s/+/ + /g' libmp3lame/i386/nasm.h || die
-
-	use cpu_flags_x86_mmx || sed -i -e '/AC_PATH_PROG/s:nasm:dIsAbLe&:' configure.in #361879
-
-	AT_M4DIR=. eautoreconf
-}
-
-multilib_src_configure() {
-	local myconf
-	use cpu_flags_x86_mmx && myconf+="--enable-nasm" #361879
-
-	# Only build the frontend for the default ABI.
-	if [ "${ABI}" = "${DEFAULT_ABI}" ] ; then
-		myconf+=" $(use_enable mp3rtp) $(use_enable frontend)"
-		use sndfile && myconf+=" --with-fileio=sndfile"
-	else
-		myconf+=" --disable-frontend --disable-mp3rtp"
-	fi
-
-	ECONF_SOURCE="${S}" econf \
-		$(use_enable static-libs static) \
-		$(use_enable debug debug norm) \
-		--disable-mp3x \
-		--enable-dynamic-frontends \
-		${myconf}
-}
-
-multilib_src_install() {
-	emake DESTDIR="${D}" pkghtmldir="${EPREFIX}/usr/share/doc/${PF}/html" install
-}
-
-multilib_src_install_all() {
-	cd "${S}"
-	dobin misc/mlame
-
-	dodoc API ChangeLog HACKING README STYLEGUIDE TODO USAGE
-	docinto html
-	dodoc misc/lameGUI.html Dll/LameDLLInterface.htm
-
-	find "${ED}" -name '*.la' -exec rm -f {} +
-}


             reply	other threads:[~2018-03-23 23:55 UTC|newest]

Thread overview: 37+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-03-23 23:55 Aaron Bauman [this message]
  -- strict thread matches above, loose matches on Subject: below --
2022-08-28 10:03 [gentoo-commits] repo/gentoo:master commit in: media-sound/lame/ James Le Cuirot
2022-05-19  5:08 WANG Xuerui
2021-08-10  8:58 Yixun Lan
2021-01-06 14:31 Fabian Groffen
2020-09-08  7:56 Miroslav Šulc
2020-09-05 15:15 Sam James
2020-09-04 10:31 Sergei Trofimovich
2020-09-02 22:48 Sam James
2020-09-02 22:47 Sam James
2020-08-02 10:54 Miroslav Šulc
2020-07-21 23:15 Kent Fredric
2019-12-24 14:13 Mikle Kolyada
2019-12-10 10:54 Agostino Sarubbo
2019-12-08 10:58 Sergei Trofimovich
2019-12-03 11:58 Agostino Sarubbo
2019-12-03 11:56 Agostino Sarubbo
2019-12-03 10:07 Agostino Sarubbo
2019-12-03 10:06 Agostino Sarubbo
2019-12-03 10:03 Agostino Sarubbo
2019-12-03  0:05 Aaron Bauman
2018-03-15 21:15 Sergei Trofimovich
2018-03-15  8:28 Lars Wendler
2018-01-17 13:01 Lars Wendler
2017-11-19 15:14 Markus Meier
2017-11-08 12:51 Tobias Klausmann
2017-10-28 22:21 Sergei Trofimovich
2017-10-26 21:47 Sergei Trofimovich
2017-10-26 21:32 Sergei Trofimovich
2017-10-26 19:12 Sergei Trofimovich
2017-10-26 17:38 Thomas Deutschmann
2017-10-25  9:31 Agostino Sarubbo
2017-10-22 20:03 Andreas Hüttel
2016-03-20 23:10 Stephen Klimaszewski
2016-02-17 23:19 Alexis Ballier
2016-02-11  0:29 Manuel Rüger
2015-08-16 14:20 Justin Lecher

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1521849320.b469ec2d931fcc7c2f7549e11ed413db1efb9e12.bman@gentoo \
    --to=bman@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox