* [gentoo-commits] gentoo-x86 commit in media-sound/lame: lame-3.99.5-r1.ebuild ChangeLog
@ 2013-06-19 17:18 Alexis Ballier (aballier)
0 siblings, 0 replies; 10+ messages in thread
From: Alexis Ballier (aballier) @ 2013-06-19 17:18 UTC (permalink / raw
To: gentoo-commits
aballier 13/06/19 17:18:52
Modified: ChangeLog
Added: lame-3.99.5-r1.ebuild
Log:
build libmp3lame for multilib (skip the frontend as it is useless to build a 32bits version)
(Portage version: 2.2.0_alpha181/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Revision Changes Path
1.164 media-sound/lame/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lame/ChangeLog?rev=1.164&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lame/ChangeLog?rev=1.164&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lame/ChangeLog?r1=1.163&r2=1.164
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/lame/ChangeLog,v
retrieving revision 1.163
retrieving revision 1.164
diff -u -r1.163 -r1.164
--- ChangeLog 3 Mar 2013 15:08:00 -0000 1.163
+++ ChangeLog 19 Jun 2013 17:18:52 -0000 1.164
@@ -1,6 +1,12 @@
# ChangeLog for media-sound/lame
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/lame/ChangeLog,v 1.163 2013/03/03 15:08:00 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lame/ChangeLog,v 1.164 2013/06/19 17:18:52 aballier Exp $
+
+*lame-3.99.5-r1 (19 Jun 2013)
+
+ 19 Jun 2013; Alexis Ballier <aballier@gentoo.org> +lame-3.99.5-r1.ebuild:
+ build libmp3lame for multilib (skip the frontend as it is useless to build a
+ 32bits version)
03 Mar 2013; Samuli Suominen <ssuominen@gentoo.org> lame-3.99.5.ebuild,
-files/lame-3.99.5-pkgconfig-to-get-correct-libs.patch,
1.1 media-sound/lame/lame-3.99.5-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lame/lame-3.99.5-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lame/lame-3.99.5-r1.ebuild?rev=1.1&content-type=text/plain
Index: lame-3.99.5-r1.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/lame/lame-3.99.5-r1.ebuild,v 1.1 2013/06/19 17:18:52 aballier Exp $
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 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="debug mmx 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=">=sys-libs/ncurses-5.7-r7
sndfile? ( >=media-libs/libsndfile-1.0.2 )
abi_x86_32? ( !<=app-emulation/emul-linux-x86-medialibs-20130224 )"
DEPEND="${RDEPEND}
virtual/pkgconfig
mmx? ( dev-lang/nasm )"
src_prepare() {
epatch \
"${FILESDIR}"/${PN}-3.96-ccc.patch \
"${FILESDIR}"/${PN}-3.98-gtk-path.patch \
"${FILESDIR}"/${PN}-3.99.5-tinfo.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 mmx || sed -i -e '/AC_PATH_PROG/s:nasm:dIsAbLe&:' configure.in #361879
AT_M4DIR=. eautoreconf
}
is_best_abi() {
local all_abis=( $(multilib_get_enabled_abis) )
local best_abi="${all_abis[$(( ${#all_abis[@]} - 1 ))]}"
[ "${ABI}" = "${best_abi}" ]
}
multilib_src_configure() {
local myconf
use mmx && myconf+="--enable-nasm" #361879
# Only build the frontend for the best ABI.
if is_best_abi ; then
myconf+=" $(use_enable mp3rtp)"
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
dohtml misc/lameGUI.html Dll/LameDLLInterface.htm
find "${ED}" -name '*.la' -exec rm -f {} +
}
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-sound/lame: lame-3.99.5-r1.ebuild ChangeLog
@ 2013-06-25 22:59 Alexis Ballier (aballier)
0 siblings, 0 replies; 10+ messages in thread
From: Alexis Ballier (aballier) @ 2013-06-25 22:59 UTC (permalink / raw
To: gentoo-commits
aballier 13/06/25 22:59:05
Modified: lame-3.99.5-r1.ebuild ChangeLog
Log:
use ABI vs DEFAULT_ABI to determine the default ABI as suggested by mgorny in bug #473852
(Portage version: 2.2.0_alpha185/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Revision Changes Path
1.2 media-sound/lame/lame-3.99.5-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lame/lame-3.99.5-r1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lame/lame-3.99.5-r1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lame/lame-3.99.5-r1.ebuild?r1=1.1&r2=1.2
Index: lame-3.99.5-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/lame/lame-3.99.5-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- lame-3.99.5-r1.ebuild 19 Jun 2013 17:18:52 -0000 1.1
+++ lame-3.99.5-r1.ebuild 25 Jun 2013 22:59:05 -0000 1.2
@@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/lame/lame-3.99.5-r1.ebuild,v 1.1 2013/06/19 17:18:52 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lame/lame-3.99.5-r1.ebuild,v 1.2 2013/06/25 22:59:05 aballier Exp $
EAPI=5
@@ -41,18 +41,12 @@
AT_M4DIR=. eautoreconf
}
-is_best_abi() {
- local all_abis=( $(multilib_get_enabled_abis) )
- local best_abi="${all_abis[$(( ${#all_abis[@]} - 1 ))]}"
- [ "${ABI}" = "${best_abi}" ]
-}
-
multilib_src_configure() {
local myconf
use mmx && myconf+="--enable-nasm" #361879
- # Only build the frontend for the best ABI.
- if is_best_abi ; then
+ # Only build the frontend for the default ABI.
+ if [ "${ABI}" = "${DEFAULT_ABI}" ] ; then
myconf+=" $(use_enable mp3rtp)"
use sndfile && myconf+=" --with-fileio=sndfile"
else
1.165 media-sound/lame/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lame/ChangeLog?rev=1.165&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lame/ChangeLog?rev=1.165&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lame/ChangeLog?r1=1.164&r2=1.165
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/lame/ChangeLog,v
retrieving revision 1.164
retrieving revision 1.165
diff -u -r1.164 -r1.165
--- ChangeLog 19 Jun 2013 17:18:52 -0000 1.164
+++ ChangeLog 25 Jun 2013 22:59:05 -0000 1.165
@@ -1,6 +1,10 @@
# ChangeLog for media-sound/lame
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/lame/ChangeLog,v 1.164 2013/06/19 17:18:52 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lame/ChangeLog,v 1.165 2013/06/25 22:59:05 aballier Exp $
+
+ 25 Jun 2013; Alexis Ballier <aballier@gentoo.org> lame-3.99.5-r1.ebuild:
+ use ABI vs DEFAULT_ABI to determine the default ABI as suggested by mgorny in
+ bug #473852
*lame-3.99.5-r1 (19 Jun 2013)
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-sound/lame: lame-3.99.5-r1.ebuild ChangeLog
@ 2013-06-26 17:16 Alexis Ballier (aballier)
0 siblings, 0 replies; 10+ messages in thread
From: Alexis Ballier (aballier) @ 2013-06-26 17:16 UTC (permalink / raw
To: gentoo-commits
aballier 13/06/26 17:16:21
Modified: lame-3.99.5-r1.ebuild ChangeLog
Log:
update emul-linux blocker, bug #473838
(Portage version: 2.2.0_alpha185/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Revision Changes Path
1.3 media-sound/lame/lame-3.99.5-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lame/lame-3.99.5-r1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lame/lame-3.99.5-r1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lame/lame-3.99.5-r1.ebuild?r1=1.2&r2=1.3
Index: lame-3.99.5-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/lame/lame-3.99.5-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- lame-3.99.5-r1.ebuild 25 Jun 2013 22:59:05 -0000 1.2
+++ lame-3.99.5-r1.ebuild 26 Jun 2013 17:16:21 -0000 1.3
@@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/lame/lame-3.99.5-r1.ebuild,v 1.2 2013/06/25 22:59:05 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lame/lame-3.99.5-r1.ebuild,v 1.3 2013/06/26 17:16:21 aballier Exp $
EAPI=5
@@ -20,7 +20,7 @@
# libmp3lame for multilib and these deps apply to the lame frontend executable.
RDEPEND=">=sys-libs/ncurses-5.7-r7
sndfile? ( >=media-libs/libsndfile-1.0.2 )
- abi_x86_32? ( !<=app-emulation/emul-linux-x86-medialibs-20130224 )"
+ abi_x86_32? ( !app-emulation/emul-linux-x86-medialibs[-abi_x86_32(-)] )"
DEPEND="${RDEPEND}
virtual/pkgconfig
mmx? ( dev-lang/nasm )"
1.166 media-sound/lame/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lame/ChangeLog?rev=1.166&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lame/ChangeLog?rev=1.166&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lame/ChangeLog?r1=1.165&r2=1.166
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/lame/ChangeLog,v
retrieving revision 1.165
retrieving revision 1.166
diff -u -r1.165 -r1.166
--- ChangeLog 25 Jun 2013 22:59:05 -0000 1.165
+++ ChangeLog 26 Jun 2013 17:16:21 -0000 1.166
@@ -1,6 +1,9 @@
# ChangeLog for media-sound/lame
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/lame/ChangeLog,v 1.165 2013/06/25 22:59:05 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lame/ChangeLog,v 1.166 2013/06/26 17:16:21 aballier Exp $
+
+ 26 Jun 2013; Alexis Ballier <aballier@gentoo.org> lame-3.99.5-r1.ebuild:
+ update emul-linux blocker, bug #473838
25 Jun 2013; Alexis Ballier <aballier@gentoo.org> lame-3.99.5-r1.ebuild:
use ABI vs DEFAULT_ABI to determine the default ABI as suggested by mgorny in
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-sound/lame: lame-3.99.5-r1.ebuild ChangeLog
@ 2014-07-22 10:51 Agostino Sarubbo (ago)
0 siblings, 0 replies; 10+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-07-22 10:51 UTC (permalink / raw
To: gentoo-commits
ago 14/07/22 10:51:51
Modified: lame-3.99.5-r1.ebuild ChangeLog
Log:
Stable for amd64, wrt bug #512912
(Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key 7194459F)
Revision Changes Path
1.4 media-sound/lame/lame-3.99.5-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lame/lame-3.99.5-r1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lame/lame-3.99.5-r1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lame/lame-3.99.5-r1.ebuild?r1=1.3&r2=1.4
Index: lame-3.99.5-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/lame/lame-3.99.5-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- lame-3.99.5-r1.ebuild 26 Jun 2013 17:16:21 -0000 1.3
+++ lame-3.99.5-r1.ebuild 22 Jul 2014 10:51:51 -0000 1.4
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/lame/lame-3.99.5-r1.ebuild,v 1.3 2013/06/26 17:16:21 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lame/lame-3.99.5-r1.ebuild,v 1.4 2014/07/22 10:51:51 ago Exp $
EAPI=5
@@ -13,7 +13,7 @@
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="debug mmx mp3rtp sndfile static-libs"
# These deps are without MULTILIB_USEDEP and are correct since we only build
1.167 media-sound/lame/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lame/ChangeLog?rev=1.167&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lame/ChangeLog?rev=1.167&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lame/ChangeLog?r1=1.166&r2=1.167
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/lame/ChangeLog,v
retrieving revision 1.166
retrieving revision 1.167
diff -u -r1.166 -r1.167
--- ChangeLog 26 Jun 2013 17:16:21 -0000 1.166
+++ ChangeLog 22 Jul 2014 10:51:51 -0000 1.167
@@ -1,6 +1,9 @@
# ChangeLog for media-sound/lame
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/lame/ChangeLog,v 1.166 2013/06/26 17:16:21 aballier Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lame/ChangeLog,v 1.167 2014/07/22 10:51:51 ago Exp $
+
+ 22 Jul 2014; Agostino Sarubbo <ago@gentoo.org> lame-3.99.5-r1.ebuild:
+ Stable for amd64, wrt bug #512912
26 Jun 2013; Alexis Ballier <aballier@gentoo.org> lame-3.99.5-r1.ebuild:
update emul-linux blocker, bug #473838
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-sound/lame: lame-3.99.5-r1.ebuild ChangeLog
@ 2014-07-23 15:23 Agostino Sarubbo (ago)
0 siblings, 0 replies; 10+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-07-23 15:23 UTC (permalink / raw
To: gentoo-commits
ago 14/07/23 15:23:05
Modified: lame-3.99.5-r1.ebuild ChangeLog
Log:
Stable for x86, wrt bug #512012
(Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key 7194459F)
Revision Changes Path
1.5 media-sound/lame/lame-3.99.5-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lame/lame-3.99.5-r1.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lame/lame-3.99.5-r1.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lame/lame-3.99.5-r1.ebuild?r1=1.4&r2=1.5
Index: lame-3.99.5-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/lame/lame-3.99.5-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- lame-3.99.5-r1.ebuild 22 Jul 2014 10:51:51 -0000 1.4
+++ lame-3.99.5-r1.ebuild 23 Jul 2014 15:23:05 -0000 1.5
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/lame/lame-3.99.5-r1.ebuild,v 1.4 2014/07/22 10:51:51 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lame/lame-3.99.5-r1.ebuild,v 1.5 2014/07/23 15:23:05 ago Exp $
EAPI=5
@@ -13,7 +13,7 @@
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="debug mmx mp3rtp sndfile static-libs"
# These deps are without MULTILIB_USEDEP and are correct since we only build
1.168 media-sound/lame/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lame/ChangeLog?rev=1.168&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lame/ChangeLog?rev=1.168&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lame/ChangeLog?r1=1.167&r2=1.168
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/lame/ChangeLog,v
retrieving revision 1.167
retrieving revision 1.168
diff -u -r1.167 -r1.168
--- ChangeLog 22 Jul 2014 10:51:51 -0000 1.167
+++ ChangeLog 23 Jul 2014 15:23:05 -0000 1.168
@@ -1,6 +1,9 @@
# ChangeLog for media-sound/lame
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/lame/ChangeLog,v 1.167 2014/07/22 10:51:51 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lame/ChangeLog,v 1.168 2014/07/23 15:23:05 ago Exp $
+
+ 23 Jul 2014; Agostino Sarubbo <ago@gentoo.org> lame-3.99.5-r1.ebuild:
+ Stable for x86, wrt bug #512012
22 Jul 2014; Agostino Sarubbo <ago@gentoo.org> lame-3.99.5-r1.ebuild:
Stable for amd64, wrt bug #512912
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-sound/lame: lame-3.99.5-r1.ebuild ChangeLog
@ 2014-07-28 13:48 Agostino Sarubbo (ago)
0 siblings, 0 replies; 10+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-07-28 13:48 UTC (permalink / raw
To: gentoo-commits
ago 14/07/28 13:48:29
Modified: lame-3.99.5-r1.ebuild ChangeLog
Log:
Stable for ppc, wrt bug #512012
(Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key 7194459F)
Revision Changes Path
1.6 media-sound/lame/lame-3.99.5-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lame/lame-3.99.5-r1.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lame/lame-3.99.5-r1.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lame/lame-3.99.5-r1.ebuild?r1=1.5&r2=1.6
Index: lame-3.99.5-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/lame/lame-3.99.5-r1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- lame-3.99.5-r1.ebuild 23 Jul 2014 15:23:05 -0000 1.5
+++ lame-3.99.5-r1.ebuild 28 Jul 2014 13:48:29 -0000 1.6
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/lame/lame-3.99.5-r1.ebuild,v 1.5 2014/07/23 15:23:05 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lame/lame-3.99.5-r1.ebuild,v 1.6 2014/07/28 13:48:29 ago Exp $
EAPI=5
@@ -13,7 +13,7 @@
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ~ppc64 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="debug mmx mp3rtp sndfile static-libs"
# These deps are without MULTILIB_USEDEP and are correct since we only build
1.169 media-sound/lame/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lame/ChangeLog?rev=1.169&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lame/ChangeLog?rev=1.169&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lame/ChangeLog?r1=1.168&r2=1.169
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/lame/ChangeLog,v
retrieving revision 1.168
retrieving revision 1.169
diff -u -r1.168 -r1.169
--- ChangeLog 23 Jul 2014 15:23:05 -0000 1.168
+++ ChangeLog 28 Jul 2014 13:48:29 -0000 1.169
@@ -1,6 +1,9 @@
# ChangeLog for media-sound/lame
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/lame/ChangeLog,v 1.168 2014/07/23 15:23:05 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lame/ChangeLog,v 1.169 2014/07/28 13:48:29 ago Exp $
+
+ 28 Jul 2014; Agostino Sarubbo <ago@gentoo.org> lame-3.99.5-r1.ebuild:
+ Stable for ppc, wrt bug #512012
23 Jul 2014; Agostino Sarubbo <ago@gentoo.org> lame-3.99.5-r1.ebuild:
Stable for x86, wrt bug #512012
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-sound/lame: lame-3.99.5-r1.ebuild ChangeLog
@ 2014-08-05 20:09 Markus Meier (maekke)
0 siblings, 0 replies; 10+ messages in thread
From: Markus Meier (maekke) @ 2014-08-05 20:09 UTC (permalink / raw
To: gentoo-commits
maekke 14/08/05 20:09:08
Modified: lame-3.99.5-r1.ebuild ChangeLog
Log:
arm stable, bug #512012
(Portage version: 2.2.10/cvs/Linux x86_64, RepoMan options: --include-arches="arm", signed Manifest commit with key 072AD062)
Revision Changes Path
1.8 media-sound/lame/lame-3.99.5-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lame/lame-3.99.5-r1.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lame/lame-3.99.5-r1.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lame/lame-3.99.5-r1.ebuild?r1=1.7&r2=1.8
Index: lame-3.99.5-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/lame/lame-3.99.5-r1.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- lame-3.99.5-r1.ebuild 31 Jul 2014 14:33:57 -0000 1.7
+++ lame-3.99.5-r1.ebuild 5 Aug 2014 20:09:07 -0000 1.8
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/lame/lame-3.99.5-r1.ebuild,v 1.7 2014/07/31 14:33:57 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lame/lame-3.99.5-r1.ebuild,v 1.8 2014/08/05 20:09:07 maekke Exp $
EAPI=5
@@ -13,7 +13,7 @@
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ~ppc64 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~hppa ~ia64 ~mips ppc ~ppc64 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="debug mmx mp3rtp sndfile static-libs"
# These deps are without MULTILIB_USEDEP and are correct since we only build
1.171 media-sound/lame/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lame/ChangeLog?rev=1.171&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lame/ChangeLog?rev=1.171&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lame/ChangeLog?r1=1.170&r2=1.171
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/lame/ChangeLog,v
retrieving revision 1.170
retrieving revision 1.171
diff -u -r1.170 -r1.171
--- ChangeLog 31 Jul 2014 14:33:57 -0000 1.170
+++ ChangeLog 5 Aug 2014 20:09:08 -0000 1.171
@@ -1,6 +1,9 @@
# ChangeLog for media-sound/lame
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/lame/ChangeLog,v 1.170 2014/07/31 14:33:57 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lame/ChangeLog,v 1.171 2014/08/05 20:09:08 maekke Exp $
+
+ 05 Aug 2014; Markus Meier <maekke@gentoo.org> lame-3.99.5-r1.ebuild:
+ arm stable, bug #512012
31 Jul 2014; Tobias Klausmann <klausman@gentoo.org> lame-3.99.5-r1.ebuild:
Stable on alpha, bug #515234
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-sound/lame: lame-3.99.5-r1.ebuild ChangeLog
@ 2014-08-09 10:47 Agostino Sarubbo (ago)
0 siblings, 0 replies; 10+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-08-09 10:47 UTC (permalink / raw
To: gentoo-commits
ago 14/08/09 10:47:04
Modified: lame-3.99.5-r1.ebuild ChangeLog
Log:
Stable for ppc64, wrt bug #515234
(Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --include-arches="ppc64", signed Manifest commit with key 7194459F)
Revision Changes Path
1.10 media-sound/lame/lame-3.99.5-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lame/lame-3.99.5-r1.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lame/lame-3.99.5-r1.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lame/lame-3.99.5-r1.ebuild?r1=1.9&r2=1.10
Index: lame-3.99.5-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/lame/lame-3.99.5-r1.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- lame-3.99.5-r1.ebuild 7 Aug 2014 19:11:46 -0000 1.9
+++ lame-3.99.5-r1.ebuild 9 Aug 2014 10:47:04 -0000 1.10
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/lame/lame-3.99.5-r1.ebuild,v 1.9 2014/08/07 19:11:46 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lame/lame-3.99.5-r1.ebuild,v 1.10 2014/08/09 10:47:04 ago Exp $
EAPI=5
@@ -13,7 +13,7 @@
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ppc ~ppc64 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="debug mmx mp3rtp sndfile static-libs"
# These deps are without MULTILIB_USEDEP and are correct since we only build
1.173 media-sound/lame/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lame/ChangeLog?rev=1.173&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lame/ChangeLog?rev=1.173&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lame/ChangeLog?r1=1.172&r2=1.173
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/lame/ChangeLog,v
retrieving revision 1.172
retrieving revision 1.173
diff -u -r1.172 -r1.173
--- ChangeLog 7 Aug 2014 19:11:46 -0000 1.172
+++ ChangeLog 9 Aug 2014 10:47:04 -0000 1.173
@@ -1,6 +1,9 @@
# ChangeLog for media-sound/lame
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/lame/ChangeLog,v 1.172 2014/08/07 19:11:46 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lame/ChangeLog,v 1.173 2014/08/09 10:47:04 ago Exp $
+
+ 09 Aug 2014; Agostino Sarubbo <ago@gentoo.org> lame-3.99.5-r1.ebuild:
+ Stable for ppc64, wrt bug #515234
07 Aug 2014; Jeroen Roovers <jer@gentoo.org> lame-3.99.5-r1.ebuild:
Stable for HPPA (bug #512012).
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-sound/lame: lame-3.99.5-r1.ebuild ChangeLog
@ 2014-08-10 9:20 Agostino Sarubbo (ago)
0 siblings, 0 replies; 10+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-08-10 9:20 UTC (permalink / raw
To: gentoo-commits
ago 14/08/10 09:20:39
Modified: lame-3.99.5-r1.ebuild ChangeLog
Log:
Stable for ia64, wrt bug #515234
(Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --include-arches="ia64", signed Manifest commit with key 7194459F)
Revision Changes Path
1.11 media-sound/lame/lame-3.99.5-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lame/lame-3.99.5-r1.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lame/lame-3.99.5-r1.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lame/lame-3.99.5-r1.ebuild?r1=1.10&r2=1.11
Index: lame-3.99.5-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/lame/lame-3.99.5-r1.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- lame-3.99.5-r1.ebuild 9 Aug 2014 10:47:04 -0000 1.10
+++ lame-3.99.5-r1.ebuild 10 Aug 2014 09:20:39 -0000 1.11
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/lame/lame-3.99.5-r1.ebuild,v 1.10 2014/08/09 10:47:04 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lame/lame-3.99.5-r1.ebuild,v 1.11 2014/08/10 09:20:39 ago Exp $
EAPI=5
@@ -13,7 +13,7 @@
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="debug mmx mp3rtp sndfile static-libs"
# These deps are without MULTILIB_USEDEP and are correct since we only build
1.174 media-sound/lame/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lame/ChangeLog?rev=1.174&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lame/ChangeLog?rev=1.174&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lame/ChangeLog?r1=1.173&r2=1.174
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/lame/ChangeLog,v
retrieving revision 1.173
retrieving revision 1.174
diff -u -r1.173 -r1.174
--- ChangeLog 9 Aug 2014 10:47:04 -0000 1.173
+++ ChangeLog 10 Aug 2014 09:20:39 -0000 1.174
@@ -1,6 +1,9 @@
# ChangeLog for media-sound/lame
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/lame/ChangeLog,v 1.173 2014/08/09 10:47:04 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lame/ChangeLog,v 1.174 2014/08/10 09:20:39 ago Exp $
+
+ 10 Aug 2014; Agostino Sarubbo <ago@gentoo.org> lame-3.99.5-r1.ebuild:
+ Stable for ia64, wrt bug #515234
09 Aug 2014; Agostino Sarubbo <ago@gentoo.org> lame-3.99.5-r1.ebuild:
Stable for ppc64, wrt bug #515234
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-sound/lame: lame-3.99.5-r1.ebuild ChangeLog
@ 2014-08-10 9:30 Agostino Sarubbo (ago)
0 siblings, 0 replies; 10+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-08-10 9:30 UTC (permalink / raw
To: gentoo-commits
ago 14/08/10 09:30:20
Modified: lame-3.99.5-r1.ebuild ChangeLog
Log:
Stable for sparc, wrt bug #515234
(Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --include-arches="sparc", signed Manifest commit with key 7194459F)
Revision Changes Path
1.12 media-sound/lame/lame-3.99.5-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lame/lame-3.99.5-r1.ebuild?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lame/lame-3.99.5-r1.ebuild?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lame/lame-3.99.5-r1.ebuild?r1=1.11&r2=1.12
Index: lame-3.99.5-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/lame/lame-3.99.5-r1.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- lame-3.99.5-r1.ebuild 10 Aug 2014 09:20:39 -0000 1.11
+++ lame-3.99.5-r1.ebuild 10 Aug 2014 09:30:20 -0000 1.12
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/lame/lame-3.99.5-r1.ebuild,v 1.11 2014/08/10 09:20:39 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lame/lame-3.99.5-r1.ebuild,v 1.12 2014/08/10 09:30:20 ago Exp $
EAPI=5
@@ -13,7 +13,7 @@
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="debug mmx mp3rtp sndfile static-libs"
# These deps are without MULTILIB_USEDEP and are correct since we only build
1.175 media-sound/lame/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lame/ChangeLog?rev=1.175&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lame/ChangeLog?rev=1.175&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lame/ChangeLog?r1=1.174&r2=1.175
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/lame/ChangeLog,v
retrieving revision 1.174
retrieving revision 1.175
diff -u -r1.174 -r1.175
--- ChangeLog 10 Aug 2014 09:20:39 -0000 1.174
+++ ChangeLog 10 Aug 2014 09:30:20 -0000 1.175
@@ -1,6 +1,9 @@
# ChangeLog for media-sound/lame
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/lame/ChangeLog,v 1.174 2014/08/10 09:20:39 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lame/ChangeLog,v 1.175 2014/08/10 09:30:20 ago Exp $
+
+ 10 Aug 2014; Agostino Sarubbo <ago@gentoo.org> lame-3.99.5-r1.ebuild:
+ Stable for sparc, wrt bug #515234
10 Aug 2014; Agostino Sarubbo <ago@gentoo.org> lame-3.99.5-r1.ebuild:
Stable for ia64, wrt bug #515234
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2014-08-11 20:28 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-08-10 9:30 [gentoo-commits] gentoo-x86 commit in media-sound/lame: lame-3.99.5-r1.ebuild ChangeLog Agostino Sarubbo (ago)
-- strict thread matches above, loose matches on Subject: below --
2014-08-10 9:20 Agostino Sarubbo (ago)
2014-08-09 10:47 Agostino Sarubbo (ago)
2014-08-05 20:09 Markus Meier (maekke)
2014-07-28 13:48 Agostino Sarubbo (ago)
2014-07-23 15:23 Agostino Sarubbo (ago)
2014-07-22 10:51 Agostino Sarubbo (ago)
2013-06-26 17:16 Alexis Ballier (aballier)
2013-06-25 22:59 Alexis Ballier (aballier)
2013-06-19 17:18 Alexis Ballier (aballier)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox