Note: Due to technical difficulties, the Archives are currently not up to date.
GMANE provides an alternative service for most mailing lists. c.f. bug 424647
List Archive: gentoo-commits
chainsaw 10/05/02 14:47:58
Modified: ChangeLog
Added: mp3gain-1.5.1.ebuild
Log:
Version bump as requested by Daniel Pinto dos Santos in bug #285794. Dropped long options support as I was unable to rebase it. Addressed format string vulnerability with a patch.
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Revision Changes Path
1.42 media-sound/mp3gain/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/mp3gain/ChangeLog?rev=1.42&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/mp3gain/ChangeLog?rev=1.42&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/mp3gain/ChangeLog?r1=1.41&r2=1.42
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/mp3gain/ChangeLog,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -r1.41 -r1.42
--- ChangeLog 7 Jan 2010 14:38:48 -0000 1.41
+++ ChangeLog 2 May 2010 14:47:58 -0000 1.42
@@ -1,6 +1,14 @@
# ChangeLog for media-sound/mp3gain
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/mp3gain/ChangeLog,v 1.41 2010/01/07 14:38:48 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/mp3gain/ChangeLog,v 1.42 2010/05/02 14:47:58 chainsaw Exp $
+
+*mp3gain-1.5.1 (02 May 2010)
+
+ 02 May 2010; <chainsaw@g.o> +files/1.5.1-format-string.patch,
+ +mp3gain-1.5.1.ebuild:
+ Version bump as requested by Daniel Pinto dos Santos in bug #285794.
+ Dropped long options support as I was unable to rebase it. Addressed
+ format string vulnerability with a patch.
07 Jan 2010; Christian Faulhammer <fauli@g.o>
mp3gain-1.4.6-r3.ebuild:
1.1 media-sound/mp3gain/mp3gain-1.5.1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/mp3gain/mp3gain-1.5.1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/mp3gain/mp3gain-1.5.1.ebuild?rev=1.1&content-type=text/plain
Index: mp3gain-1.5.1.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/mp3gain/mp3gain-1.5.1.ebuild,v 1.1 2010/05/02 14:47:58 chainsaw Exp $
inherit eutils flag-o-matic toolchain-funcs
IUSE=""
MY_P=${P//./_}
S=${WORKDIR}
DESCRIPTION="MP3Gain automatically adjusts mp3s so that they all have the same volume"
HOMEPAGE="http://mp3gain.sourceforge.net"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}-src.zip"
SLOT="0"
LICENSE="LGPL-2.1"
KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
DEPEND="app-arch/unzip"
RDEPEND=""
src_unpack() {
unpack ${A}
cd "${S}"
filter-flags -O*
sed -i -e "s:CC=.*:CC=$(tc-getCC):" \
-e "s:CFLAGS= -Wall -O3 -DHAVE_MEMCPY:CFLAGS+= -Wall -DHAVE_MEMCPY:" \
-e "s:LIBS=.*:LIBS= ${LDFLAGS} -lm:" \
"${S}"/Makefile \
|| die "Unable to adjust build system compiler/flags."
epatch "${FILESDIR}"/${PV}-format-string.patch
}
src_install () {
dobin mp3gain
}
|
|