public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in media-libs/allegro: allegro-5.0.8-r1.ebuild ChangeLog
@ 2013-09-06 21:15 Ian Stakenvicius (axs)
  0 siblings, 0 replies; 8+ messages in thread
From: Ian Stakenvicius (axs) @ 2013-09-06 21:15 UTC (permalink / raw
  To: gentoo-commits

axs         13/09/06 21:15:46

  Modified:             ChangeLog
  Added:                allegro-5.0.8-r1.ebuild
  Log:
  converted to multilib-build at the request of an end-user; commit OKd by radhermit
  
  (Portage version: 2.1.12.2/cvs/Linux x86_64, signed Manifest commit with key 2B6559ED)

Revision  Changes    Path
1.143                media-libs/allegro/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/allegro/ChangeLog,v
retrieving revision 1.142
retrieving revision 1.143
diff -u -r1.142 -r1.143
--- ChangeLog	8 Apr 2013 08:28:30 -0000	1.142
+++ ChangeLog	6 Sep 2013 21:15:45 -0000	1.143
@@ -1,6 +1,12 @@
 # ChangeLog for media-libs/allegro
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/allegro/ChangeLog,v 1.142 2013/04/08 08:28:30 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/allegro/ChangeLog,v 1.143 2013/09/06 21:15:45 axs Exp $
+
+*allegro-5.0.8-r1 (06 Sep 2013)
+
+  06 Sep 2013; Ian Stakenvicius <axs@gentoo.org> +allegro-5.0.8-r1.ebuild:
+  converted to multilib-build at the request of an end-user; commit OKd by
+  radhermit
 
   08 Apr 2013; Samuli Suominen <ssuominen@gentoo.org> allegro-4.4.2-r1.ebuild:
   Use subslot operator for the libpng dependency (and thus, libpng16 upgrade)



1.1                  media-libs/allegro/allegro-5.0.8-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/allegro/allegro-5.0.8-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/allegro/allegro-5.0.8-r1.ebuild?rev=1.1&content-type=text/plain

Index: allegro-5.0.8-r1.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/allegro/allegro-5.0.8-r1.ebuild,v 1.1 2013/09/06 21:15:45 axs Exp $

EAPI=5
inherit cmake-multilib

DESCRIPTION="A game programming library"
HOMEPAGE="http://alleg.sourceforge.net/"
SRC_URI="mirror://sourceforge/alleg/${P}.tar.gz"

LICENSE="BSD ZLIB"
SLOT="5"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
IUSE="alsa dumb flac gtk jpeg openal oss physfs png pulseaudio test truetype vorbis X xinerama"

RDEPEND="alsa? ( media-libs/alsa-lib[${MULTILIB_USEDEP}] )
	dumb? ( media-libs/dumb[${MULTILIB_USEDEP}] )
	flac? ( media-libs/flac[${MULTILIB_USEDEP}] )
	jpeg? ( virtual/jpeg[${MULTILIB_USEDEP}] )
	openal? ( media-libs/openal[${MULTILIB_USEDEP}] )
	physfs? ( dev-games/physfs[${MULTILIB_USEDEP}] )
	png? ( >=media-libs/libpng-1.4[${MULTILIB_USEDEP}] )
	pulseaudio? ( >=media-sound/pulseaudio-0.9.15 )
	truetype? ( >=media-libs/freetype-2[${MULTILIB_USEDEP}] )
	vorbis? ( media-libs/libvorbis[${MULTILIB_USEDEP}] )
	x11-libs/libXcursor[${MULTILIB_USEDEP}]
	x11-libs/libXxf86vm[${MULTILIB_USEDEP}]
	x11-libs/libXrandr[${MULTILIB_USEDEP}]
	x11-libs/libX11[${MULTILIB_USEDEP}]
	gtk? ( x11-libs/gtk+:2 )
	virtual/opengl
	virtual/glu
	xinerama? ( x11-libs/libXinerama[${MULTILIB_USEDEP}] )
	abi_x86_32? (
		amd64? (
			app-emulation/emul-linux-x86-opengl
			gtk? ( app-emulation/emul-linux-x86-gtklibs )
			openal? ( app-emulation/emul-linux-x86-sdl )
			pulseaudio? ( app-emulation/emul-linux-x86-soundlibs )
		)
	)"

DEPEND="${RDEPEND}
	virtual/pkgconfig
	x11-proto/xextproto
	x11-proto/xf86vidmodeproto
	x11-proto/xproto"

PATCHES=( "${FILESDIR}"/${PN}-5.0.4-underlink.patch )

MULTILIB_WRAPPED_HEADERS=( /usr/include/allegro5/allegro_native_dialog.h )

src_configure() {
	local mycmakeargs=(
		$(cmake-utils_use_want alsa)
		-DWANT_DEMO=OFF
		-DWANT_EXAMPLES=OFF
		$(cmake-utils_use_want flac)
		$(cmake-utils_use_want jpeg IMAGE_JPG)
		$(cmake-utils_use_want png IMAGE_PNG)
		$(cmake-utils_use_want dumb MODAUDIO)
		$(cmake-utils_use_want openal)
		$(cmake-utils_use_want oss)
		$(cmake-utils_use_want physfs)
		$(cmake-utils_use_want pulseaudio)
		$(cmake-utils_use_want test TESTS)
		$(cmake-utils_use_want truetype TTF)
		$(cmake-utils_use_want vorbis)
		$(cmake-utils_use_want gtk NATIVE_DIALOG)
		$(cmake-utils_use_want X opengl)
		$(cmake-utils_use_want xinerama X11_XINERAMA)
	)

	cmake-multilib_src_configure
}

src_install() {
	cmake-multilib_src_install

	nonfatal dodoc CHANGES-5.0.txt
	nonfatal dohtml -r docs/html/refman/*
	nonfatal doman docs/man/*.3
}





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

* [gentoo-commits] gentoo-x86 commit in media-libs/allegro: allegro-5.0.8-r1.ebuild ChangeLog
@ 2013-09-08 20:28 Ian Stakenvicius (axs)
  0 siblings, 0 replies; 8+ messages in thread
From: Ian Stakenvicius (axs) @ 2013-09-08 20:28 UTC (permalink / raw
  To: gentoo-commits

axs         13/09/08 20:28:40

  Modified:             allegro-5.0.8-r1.ebuild ChangeLog
  Log:
  dropped multilib-use dep for openal as the openal multilib-build ebuild isn't yet ready
  
  (Portage version: 2.1.12.2/cvs/Linux x86_64, signed Manifest commit with key 2B6559ED)

Revision  Changes    Path
1.2                  media-libs/allegro/allegro-5.0.8-r1.ebuild

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

Index: allegro-5.0.8-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/allegro/allegro-5.0.8-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- allegro-5.0.8-r1.ebuild	6 Sep 2013 21:15:45 -0000	1.1
+++ allegro-5.0.8-r1.ebuild	8 Sep 2013 20:28:40 -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/allegro/allegro-5.0.8-r1.ebuild,v 1.1 2013/09/06 21:15:45 axs Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/allegro/allegro-5.0.8-r1.ebuild,v 1.2 2013/09/08 20:28:40 axs Exp $
 
 EAPI=5
 inherit cmake-multilib
@@ -18,7 +18,7 @@
 	dumb? ( media-libs/dumb[${MULTILIB_USEDEP}] )
 	flac? ( media-libs/flac[${MULTILIB_USEDEP}] )
 	jpeg? ( virtual/jpeg[${MULTILIB_USEDEP}] )
-	openal? ( media-libs/openal[${MULTILIB_USEDEP}] )
+	openal? ( media-libs/openal )
 	physfs? ( dev-games/physfs[${MULTILIB_USEDEP}] )
 	png? ( >=media-libs/libpng-1.4[${MULTILIB_USEDEP}] )
 	pulseaudio? ( >=media-sound/pulseaudio-0.9.15 )



1.144                media-libs/allegro/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/allegro/ChangeLog,v
retrieving revision 1.143
retrieving revision 1.144
diff -u -r1.143 -r1.144
--- ChangeLog	6 Sep 2013 21:15:45 -0000	1.143
+++ ChangeLog	8 Sep 2013 20:28:40 -0000	1.144
@@ -1,6 +1,10 @@
 # ChangeLog for media-libs/allegro
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/allegro/ChangeLog,v 1.143 2013/09/06 21:15:45 axs Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/allegro/ChangeLog,v 1.144 2013/09/08 20:28:40 axs Exp $
+
+  08 Sep 2013; Ian Stakenvicius <axs@gentoo.org> allegro-5.0.8-r1.ebuild:
+  dropped multilib-use dep for openal as the openal multilib-build ebuild isn't
+  yet ready
 
 *allegro-5.0.8-r1 (06 Sep 2013)
 





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

* [gentoo-commits] gentoo-x86 commit in media-libs/allegro: allegro-5.0.8-r1.ebuild ChangeLog
@ 2014-06-16 21:38 Michal Gorny (mgorny)
  0 siblings, 0 replies; 8+ messages in thread
From: Michal Gorny (mgorny) @ 2014-06-16 21:38 UTC (permalink / raw
  To: gentoo-commits

mgorny      14/06/16 21:38:01

  Modified:             allegro-5.0.8-r1.ebuild ChangeLog
  Log:
  Add MULTILIB_USEDEPs on all packages and remove emul-linux-x86 dependencies. All required packages are fully multilib now.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)

Revision  Changes    Path
1.3                  media-libs/allegro/allegro-5.0.8-r1.ebuild

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

Index: allegro-5.0.8-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/allegro/allegro-5.0.8-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- allegro-5.0.8-r1.ebuild	8 Sep 2013 20:28:40 -0000	1.2
+++ allegro-5.0.8-r1.ebuild	16 Jun 2014 21:38:01 -0000	1.3
@@ -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/allegro/allegro-5.0.8-r1.ebuild,v 1.2 2013/09/08 20:28:40 axs Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/allegro/allegro-5.0.8-r1.ebuild,v 1.3 2014/06/16 21:38:01 mgorny Exp $
 
 EAPI=5
 inherit cmake-multilib
@@ -18,34 +18,26 @@
 	dumb? ( media-libs/dumb[${MULTILIB_USEDEP}] )
 	flac? ( media-libs/flac[${MULTILIB_USEDEP}] )
 	jpeg? ( virtual/jpeg[${MULTILIB_USEDEP}] )
-	openal? ( media-libs/openal )
+	openal? ( media-libs/openal[${MULTILIB_USEDEP}] )
 	physfs? ( dev-games/physfs[${MULTILIB_USEDEP}] )
 	png? ( >=media-libs/libpng-1.4[${MULTILIB_USEDEP}] )
-	pulseaudio? ( >=media-sound/pulseaudio-0.9.15 )
+	pulseaudio? ( >=media-sound/pulseaudio-0.9.15[${MULTILIB_USEDEP}] )
 	truetype? ( >=media-libs/freetype-2[${MULTILIB_USEDEP}] )
 	vorbis? ( media-libs/libvorbis[${MULTILIB_USEDEP}] )
 	x11-libs/libXcursor[${MULTILIB_USEDEP}]
 	x11-libs/libXxf86vm[${MULTILIB_USEDEP}]
 	x11-libs/libXrandr[${MULTILIB_USEDEP}]
 	x11-libs/libX11[${MULTILIB_USEDEP}]
-	gtk? ( x11-libs/gtk+:2 )
-	virtual/opengl
-	virtual/glu
-	xinerama? ( x11-libs/libXinerama[${MULTILIB_USEDEP}] )
-	abi_x86_32? (
-		amd64? (
-			app-emulation/emul-linux-x86-opengl
-			gtk? ( app-emulation/emul-linux-x86-gtklibs )
-			openal? ( app-emulation/emul-linux-x86-sdl )
-			pulseaudio? ( app-emulation/emul-linux-x86-soundlibs )
-		)
-	)"
+	gtk? ( x11-libs/gtk+:2[${MULTILIB_USEDEP}] )
+	virtual/opengl[${MULTILIB_USEDEP}]
+	virtual/glu[${MULTILIB_USEDEP}]
+	xinerama? ( x11-libs/libXinerama[${MULTILIB_USEDEP}] )"
 
 DEPEND="${RDEPEND}
-	virtual/pkgconfig
-	x11-proto/xextproto
-	x11-proto/xf86vidmodeproto
-	x11-proto/xproto"
+	virtual/pkgconfig[${MULTILIB_USEDEP}]
+	x11-proto/xextproto[${MULTILIB_USEDEP}]
+	x11-proto/xf86vidmodeproto[${MULTILIB_USEDEP}]
+	x11-proto/xproto[${MULTILIB_USEDEP}]"
 
 PATCHES=( "${FILESDIR}"/${PN}-5.0.4-underlink.patch )
 



1.146                media-libs/allegro/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/allegro/ChangeLog,v
retrieving revision 1.145
retrieving revision 1.146
diff -u -r1.145 -r1.146
--- ChangeLog	2 Feb 2014 11:49:29 -0000	1.145
+++ ChangeLog	16 Jun 2014 21:38:01 -0000	1.146
@@ -1,6 +1,10 @@
 # ChangeLog for media-libs/allegro
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/allegro/ChangeLog,v 1.145 2014/02/02 11:49:29 pinkbyte Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/allegro/ChangeLog,v 1.146 2014/06/16 21:38:01 mgorny Exp $
+
+  16 Jun 2014; Michał Górny <mgorny@gentoo.org> allegro-5.0.8-r1.ebuild:
+  Add MULTILIB_USEDEPs on all packages and remove emul-linux-x86 dependencies.
+  All required packages are fully multilib now.
 
   02 Feb 2014; Sergey Popov <pinkbyte@gentoo.org> allegro-4.4.2-r1.ebuild:
   Add ~mips, wrt bug #499866





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

* [gentoo-commits] gentoo-x86 commit in media-libs/allegro: allegro-5.0.8-r1.ebuild ChangeLog
@ 2014-06-18 19:26 Michal Gorny (mgorny)
  0 siblings, 0 replies; 8+ messages in thread
From: Michal Gorny (mgorny) @ 2014-06-18 19:26 UTC (permalink / raw
  To: gentoo-commits

mgorny      14/06/18 19:26:04

  Modified:             allegro-5.0.8-r1.ebuild ChangeLog
  Log:
  Update dependencies to require guaranteed EAPI=5 or multilib ebuilds, bug #513718.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)

Revision  Changes    Path
1.4                  media-libs/allegro/allegro-5.0.8-r1.ebuild

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

Index: allegro-5.0.8-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/allegro/allegro-5.0.8-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- allegro-5.0.8-r1.ebuild	16 Jun 2014 21:38:01 -0000	1.3
+++ allegro-5.0.8-r1.ebuild	18 Jun 2014 19:26:03 -0000	1.4
@@ -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-libs/allegro/allegro-5.0.8-r1.ebuild,v 1.3 2014/06/16 21:38:01 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/allegro/allegro-5.0.8-r1.ebuild,v 1.4 2014/06/18 19:26:03 mgorny Exp $
 
 EAPI=5
 inherit cmake-multilib
@@ -14,30 +14,30 @@
 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
 IUSE="alsa dumb flac gtk jpeg openal oss physfs png pulseaudio test truetype vorbis X xinerama"
 
-RDEPEND="alsa? ( media-libs/alsa-lib[${MULTILIB_USEDEP}] )
-	dumb? ( media-libs/dumb[${MULTILIB_USEDEP}] )
-	flac? ( media-libs/flac[${MULTILIB_USEDEP}] )
-	jpeg? ( virtual/jpeg[${MULTILIB_USEDEP}] )
-	openal? ( media-libs/openal[${MULTILIB_USEDEP}] )
-	physfs? ( dev-games/physfs[${MULTILIB_USEDEP}] )
-	png? ( >=media-libs/libpng-1.4[${MULTILIB_USEDEP}] )
-	pulseaudio? ( >=media-sound/pulseaudio-0.9.15[${MULTILIB_USEDEP}] )
-	truetype? ( >=media-libs/freetype-2[${MULTILIB_USEDEP}] )
-	vorbis? ( media-libs/libvorbis[${MULTILIB_USEDEP}] )
-	x11-libs/libXcursor[${MULTILIB_USEDEP}]
-	x11-libs/libXxf86vm[${MULTILIB_USEDEP}]
-	x11-libs/libXrandr[${MULTILIB_USEDEP}]
-	x11-libs/libX11[${MULTILIB_USEDEP}]
-	gtk? ( x11-libs/gtk+:2[${MULTILIB_USEDEP}] )
-	virtual/opengl[${MULTILIB_USEDEP}]
-	virtual/glu[${MULTILIB_USEDEP}]
-	xinerama? ( x11-libs/libXinerama[${MULTILIB_USEDEP}] )"
+RDEPEND="alsa? ( >=media-libs/alsa-lib-1.0.27.2[${MULTILIB_USEDEP}] )
+	dumb? ( >=media-libs/dumb-0.9.3-r2[${MULTILIB_USEDEP}] )
+	flac? ( >=media-libs/flac-1.2.1-r5[${MULTILIB_USEDEP}] )
+	jpeg? ( >=virtual/jpeg-0-r2[${MULTILIB_USEDEP}] )
+	openal? ( >=media-libs/openal-1.15.1[${MULTILIB_USEDEP}] )
+	physfs? ( >=dev-games/physfs-2.0.3-r1[${MULTILIB_USEDEP}] )
+	png? ( >=media-libs/libpng-1.5.18[${MULTILIB_USEDEP}] )
+	pulseaudio? ( >=media-sound/pulseaudio-2.1-r1[${MULTILIB_USEDEP}] )
+	truetype? ( >=media-libs/freetype-2.5.0.1[${MULTILIB_USEDEP}] )
+	vorbis? ( >=media-libs/libvorbis-1.3.3-r1[${MULTILIB_USEDEP}] )
+	>=x11-libs/libXcursor-1.1.14[${MULTILIB_USEDEP}]
+	>=x11-libs/libXxf86vm-1.1.3[${MULTILIB_USEDEP}]
+	>=x11-libs/libXrandr-1.4.2[${MULTILIB_USEDEP}]
+	>=x11-libs/libX11-1.6.2[${MULTILIB_USEDEP}]
+	gtk? ( >=x11-libs/gtk+-2.24.23:2[${MULTILIB_USEDEP}] )
+	>=virtual/opengl-7.0-r1[${MULTILIB_USEDEP}]
+	>=virtual/glu-9.0-r1[${MULTILIB_USEDEP}]
+	xinerama? ( >=x11-libs/libXinerama-1.1.3[${MULTILIB_USEDEP}] )"
 
 DEPEND="${RDEPEND}
-	virtual/pkgconfig[${MULTILIB_USEDEP}]
-	x11-proto/xextproto[${MULTILIB_USEDEP}]
-	x11-proto/xf86vidmodeproto[${MULTILIB_USEDEP}]
-	x11-proto/xproto[${MULTILIB_USEDEP}]"
+	>=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}]
+	>=x11-proto/xextproto-7.2.1-r1[${MULTILIB_USEDEP}]
+	>=x11-proto/xf86vidmodeproto-2.3.1-r1[${MULTILIB_USEDEP}]
+	>=x11-proto/xproto-7.0.24[${MULTILIB_USEDEP}]"
 
 PATCHES=( "${FILESDIR}"/${PN}-5.0.4-underlink.patch )
 



1.147                media-libs/allegro/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/allegro/ChangeLog,v
retrieving revision 1.146
retrieving revision 1.147
diff -u -r1.146 -r1.147
--- ChangeLog	16 Jun 2014 21:38:01 -0000	1.146
+++ ChangeLog	18 Jun 2014 19:26:03 -0000	1.147
@@ -1,6 +1,10 @@
 # ChangeLog for media-libs/allegro
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/allegro/ChangeLog,v 1.146 2014/06/16 21:38:01 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/allegro/ChangeLog,v 1.147 2014/06/18 19:26:03 mgorny Exp $
+
+  18 Jun 2014; Michał Górny <mgorny@gentoo.org> allegro-5.0.8-r1.ebuild:
+  Update dependencies to require guaranteed EAPI=5 or multilib ebuilds, bug
+  #513718.
 
   16 Jun 2014; Michał Górny <mgorny@gentoo.org> allegro-5.0.8-r1.ebuild:
   Add MULTILIB_USEDEPs on all packages and remove emul-linux-x86 dependencies.





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

* [gentoo-commits] gentoo-x86 commit in media-libs/allegro: allegro-5.0.8-r1.ebuild ChangeLog
@ 2014-12-27 19:29 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 8+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-12-27 19:29 UTC (permalink / raw
  To: gentoo-commits

ago         14/12/27 19:29:58

  Modified:             allegro-5.0.8-r1.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #526068
  
  (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --include-arches="amd64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.5                  media-libs/allegro/allegro-5.0.8-r1.ebuild

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

Index: allegro-5.0.8-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/allegro/allegro-5.0.8-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- allegro-5.0.8-r1.ebuild	18 Jun 2014 19:26:03 -0000	1.4
+++ allegro-5.0.8-r1.ebuild	27 Dec 2014 19:29:58 -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-libs/allegro/allegro-5.0.8-r1.ebuild,v 1.4 2014/06/18 19:26:03 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/allegro/allegro-5.0.8-r1.ebuild,v 1.5 2014/12/27 19:29:58 ago Exp $
 
 EAPI=5
 inherit cmake-multilib
@@ -11,7 +11,7 @@
 
 LICENSE="BSD ZLIB"
 SLOT="5"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~ppc ~ppc64 ~x86"
 IUSE="alsa dumb flac gtk jpeg openal oss physfs png pulseaudio test truetype vorbis X xinerama"
 
 RDEPEND="alsa? ( >=media-libs/alsa-lib-1.0.27.2[${MULTILIB_USEDEP}] )



1.149                media-libs/allegro/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/allegro/ChangeLog,v
retrieving revision 1.148
retrieving revision 1.149
diff -u -r1.148 -r1.149
--- ChangeLog	28 Jul 2014 18:30:27 -0000	1.148
+++ ChangeLog	27 Dec 2014 19:29:58 -0000	1.149
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/allegro
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/allegro/ChangeLog,v 1.148 2014/07/28 18:30:27 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/allegro/ChangeLog,v 1.149 2014/12/27 19:29:58 ago Exp $
+
+  27 Dec 2014; Agostino Sarubbo <ago@gentoo.org> allegro-5.0.8-r1.ebuild:
+  Stable for amd64, wrt bug #526068
 
   28 Jul 2014; Michael Sterrett <mr_bones_@gentoo.org> -allegro-5.0.7.ebuild:
   old





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

* [gentoo-commits] gentoo-x86 commit in media-libs/allegro: allegro-5.0.8-r1.ebuild ChangeLog
@ 2015-01-26  9:46 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 8+ messages in thread
From: Agostino Sarubbo (ago) @ 2015-01-26  9:46 UTC (permalink / raw
  To: gentoo-commits

ago         15/01/26 09:46:44

  Modified:             allegro-5.0.8-r1.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #526068
  
  (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --include-arches="x86", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.6                  media-libs/allegro/allegro-5.0.8-r1.ebuild

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

Index: allegro-5.0.8-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/allegro/allegro-5.0.8-r1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- allegro-5.0.8-r1.ebuild	27 Dec 2014 19:29:58 -0000	1.5
+++ allegro-5.0.8-r1.ebuild	26 Jan 2015 09:46:44 -0000	1.6
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/allegro/allegro-5.0.8-r1.ebuild,v 1.5 2014/12/27 19:29:58 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/allegro/allegro-5.0.8-r1.ebuild,v 1.6 2015/01/26 09:46:44 ago Exp $
 
 EAPI=5
 inherit cmake-multilib
@@ -11,7 +11,7 @@
 
 LICENSE="BSD ZLIB"
 SLOT="5"
-KEYWORDS="amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~ppc ~ppc64 x86"
 IUSE="alsa dumb flac gtk jpeg openal oss physfs png pulseaudio test truetype vorbis X xinerama"
 
 RDEPEND="alsa? ( >=media-libs/alsa-lib-1.0.27.2[${MULTILIB_USEDEP}] )



1.150                media-libs/allegro/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/allegro/ChangeLog,v
retrieving revision 1.149
retrieving revision 1.150
diff -u -r1.149 -r1.150
--- ChangeLog	27 Dec 2014 19:29:58 -0000	1.149
+++ ChangeLog	26 Jan 2015 09:46:44 -0000	1.150
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/allegro
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/allegro/ChangeLog,v 1.149 2014/12/27 19:29:58 ago Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-libs/allegro/ChangeLog,v 1.150 2015/01/26 09:46:44 ago Exp $
+
+  26 Jan 2015; Agostino Sarubbo <ago@gentoo.org> allegro-5.0.8-r1.ebuild:
+  Stable for x86, wrt bug #526068
 
   27 Dec 2014; Agostino Sarubbo <ago@gentoo.org> allegro-5.0.8-r1.ebuild:
   Stable for amd64, wrt bug #526068





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

* [gentoo-commits] gentoo-x86 commit in media-libs/allegro: allegro-5.0.8-r1.ebuild ChangeLog
@ 2015-02-21 14:17 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 8+ messages in thread
From: Agostino Sarubbo (ago) @ 2015-02-21 14:17 UTC (permalink / raw
  To: gentoo-commits

ago         15/02/21 14:17:23

  Modified:             allegro-5.0.8-r1.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #526068
  
  (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --include-arches="ppc", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.7                  media-libs/allegro/allegro-5.0.8-r1.ebuild

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

Index: allegro-5.0.8-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/allegro/allegro-5.0.8-r1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- allegro-5.0.8-r1.ebuild	26 Jan 2015 09:46:44 -0000	1.6
+++ allegro-5.0.8-r1.ebuild	21 Feb 2015 14:17:23 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/allegro/allegro-5.0.8-r1.ebuild,v 1.6 2015/01/26 09:46:44 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/allegro/allegro-5.0.8-r1.ebuild,v 1.7 2015/02/21 14:17:23 ago Exp $
 
 EAPI=5
 inherit cmake-multilib
@@ -11,7 +11,7 @@
 
 LICENSE="BSD ZLIB"
 SLOT="5"
-KEYWORDS="amd64 ~ppc ~ppc64 x86"
+KEYWORDS="amd64 ppc ~ppc64 x86"
 IUSE="alsa dumb flac gtk jpeg openal oss physfs png pulseaudio test truetype vorbis X xinerama"
 
 RDEPEND="alsa? ( >=media-libs/alsa-lib-1.0.27.2[${MULTILIB_USEDEP}] )



1.151                media-libs/allegro/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/allegro/ChangeLog,v
retrieving revision 1.150
retrieving revision 1.151
diff -u -r1.150 -r1.151
--- ChangeLog	26 Jan 2015 09:46:44 -0000	1.150
+++ ChangeLog	21 Feb 2015 14:17:23 -0000	1.151
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/allegro
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/allegro/ChangeLog,v 1.150 2015/01/26 09:46:44 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/allegro/ChangeLog,v 1.151 2015/02/21 14:17:23 ago Exp $
+
+  21 Feb 2015; Agostino Sarubbo <ago@gentoo.org> allegro-5.0.8-r1.ebuild:
+  Stable for ppc, wrt bug #526068
 
   26 Jan 2015; Agostino Sarubbo <ago@gentoo.org> allegro-5.0.8-r1.ebuild:
   Stable for x86, wrt bug #526068





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

* [gentoo-commits] gentoo-x86 commit in media-libs/allegro: allegro-5.0.8-r1.ebuild ChangeLog
@ 2015-04-30  5:55 Jeroen Roovers (jer)
  0 siblings, 0 replies; 8+ messages in thread
From: Jeroen Roovers (jer) @ 2015-04-30  5:55 UTC (permalink / raw
  To: gentoo-commits

jer         15/04/30 05:55:04

  Modified:             allegro-5.0.8-r1.ebuild ChangeLog
  Log:
  Stable for PPC64 (bug #526068).
  
  (Portage version: 2.2.18/cvs/Linux x86_64, RepoMan options: --ignore-arches, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.8                  media-libs/allegro/allegro-5.0.8-r1.ebuild

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

Index: allegro-5.0.8-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/allegro/allegro-5.0.8-r1.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- allegro-5.0.8-r1.ebuild	21 Feb 2015 14:17:23 -0000	1.7
+++ allegro-5.0.8-r1.ebuild	30 Apr 2015 05:55:04 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/allegro/allegro-5.0.8-r1.ebuild,v 1.7 2015/02/21 14:17:23 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/allegro/allegro-5.0.8-r1.ebuild,v 1.8 2015/04/30 05:55:04 jer Exp $
 
 EAPI=5
 inherit cmake-multilib
@@ -11,7 +11,7 @@
 
 LICENSE="BSD ZLIB"
 SLOT="5"
-KEYWORDS="amd64 ppc ~ppc64 x86"
+KEYWORDS="amd64 ppc ppc64 x86"
 IUSE="alsa dumb flac gtk jpeg openal oss physfs png pulseaudio test truetype vorbis X xinerama"
 
 RDEPEND="alsa? ( >=media-libs/alsa-lib-1.0.27.2[${MULTILIB_USEDEP}] )



1.152                media-libs/allegro/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/allegro/ChangeLog,v
retrieving revision 1.151
retrieving revision 1.152
diff -u -r1.151 -r1.152
--- ChangeLog	21 Feb 2015 14:17:23 -0000	1.151
+++ ChangeLog	30 Apr 2015 05:55:04 -0000	1.152
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/allegro
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/allegro/ChangeLog,v 1.151 2015/02/21 14:17:23 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/allegro/ChangeLog,v 1.152 2015/04/30 05:55:04 jer Exp $
+
+  30 Apr 2015; Jeroen Roovers <jer@gentoo.org> allegro-5.0.8-r1.ebuild:
+  Stable for PPC64 (bug #526068).
 
   21 Feb 2015; Agostino Sarubbo <ago@gentoo.org> allegro-5.0.8-r1.ebuild:
   Stable for ppc, wrt bug #526068





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

end of thread, other threads:[~2015-04-30  5:55 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-09-06 21:15 [gentoo-commits] gentoo-x86 commit in media-libs/allegro: allegro-5.0.8-r1.ebuild ChangeLog Ian Stakenvicius (axs)
  -- strict thread matches above, loose matches on Subject: below --
2013-09-08 20:28 Ian Stakenvicius (axs)
2014-06-16 21:38 Michal Gorny (mgorny)
2014-06-18 19:26 Michal Gorny (mgorny)
2014-12-27 19:29 Agostino Sarubbo (ago)
2015-01-26  9:46 Agostino Sarubbo (ago)
2015-02-21 14:17 Agostino Sarubbo (ago)
2015-04-30  5:55 Jeroen Roovers (jer)

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