public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in media-libs/sdl-mixer: sdl-mixer-1.2.12-r3.ebuild ChangeLog
@ 2013-01-02  8:38 Michael Sterrett (mr_bones_)
  0 siblings, 0 replies; 12+ messages in thread
From: Michael Sterrett (mr_bones_) @ 2013-01-02  8:38 UTC (permalink / raw
  To: gentoo-commits

mr_bones_    13/01/02 08:38:39

  Modified:             ChangeLog
  Added:                sdl-mixer-1.2.12-r3.ebuild
  Log:
  build with clang (bug #448696)
  
  (Portage version: 2.1.11.31/cvs/Linux x86_64, unsigned Manifest commit)

Revision  Changes    Path
1.113                media-libs/sdl-mixer/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/ChangeLog?rev=1.113&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/ChangeLog?rev=1.113&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/ChangeLog?r1=1.112&r2=1.113

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/sdl-mixer/ChangeLog,v
retrieving revision 1.112
retrieving revision 1.113
diff -u -r1.112 -r1.113
--- ChangeLog	17 Dec 2012 01:35:51 -0000	1.112
+++ ChangeLog	2 Jan 2013 08:38:39 -0000	1.113
@@ -1,6 +1,14 @@
 # ChangeLog for media-libs/sdl-mixer
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-mixer/ChangeLog,v 1.112 2012/12/17 01:35:51 vapier Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-mixer/ChangeLog,v 1.113 2013/01/02 08:38:39 mr_bones_ Exp $
+
+*sdl-mixer-1.2.12-r3 (02 Jan 2013)
+
+  02 Jan 2013; Michael Sterrett <mr_bones_@gentoo.org>
+  +files/sdl-mixer-1.2.12-clang.patch, +sdl-mixer-1.2.12-r3.ebuild,
+  files/sdl-mixer-1.2.12-mikmod-r587.patch,
+  files/sdl-mixer-1.2.12-mikmod-r588.patch, files/sdl-mixer-1.2.12-wav.patch:
+  build with clang (bug #448696)
 
 *sdl-mixer-1.2.12-r2 (17 Dec 2012)
 



1.1                  media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild?rev=1.1&content-type=text/plain

Index: sdl-mixer-1.2.12-r3.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild,v 1.1 2013/01/02 08:38:39 mr_bones_ Exp $

EAPI=4
inherit eutils

MY_P=${P/sdl-/SDL_}
DESCRIPTION="Simple Direct Media Layer Mixer Library"
HOMEPAGE="http://www.libsdl.org/projects/SDL_mixer/"
SRC_URI="http://www.libsdl.org/projects/SDL_mixer/release/${MY_P}.tar.gz"

LICENSE="ZLIB"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
IUSE="flac fluidsynth mad midi mikmod mod modplug mp3 playtools smpeg static-libs timidity vorbis +wav"
REQUIRED_USE="
	midi? ( || ( timidity fluidsynth ) )
	timidity? ( midi )
	fluidsynth? ( midi )
	mp3? ( || ( smpeg mad ) )
	smpeg? ( mp3 )
	mad? ( mp3 )
	mod? ( || ( mikmod modplug ) )
	mikmod? ( mod )
	modplug? ( mod )
	"

DEPEND=">=media-libs/libsdl-1.2.10
	flac? ( media-libs/flac )
	midi? (
		fluidsynth? ( media-sound/fluidsynth )
		timidity? ( media-sound/timidity++ )
	)
	mp3? (
		mad? ( media-libs/libmad )
		smpeg? ( >=media-libs/smpeg-0.4.4-r1 )
	)
	mod? (
		modplug? ( media-libs/libmodplug )
		mikmod? ( >=media-libs/libmikmod-3.1.10 )
	)
	vorbis? ( >=media-libs/libvorbis-1.0_beta4 media-libs/libogg )"
RDEPEND=${DEPEND}

S=${WORKDIR}/${MY_P}

src_prepare() {
	epatch \
		"${FILESDIR}"/${P}-wav.patch \
		"${FILESDIR}"/${P}-clang.patch \
		"${FILESDIR}"/${P}-mikmod-r58{7,8}.patch #445980
	sed -i \
		-e '/link.*play/s/-o/$(LDFLAGS) -o/' \
		Makefile.in || die
}

src_configure() {
	econf \
		--disable-dependency-tracking \
		--disable-music-flac-shared \
		--disable-music-fluidsynth-shared \
		--disable-music-mod-shared \
		--disable-music-mp3-shared \
		--disable-music-ogg-shared \
		$(use_enable wav music-wave) \
		$(use_enable vorbis music-ogg) \
		$(use_enable mikmod music-mod) \
		$(use_enable modplug music-mod-modplug) \
		$(use_enable flac music-flac) \
		$(use_enable static-libs static) \
		$(use_enable smpeg music-mp3) \
		$(use_enable mad music-mp3-mad-gpl) \
		$(use_enable timidity music-timidity-midi) \
		$(use_enable fluidsynth music-fluidsynth-midi)
}

src_install() {
	emake DESTDIR="${D}" install
	if use playtools; then
		emake DESTDIR="${D}" install-bin
	fi
	dodoc CHANGES README
	if ! use static-libs ; then
		find "${D}" -type f -name '*.la' -exec rm {} + || die
	fi
}

pkg_postinst() {
	# bug 412035
	# https://bugs.gentoo.org/show_bug.cgi?id=412035
	if use midi ; then
		if use fluidsynth; then
			ewarn "FluidSynth support requires you to set the SDL_SOUNDFONTS"
			ewarn "environment variable to the location of a SoundFont file"
			ewarn "unless the game or application happens to do this for you."

			if use timidity; then
				ewarn "Failing to do so will result in Timidity being used instead."
			else
				ewarn "Failing to do so will result in silence."
			fi
		fi
	fi
}





^ permalink raw reply	[flat|nested] 12+ messages in thread

* [gentoo-commits] gentoo-x86 commit in media-libs/sdl-mixer: sdl-mixer-1.2.12-r3.ebuild ChangeLog
@ 2013-02-06  4:25 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 12+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-02-06  4:25 UTC (permalink / raw
  To: gentoo-commits

ago         13/02/06 04:25:38

  Modified:             sdl-mixer-1.2.12-r3.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #455490
  
  (Portage version: 2.1.11.31/cvs/Linux x86_64, unsigned Manifest commit)

Revision  Changes    Path
1.2                  media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild?r1=1.1&r2=1.2

Index: sdl-mixer-1.2.12-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sdl-mixer-1.2.12-r3.ebuild	2 Jan 2013 08:38:39 -0000	1.1
+++ sdl-mixer-1.2.12-r3.ebuild	6 Feb 2013 04:25:38 -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-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild,v 1.1 2013/01/02 08:38:39 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild,v 1.2 2013/02/06 04:25:38 ago Exp $
 
 EAPI=4
 inherit eutils
@@ -12,7 +12,7 @@
 
 LICENSE="ZLIB"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
 IUSE="flac fluidsynth mad midi mikmod mod modplug mp3 playtools smpeg static-libs timidity vorbis +wav"
 REQUIRED_USE="
 	midi? ( || ( timidity fluidsynth ) )



1.115                media-libs/sdl-mixer/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/ChangeLog?rev=1.115&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/ChangeLog?rev=1.115&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/ChangeLog?r1=1.114&r2=1.115

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/sdl-mixer/ChangeLog,v
retrieving revision 1.114
retrieving revision 1.115
diff -u -r1.114 -r1.115
--- ChangeLog	22 Jan 2013 21:03:21 -0000	1.114
+++ ChangeLog	6 Feb 2013 04:25:38 -0000	1.115
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/sdl-mixer
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-mixer/ChangeLog,v 1.114 2013/01/22 21:03:21 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-mixer/ChangeLog,v 1.115 2013/02/06 04:25:38 ago Exp $
+
+  06 Feb 2013; Agostino Sarubbo <ago@gentoo.org> sdl-mixer-1.2.12-r3.ebuild:
+  Stable for amd64, wrt bug #455490
 
   22 Jan 2013; Michael Sterrett <mr_bones_@gentoo.org>
   -sdl-mixer-1.2.12-r2.ebuild:





^ permalink raw reply	[flat|nested] 12+ messages in thread

* [gentoo-commits] gentoo-x86 commit in media-libs/sdl-mixer: sdl-mixer-1.2.12-r3.ebuild ChangeLog
@ 2013-02-06  4:26 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 12+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-02-06  4:26 UTC (permalink / raw
  To: gentoo-commits

ago         13/02/06 04:26:14

  Modified:             sdl-mixer-1.2.12-r3.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #455490
  
  (Portage version: 2.1.11.31/cvs/Linux x86_64, unsigned Manifest commit)

Revision  Changes    Path
1.3                  media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild?r1=1.2&r2=1.3

Index: sdl-mixer-1.2.12-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- sdl-mixer-1.2.12-r3.ebuild	6 Feb 2013 04:25:38 -0000	1.2
+++ sdl-mixer-1.2.12-r3.ebuild	6 Feb 2013 04:26:14 -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-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild,v 1.2 2013/02/06 04:25:38 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild,v 1.3 2013/02/06 04:26:14 ago Exp $
 
 EAPI=4
 inherit eutils
@@ -12,7 +12,7 @@
 
 LICENSE="ZLIB"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
 IUSE="flac fluidsynth mad midi mikmod mod modplug mp3 playtools smpeg static-libs timidity vorbis +wav"
 REQUIRED_USE="
 	midi? ( || ( timidity fluidsynth ) )



1.116                media-libs/sdl-mixer/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/ChangeLog?rev=1.116&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/ChangeLog?rev=1.116&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/ChangeLog?r1=1.115&r2=1.116

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/sdl-mixer/ChangeLog,v
retrieving revision 1.115
retrieving revision 1.116
diff -u -r1.115 -r1.116
--- ChangeLog	6 Feb 2013 04:25:38 -0000	1.115
+++ ChangeLog	6 Feb 2013 04:26:14 -0000	1.116
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/sdl-mixer
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-mixer/ChangeLog,v 1.115 2013/02/06 04:25:38 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-mixer/ChangeLog,v 1.116 2013/02/06 04:26:14 ago Exp $
+
+  06 Feb 2013; Agostino Sarubbo <ago@gentoo.org> sdl-mixer-1.2.12-r3.ebuild:
+  Stable for x86, wrt bug #455490
 
   06 Feb 2013; Agostino Sarubbo <ago@gentoo.org> sdl-mixer-1.2.12-r3.ebuild:
   Stable for amd64, wrt bug #455490





^ permalink raw reply	[flat|nested] 12+ messages in thread

* [gentoo-commits] gentoo-x86 commit in media-libs/sdl-mixer: sdl-mixer-1.2.12-r3.ebuild ChangeLog
@ 2013-02-06 19:45 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 12+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-02-06 19:45 UTC (permalink / raw
  To: gentoo-commits

ago         13/02/06 19:45:15

  Modified:             sdl-mixer-1.2.12-r3.ebuild ChangeLog
  Log:
  Stable for sparc, wrt bug #455490
  
  (Portage version: 2.1.11.31/cvs/Linux ppc64, unsigned Manifest commit)

Revision  Changes    Path
1.4                  media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild?r1=1.3&r2=1.4

Index: sdl-mixer-1.2.12-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- sdl-mixer-1.2.12-r3.ebuild	6 Feb 2013 04:26:14 -0000	1.3
+++ sdl-mixer-1.2.12-r3.ebuild	6 Feb 2013 19:45:15 -0000	1.4
@@ -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-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild,v 1.3 2013/02/06 04:26:14 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild,v 1.4 2013/02/06 19:45:15 ago Exp $
 
 EAPI=4
 inherit eutils
@@ -12,7 +12,7 @@
 
 LICENSE="ZLIB"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
 IUSE="flac fluidsynth mad midi mikmod mod modplug mp3 playtools smpeg static-libs timidity vorbis +wav"
 REQUIRED_USE="
 	midi? ( || ( timidity fluidsynth ) )



1.117                media-libs/sdl-mixer/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/ChangeLog?rev=1.117&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/ChangeLog?rev=1.117&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/ChangeLog?r1=1.116&r2=1.117

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/sdl-mixer/ChangeLog,v
retrieving revision 1.116
retrieving revision 1.117
diff -u -r1.116 -r1.117
--- ChangeLog	6 Feb 2013 04:26:14 -0000	1.116
+++ ChangeLog	6 Feb 2013 19:45:15 -0000	1.117
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/sdl-mixer
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-mixer/ChangeLog,v 1.116 2013/02/06 04:26:14 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-mixer/ChangeLog,v 1.117 2013/02/06 19:45:15 ago Exp $
+
+  06 Feb 2013; Agostino Sarubbo <ago@gentoo.org> sdl-mixer-1.2.12-r3.ebuild:
+  Stable for sparc, wrt bug #455490
 
   06 Feb 2013; Agostino Sarubbo <ago@gentoo.org> sdl-mixer-1.2.12-r3.ebuild:
   Stable for x86, wrt bug #455490





^ permalink raw reply	[flat|nested] 12+ messages in thread

* [gentoo-commits] gentoo-x86 commit in media-libs/sdl-mixer: sdl-mixer-1.2.12-r3.ebuild ChangeLog
@ 2013-02-08 16:32 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 12+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-02-08 16:32 UTC (permalink / raw
  To: gentoo-commits

ago         13/02/08 16:32:23

  Modified:             sdl-mixer-1.2.12-r3.ebuild ChangeLog
  Log:
  Stable for alpha, wrt bug #455490
  
  (Portage version: 2.1.11.31/cvs/Linux ppc64, unsigned Manifest commit)

Revision  Changes    Path
1.5                  media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild?r1=1.4&r2=1.5

Index: sdl-mixer-1.2.12-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- sdl-mixer-1.2.12-r3.ebuild	6 Feb 2013 19:45:15 -0000	1.4
+++ sdl-mixer-1.2.12-r3.ebuild	8 Feb 2013 16:32:23 -0000	1.5
@@ -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-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild,v 1.4 2013/02/06 19:45:15 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild,v 1.5 2013/02/08 16:32:23 ago Exp $
 
 EAPI=4
 inherit eutils
@@ -12,7 +12,7 @@
 
 LICENSE="ZLIB"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
 IUSE="flac fluidsynth mad midi mikmod mod modplug mp3 playtools smpeg static-libs timidity vorbis +wav"
 REQUIRED_USE="
 	midi? ( || ( timidity fluidsynth ) )



1.118                media-libs/sdl-mixer/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/ChangeLog?rev=1.118&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/ChangeLog?rev=1.118&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/ChangeLog?r1=1.117&r2=1.118

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/sdl-mixer/ChangeLog,v
retrieving revision 1.117
retrieving revision 1.118
diff -u -r1.117 -r1.118
--- ChangeLog	6 Feb 2013 19:45:15 -0000	1.117
+++ ChangeLog	8 Feb 2013 16:32:23 -0000	1.118
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/sdl-mixer
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-mixer/ChangeLog,v 1.117 2013/02/06 19:45:15 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-mixer/ChangeLog,v 1.118 2013/02/08 16:32:23 ago Exp $
+
+  08 Feb 2013; Agostino Sarubbo <ago@gentoo.org> sdl-mixer-1.2.12-r3.ebuild:
+  Stable for alpha, wrt bug #455490
 
   06 Feb 2013; Agostino Sarubbo <ago@gentoo.org> sdl-mixer-1.2.12-r3.ebuild:
   Stable for sparc, wrt bug #455490





^ permalink raw reply	[flat|nested] 12+ messages in thread

* [gentoo-commits] gentoo-x86 commit in media-libs/sdl-mixer: sdl-mixer-1.2.12-r3.ebuild ChangeLog
@ 2013-02-09 18:01 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 12+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-02-09 18:01 UTC (permalink / raw
  To: gentoo-commits

ago         13/02/09 18:01:49

  Modified:             sdl-mixer-1.2.12-r3.ebuild ChangeLog
  Log:
  Stable for ia64, wrt bug #455490
  
  (Portage version: 2.1.11.31/cvs/Linux ppc64, unsigned Manifest commit)

Revision  Changes    Path
1.6                  media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild?r1=1.5&r2=1.6

Index: sdl-mixer-1.2.12-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- sdl-mixer-1.2.12-r3.ebuild	8 Feb 2013 16:32:23 -0000	1.5
+++ sdl-mixer-1.2.12-r3.ebuild	9 Feb 2013 18:01:48 -0000	1.6
@@ -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-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild,v 1.5 2013/02/08 16:32:23 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild,v 1.6 2013/02/09 18:01:48 ago Exp $
 
 EAPI=4
 inherit eutils
@@ -12,7 +12,7 @@
 
 LICENSE="ZLIB"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~hppa ia64 ~mips ~ppc ~ppc64 ~sh sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
 IUSE="flac fluidsynth mad midi mikmod mod modplug mp3 playtools smpeg static-libs timidity vorbis +wav"
 REQUIRED_USE="
 	midi? ( || ( timidity fluidsynth ) )



1.119                media-libs/sdl-mixer/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/ChangeLog?rev=1.119&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/ChangeLog?rev=1.119&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/ChangeLog?r1=1.118&r2=1.119

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/sdl-mixer/ChangeLog,v
retrieving revision 1.118
retrieving revision 1.119
diff -u -r1.118 -r1.119
--- ChangeLog	8 Feb 2013 16:32:23 -0000	1.118
+++ ChangeLog	9 Feb 2013 18:01:48 -0000	1.119
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/sdl-mixer
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-mixer/ChangeLog,v 1.118 2013/02/08 16:32:23 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-mixer/ChangeLog,v 1.119 2013/02/09 18:01:48 ago Exp $
+
+  09 Feb 2013; Agostino Sarubbo <ago@gentoo.org> sdl-mixer-1.2.12-r3.ebuild:
+  Stable for ia64, wrt bug #455490
 
   08 Feb 2013; Agostino Sarubbo <ago@gentoo.org> sdl-mixer-1.2.12-r3.ebuild:
   Stable for alpha, wrt bug #455490





^ permalink raw reply	[flat|nested] 12+ messages in thread

* [gentoo-commits] gentoo-x86 commit in media-libs/sdl-mixer: sdl-mixer-1.2.12-r3.ebuild ChangeLog
@ 2013-02-10 14:39 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 12+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-02-10 14:39 UTC (permalink / raw
  To: gentoo-commits

ago         13/02/10 14:39:39

  Modified:             sdl-mixer-1.2.12-r3.ebuild ChangeLog
  Log:
  Stable for ppc64, wrt bug #455490
  
  (Portage version: 2.1.11.31/cvs/Linux ppc64, unsigned Manifest commit)

Revision  Changes    Path
1.7                  media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild?r1=1.6&r2=1.7

Index: sdl-mixer-1.2.12-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- sdl-mixer-1.2.12-r3.ebuild	9 Feb 2013 18:01:48 -0000	1.6
+++ sdl-mixer-1.2.12-r3.ebuild	10 Feb 2013 14:39:39 -0000	1.7
@@ -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-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild,v 1.6 2013/02/09 18:01:48 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild,v 1.7 2013/02/10 14:39:39 ago Exp $
 
 EAPI=4
 inherit eutils
@@ -12,7 +12,7 @@
 
 LICENSE="ZLIB"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~hppa ia64 ~mips ~ppc ~ppc64 ~sh sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~hppa ia64 ~mips ~ppc ppc64 ~sh sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
 IUSE="flac fluidsynth mad midi mikmod mod modplug mp3 playtools smpeg static-libs timidity vorbis +wav"
 REQUIRED_USE="
 	midi? ( || ( timidity fluidsynth ) )



1.120                media-libs/sdl-mixer/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/ChangeLog?rev=1.120&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/ChangeLog?rev=1.120&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/ChangeLog?r1=1.119&r2=1.120

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/sdl-mixer/ChangeLog,v
retrieving revision 1.119
retrieving revision 1.120
diff -u -r1.119 -r1.120
--- ChangeLog	9 Feb 2013 18:01:48 -0000	1.119
+++ ChangeLog	10 Feb 2013 14:39:39 -0000	1.120
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/sdl-mixer
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-mixer/ChangeLog,v 1.119 2013/02/09 18:01:48 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-mixer/ChangeLog,v 1.120 2013/02/10 14:39:39 ago Exp $
+
+  10 Feb 2013; Agostino Sarubbo <ago@gentoo.org> sdl-mixer-1.2.12-r3.ebuild:
+  Stable for ppc64, wrt bug #455490
 
   09 Feb 2013; Agostino Sarubbo <ago@gentoo.org> sdl-mixer-1.2.12-r3.ebuild:
   Stable for ia64, wrt bug #455490





^ permalink raw reply	[flat|nested] 12+ messages in thread

* [gentoo-commits] gentoo-x86 commit in media-libs/sdl-mixer: sdl-mixer-1.2.12-r3.ebuild ChangeLog
@ 2013-02-10 17:18 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 12+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-02-10 17:18 UTC (permalink / raw
  To: gentoo-commits

ago         13/02/10 17:18:44

  Modified:             sdl-mixer-1.2.12-r3.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #455490
  
  (Portage version: 2.1.11.31/cvs/Linux ppc64, unsigned Manifest commit)

Revision  Changes    Path
1.8                  media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild?r1=1.7&r2=1.8

Index: sdl-mixer-1.2.12-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- sdl-mixer-1.2.12-r3.ebuild	10 Feb 2013 14:39:39 -0000	1.7
+++ sdl-mixer-1.2.12-r3.ebuild	10 Feb 2013 17:18:44 -0000	1.8
@@ -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-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild,v 1.7 2013/02/10 14:39:39 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild,v 1.8 2013/02/10 17:18:44 ago Exp $
 
 EAPI=4
 inherit eutils
@@ -12,7 +12,7 @@
 
 LICENSE="ZLIB"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~hppa ia64 ~mips ~ppc ppc64 ~sh sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
 IUSE="flac fluidsynth mad midi mikmod mod modplug mp3 playtools smpeg static-libs timidity vorbis +wav"
 REQUIRED_USE="
 	midi? ( || ( timidity fluidsynth ) )



1.121                media-libs/sdl-mixer/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/ChangeLog?rev=1.121&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/ChangeLog?rev=1.121&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/ChangeLog?r1=1.120&r2=1.121

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/sdl-mixer/ChangeLog,v
retrieving revision 1.120
retrieving revision 1.121
diff -u -r1.120 -r1.121
--- ChangeLog	10 Feb 2013 14:39:39 -0000	1.120
+++ ChangeLog	10 Feb 2013 17:18:44 -0000	1.121
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/sdl-mixer
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-mixer/ChangeLog,v 1.120 2013/02/10 14:39:39 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-mixer/ChangeLog,v 1.121 2013/02/10 17:18:44 ago Exp $
+
+  10 Feb 2013; Agostino Sarubbo <ago@gentoo.org> sdl-mixer-1.2.12-r3.ebuild:
+  Stable for ppc, wrt bug #455490
 
   10 Feb 2013; Agostino Sarubbo <ago@gentoo.org> sdl-mixer-1.2.12-r3.ebuild:
   Stable for ppc64, wrt bug #455490





^ permalink raw reply	[flat|nested] 12+ messages in thread

* [gentoo-commits] gentoo-x86 commit in media-libs/sdl-mixer: sdl-mixer-1.2.12-r3.ebuild ChangeLog
@ 2013-02-11 11:14 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 12+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-02-11 11:14 UTC (permalink / raw
  To: gentoo-commits

ago         13/02/11 11:14:11

  Modified:             sdl-mixer-1.2.12-r3.ebuild ChangeLog
  Log:
  Stable for arm, wrt bug #455490
  
  (Portage version: 2.1.11.31/cvs/Linux ppc64, unsigned Manifest commit)

Revision  Changes    Path
1.9                  media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild?r1=1.8&r2=1.9

Index: sdl-mixer-1.2.12-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- sdl-mixer-1.2.12-r3.ebuild	10 Feb 2013 17:18:44 -0000	1.8
+++ sdl-mixer-1.2.12-r3.ebuild	11 Feb 2013 11:14:11 -0000	1.9
@@ -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-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild,v 1.8 2013/02/10 17:18:44 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild,v 1.9 2013/02/11 11:14:11 ago Exp $
 
 EAPI=4
 inherit eutils
@@ -12,7 +12,7 @@
 
 LICENSE="ZLIB"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
 IUSE="flac fluidsynth mad midi mikmod mod modplug mp3 playtools smpeg static-libs timidity vorbis +wav"
 REQUIRED_USE="
 	midi? ( || ( timidity fluidsynth ) )



1.122                media-libs/sdl-mixer/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/ChangeLog?rev=1.122&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/ChangeLog?rev=1.122&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/ChangeLog?r1=1.121&r2=1.122

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/sdl-mixer/ChangeLog,v
retrieving revision 1.121
retrieving revision 1.122
diff -u -r1.121 -r1.122
--- ChangeLog	10 Feb 2013 17:18:44 -0000	1.121
+++ ChangeLog	11 Feb 2013 11:14:11 -0000	1.122
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/sdl-mixer
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-mixer/ChangeLog,v 1.121 2013/02/10 17:18:44 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-mixer/ChangeLog,v 1.122 2013/02/11 11:14:11 ago Exp $
+
+  11 Feb 2013; Agostino Sarubbo <ago@gentoo.org> sdl-mixer-1.2.12-r3.ebuild:
+  Stable for arm, wrt bug #455490
 
   10 Feb 2013; Agostino Sarubbo <ago@gentoo.org> sdl-mixer-1.2.12-r3.ebuild:
   Stable for ppc, wrt bug #455490





^ permalink raw reply	[flat|nested] 12+ messages in thread

* [gentoo-commits] gentoo-x86 commit in media-libs/sdl-mixer: sdl-mixer-1.2.12-r3.ebuild ChangeLog
@ 2013-02-17 18:28 Jeroen Roovers (jer)
  0 siblings, 0 replies; 12+ messages in thread
From: Jeroen Roovers (jer) @ 2013-02-17 18:28 UTC (permalink / raw
  To: gentoo-commits

jer         13/02/17 18:28:18

  Modified:             sdl-mixer-1.2.12-r3.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #455490).
  
  (Portage version: 2.2.0_alpha163/cvs/Linux x86_64, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.10                 media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild?r1=1.9&r2=1.10

Index: sdl-mixer-1.2.12-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- sdl-mixer-1.2.12-r3.ebuild	11 Feb 2013 11:14:11 -0000	1.9
+++ sdl-mixer-1.2.12-r3.ebuild	17 Feb 2013 18:28:18 -0000	1.10
@@ -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-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild,v 1.9 2013/02/11 11:14:11 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild,v 1.10 2013/02/17 18:28:18 jer Exp $
 
 EAPI=4
 inherit eutils
@@ -12,7 +12,7 @@
 
 LICENSE="ZLIB"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
 IUSE="flac fluidsynth mad midi mikmod mod modplug mp3 playtools smpeg static-libs timidity vorbis +wav"
 REQUIRED_USE="
 	midi? ( || ( timidity fluidsynth ) )



1.123                media-libs/sdl-mixer/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/ChangeLog?rev=1.123&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/ChangeLog?rev=1.123&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/ChangeLog?r1=1.122&r2=1.123

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/sdl-mixer/ChangeLog,v
retrieving revision 1.122
retrieving revision 1.123
diff -u -r1.122 -r1.123
--- ChangeLog	11 Feb 2013 11:14:11 -0000	1.122
+++ ChangeLog	17 Feb 2013 18:28:18 -0000	1.123
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/sdl-mixer
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-mixer/ChangeLog,v 1.122 2013/02/11 11:14:11 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-mixer/ChangeLog,v 1.123 2013/02/17 18:28:18 jer Exp $
+
+  17 Feb 2013; Jeroen Roovers <jer@gentoo.org> sdl-mixer-1.2.12-r3.ebuild:
+  Stable for HPPA (bug #455490).
 
   11 Feb 2013; Agostino Sarubbo <ago@gentoo.org> sdl-mixer-1.2.12-r3.ebuild:
   Stable for arm, wrt bug #455490





^ permalink raw reply	[flat|nested] 12+ messages in thread

* [gentoo-commits] gentoo-x86 commit in media-libs/sdl-mixer: sdl-mixer-1.2.12-r3.ebuild ChangeLog
@ 2013-02-24 18:04 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 12+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-02-24 18:04 UTC (permalink / raw
  To: gentoo-commits

ago         13/02/24 18:04:28

  Modified:             sdl-mixer-1.2.12-r3.ebuild ChangeLog
  Log:
  Stable for sh, wrt bug #455490
  
  (Portage version: 2.1.11.50/cvs/Linux ppc64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.11                 media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild?r1=1.10&r2=1.11

Index: sdl-mixer-1.2.12-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- sdl-mixer-1.2.12-r3.ebuild	17 Feb 2013 18:28:18 -0000	1.10
+++ sdl-mixer-1.2.12-r3.ebuild	24 Feb 2013 18:04:28 -0000	1.11
@@ -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-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild,v 1.10 2013/02/17 18:28:18 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild,v 1.11 2013/02/24 18:04:28 ago Exp $
 
 EAPI=4
 inherit eutils
@@ -12,7 +12,7 @@
 
 LICENSE="ZLIB"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
 IUSE="flac fluidsynth mad midi mikmod mod modplug mp3 playtools smpeg static-libs timidity vorbis +wav"
 REQUIRED_USE="
 	midi? ( || ( timidity fluidsynth ) )



1.124                media-libs/sdl-mixer/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/ChangeLog?rev=1.124&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/ChangeLog?rev=1.124&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/ChangeLog?r1=1.123&r2=1.124

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/sdl-mixer/ChangeLog,v
retrieving revision 1.123
retrieving revision 1.124
diff -u -r1.123 -r1.124
--- ChangeLog	17 Feb 2013 18:28:18 -0000	1.123
+++ ChangeLog	24 Feb 2013 18:04:28 -0000	1.124
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/sdl-mixer
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-mixer/ChangeLog,v 1.123 2013/02/17 18:28:18 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-mixer/ChangeLog,v 1.124 2013/02/24 18:04:28 ago Exp $
+
+  24 Feb 2013; Agostino Sarubbo <ago@gentoo.org> sdl-mixer-1.2.12-r3.ebuild:
+  Stable for sh, wrt bug #455490
 
   17 Feb 2013; Jeroen Roovers <jer@gentoo.org> sdl-mixer-1.2.12-r3.ebuild:
   Stable for HPPA (bug #455490).





^ permalink raw reply	[flat|nested] 12+ messages in thread

* [gentoo-commits] gentoo-x86 commit in media-libs/sdl-mixer: sdl-mixer-1.2.12-r3.ebuild ChangeLog
@ 2014-05-05  3:39 Michael Sterrett (mr_bones_)
  0 siblings, 0 replies; 12+ messages in thread
From: Michael Sterrett (mr_bones_) @ 2014-05-05  3:39 UTC (permalink / raw
  To: gentoo-commits

mr_bones_    14/05/05 03:39:56

  Modified:             sdl-mixer-1.2.12-r3.ebuild ChangeLog
  Log:
  collision avoidance for sdl2-mixer[playtools] (bug #509448)
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, unsigned Manifest commit)

Revision  Changes    Path
1.12                 media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild?r1=1.11&r2=1.12

Index: sdl-mixer-1.2.12-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- sdl-mixer-1.2.12-r3.ebuild	24 Feb 2013 18:04:28 -0000	1.11
+++ sdl-mixer-1.2.12-r3.ebuild	5 May 2014 03:39:56 -0000	1.12
@@ -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-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild,v 1.11 2013/02/24 18:04:28 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-mixer/sdl-mixer-1.2.12-r3.ebuild,v 1.12 2014/05/05 03:39:56 mr_bones_ Exp $
 
 EAPI=4
 inherit eutils
@@ -41,7 +41,8 @@
 		mikmod? ( >=media-libs/libmikmod-3.1.10 )
 	)
 	vorbis? ( >=media-libs/libvorbis-1.0_beta4 media-libs/libogg )"
-RDEPEND=${DEPEND}
+RDEPEND="${DEPEND}
+	playtools? ( !media-libs/sdl2-mixer[playtools] )"
 
 S=${WORKDIR}/${MY_P}
 



1.126                media-libs/sdl-mixer/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/ChangeLog?rev=1.126&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/ChangeLog?rev=1.126&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-mixer/ChangeLog?r1=1.125&r2=1.126

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/sdl-mixer/ChangeLog,v
retrieving revision 1.125
retrieving revision 1.126
diff -u -r1.125 -r1.126
--- ChangeLog	3 May 2014 10:34:42 -0000	1.125
+++ ChangeLog	5 May 2014 03:39:56 -0000	1.126
@@ -1,6 +1,10 @@
 # ChangeLog for media-libs/sdl-mixer
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-mixer/ChangeLog,v 1.125 2014/05/03 10:34:42 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-mixer/ChangeLog,v 1.126 2014/05/05 03:39:56 mr_bones_ Exp $
+
+  05 May 2014; Michael Sterrett <mr_bones_@gentoo.org>
+  sdl-mixer-1.2.12-r3.ebuild:
+  collision avoidance for sdl2-mixer[playtools] (bug #509448)
 
 *sdl-mixer-1.2.12-r4 (03 May 2014)
 





^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2014-05-05  3:40 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-02  8:38 [gentoo-commits] gentoo-x86 commit in media-libs/sdl-mixer: sdl-mixer-1.2.12-r3.ebuild ChangeLog Michael Sterrett (mr_bones_)
  -- strict thread matches above, loose matches on Subject: below --
2013-02-06  4:25 Agostino Sarubbo (ago)
2013-02-06  4:26 Agostino Sarubbo (ago)
2013-02-06 19:45 Agostino Sarubbo (ago)
2013-02-08 16:32 Agostino Sarubbo (ago)
2013-02-09 18:01 Agostino Sarubbo (ago)
2013-02-10 14:39 Agostino Sarubbo (ago)
2013-02-10 17:18 Agostino Sarubbo (ago)
2013-02-11 11:14 Agostino Sarubbo (ago)
2013-02-17 18:28 Jeroen Roovers (jer)
2013-02-24 18:04 Agostino Sarubbo (ago)
2014-05-05  3:39 Michael Sterrett (mr_bones_)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox