public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in media-libs/smpeg: smpeg-0.4.4-r10.ebuild ChangeLog
@ 2014-04-18 19:21 Julian Ospald (hasufell)
  0 siblings, 0 replies; 5+ messages in thread
From: Julian Ospald (hasufell) @ 2014-04-18 19:21 UTC (permalink / raw
  To: gentoo-commits

hasufell    14/04/18 19:21:29

  Modified:             ChangeLog
  Added:                smpeg-0.4.4-r10.ebuild
  Log:
  convert to multilib
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key BDEED020)

Revision  Changes    Path
1.62                 media-libs/smpeg/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/smpeg/ChangeLog,v
retrieving revision 1.61
retrieving revision 1.62
diff -u -r1.61 -r1.62
--- ChangeLog	24 Jul 2013 03:21:27 -0000	1.61
+++ ChangeLog	18 Apr 2014 19:21:29 -0000	1.62
@@ -1,6 +1,11 @@
 # ChangeLog for media-libs/smpeg
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/smpeg/ChangeLog,v 1.61 2013/07/24 03:21:27 ottxor Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-libs/smpeg/ChangeLog,v 1.62 2014/04/18 19:21:29 hasufell Exp $
+
+*smpeg-0.4.4-r10 (18 Apr 2014)
+
+  18 Apr 2014; Julian Ospald <hasufell@gentoo.org> +smpeg-0.4.4-r10.ebuild:
+  convert to multilib
 
   24 Jul 2013; Christoph Junghans <ottxor@gentoo.org> smpeg-0.4.4-r9.ebuild:
   added prefix support (bug #475970)



1.1                  media-libs/smpeg/smpeg-0.4.4-r10.ebuild

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

Index: smpeg-0.4.4-r10.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/smpeg/smpeg-0.4.4-r10.ebuild,v 1.1 2014/04/18 19:21:29 hasufell Exp $

EAPI=5
inherit eutils toolchain-funcs autotools flag-o-matic multilib-minimal

DESCRIPTION="SDL MPEG Player Library"
HOMEPAGE="http://icculus.org/smpeg/"
SRC_URI="ftp://ftp.lokigames.com/pub/open-source/smpeg/${P}.tar.gz
	mirror://gentoo/${P}-gtkm4.patch.bz2"

LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~x86-solaris"
IUSE="X debug mmx opengl static-libs"

RDEPEND="
	abi_x86_32? (
		!app-emulation/emul-linux-x86-sdl[-abi_x86_32(-)]
		!<=app-emulation/emul-linux-x86-sdl-20140406
	)
	>=media-libs/libsdl-1.2.0[${MULTILIB_USEDEP}]
	opengl? (
		virtual/glu[${MULTILIB_USEDEP}]
		virtual/opengl[${MULTILIB_USEDEP}]
	)
	X? (
		x11-libs/libXext[${MULTILIB_USEDEP}]
		x11-libs/libXi[${MULTILIB_USEDEP}]
		x11-libs/libX11[${MULTILIB_USEDEP}]
	)"
DEPEND="${RDEPEND}"

DOCS=( CHANGES README README.SDL_mixer TODO )

src_prepare() {
	epatch "${FILESDIR}"/${P}-m4.patch \
		"${FILESDIR}"/${P}-gnu-stack.patch \
		"${FILESDIR}"/${P}-config.patch \
		"${FILESDIR}"/${P}-PIC.patch \
		"${FILESDIR}"/${P}-gcc41.patch \
		"${FILESDIR}"/${P}-flags.patch \
		"${FILESDIR}"/${P}-automake.patch \
		"${FILESDIR}"/${P}-mmx.patch \
		"${FILESDIR}"/${P}-malloc.patch \
		"${FILESDIR}"/${P}-missing-init.patch

	cd "${WORKDIR}"
	epatch "${DISTDIR}"/${P}-gtkm4.patch.bz2
	rm "${S}/acinclude.m4"

	cd "${S}"
	AT_M4DIR="${S}/m4" eautoreconf
}

multilib_src_configure() {
	[[ ${CHOST} == *-solaris* ]] && append-libs -lnsl -lsocket

	# the debug option is bogus ... all it does is add extra
	# optimizations if you pass --disable-debug
	ECONF_SOURCE="${S}" econf \
		--enable-debug \
		--disable-gtk-player \
		$(use_enable static-libs static) \
		$(use_enable debug assertions) \
		$(use_with X x) \
		$(use_enable opengl opengl-player) \
		$(use_enable mmx)
}

multilib_src_install_all() {
	use static-libs || find "${ED}" -name '*.la' -exec rm -f {} +
}





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

* [gentoo-commits] gentoo-x86 commit in media-libs/smpeg: smpeg-0.4.4-r10.ebuild ChangeLog
@ 2014-06-18 19:58 Michal Gorny (mgorny)
  0 siblings, 0 replies; 5+ messages in thread
From: Michal Gorny (mgorny) @ 2014-06-18 19:58 UTC (permalink / raw
  To: gentoo-commits

mgorny      14/06/18 19:58:14

  Modified:             smpeg-0.4.4-r10.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.2                  media-libs/smpeg/smpeg-0.4.4-r10.ebuild

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

Index: smpeg-0.4.4-r10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/smpeg/smpeg-0.4.4-r10.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- smpeg-0.4.4-r10.ebuild	18 Apr 2014 19:21:29 -0000	1.1
+++ smpeg-0.4.4-r10.ebuild	18 Jun 2014 19:58:14 -0000	1.2
@@ -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/smpeg/smpeg-0.4.4-r10.ebuild,v 1.1 2014/04/18 19:21:29 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/smpeg/smpeg-0.4.4-r10.ebuild,v 1.2 2014/06/18 19:58:14 mgorny Exp $
 
 EAPI=5
 inherit eutils toolchain-funcs autotools flag-o-matic multilib-minimal
@@ -20,15 +20,15 @@
 		!app-emulation/emul-linux-x86-sdl[-abi_x86_32(-)]
 		!<=app-emulation/emul-linux-x86-sdl-20140406
 	)
-	>=media-libs/libsdl-1.2.0[${MULTILIB_USEDEP}]
+	>=media-libs/libsdl-1.2.15-r4[${MULTILIB_USEDEP}]
 	opengl? (
-		virtual/glu[${MULTILIB_USEDEP}]
-		virtual/opengl[${MULTILIB_USEDEP}]
+		>=virtual/glu-9.0-r1[${MULTILIB_USEDEP}]
+		>=virtual/opengl-7.0-r1[${MULTILIB_USEDEP}]
 	)
 	X? (
-		x11-libs/libXext[${MULTILIB_USEDEP}]
-		x11-libs/libXi[${MULTILIB_USEDEP}]
-		x11-libs/libX11[${MULTILIB_USEDEP}]
+		>=x11-libs/libXext-1.3.2[${MULTILIB_USEDEP}]
+		>=x11-libs/libXi-1.7.2[${MULTILIB_USEDEP}]
+		>=x11-libs/libX11-1.6.2[${MULTILIB_USEDEP}]
 	)"
 DEPEND="${RDEPEND}"
 



1.63                 media-libs/smpeg/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/smpeg/ChangeLog,v
retrieving revision 1.62
retrieving revision 1.63
diff -u -r1.62 -r1.63
--- ChangeLog	18 Apr 2014 19:21:29 -0000	1.62
+++ ChangeLog	18 Jun 2014 19:58:14 -0000	1.63
@@ -1,6 +1,10 @@
 # ChangeLog for media-libs/smpeg
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/smpeg/ChangeLog,v 1.62 2014/04/18 19:21:29 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/smpeg/ChangeLog,v 1.63 2014/06/18 19:58:14 mgorny Exp $
+
+  18 Jun 2014; Michał Górny <mgorny@gentoo.org> smpeg-0.4.4-r10.ebuild:
+  Update dependencies to require guaranteed EAPI=5 or multilib ebuilds, bug
+  #513718.
 
 *smpeg-0.4.4-r10 (18 Apr 2014)
 





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

* [gentoo-commits] gentoo-x86 commit in media-libs/smpeg: smpeg-0.4.4-r10.ebuild ChangeLog
@ 2014-10-21 21:36 Pacho Ramos (pacho)
  0 siblings, 0 replies; 5+ messages in thread
From: Pacho Ramos (pacho) @ 2014-10-21 21:36 UTC (permalink / raw
  To: gentoo-commits

pacho       14/10/21 21:36:01

  Modified:             smpeg-0.4.4-r10.ebuild ChangeLog
  Log:
  amd64/x86 stable, bug #525766
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)

Revision  Changes    Path
1.5                  media-libs/smpeg/smpeg-0.4.4-r10.ebuild

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

Index: smpeg-0.4.4-r10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/smpeg/smpeg-0.4.4-r10.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- smpeg-0.4.4-r10.ebuild	21 Oct 2014 17:46:37 -0000	1.4
+++ smpeg-0.4.4-r10.ebuild	21 Oct 2014 21:36:01 -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/smpeg/smpeg-0.4.4-r10.ebuild,v 1.4 2014/10/21 17:46:37 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/smpeg/smpeg-0.4.4-r10.ebuild,v 1.5 2014/10/21 21:36:01 pacho Exp $
 
 EAPI=5
 inherit eutils toolchain-funcs autotools flag-o-matic multilib-minimal
@@ -12,7 +12,7 @@
 
 LICENSE="LGPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~x86-solaris"
 IUSE="X debug mmx opengl static-libs"
 
 RDEPEND="



1.66                 media-libs/smpeg/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/smpeg/ChangeLog,v
retrieving revision 1.65
retrieving revision 1.66
diff -u -r1.65 -r1.66
--- ChangeLog	21 Oct 2014 17:46:37 -0000	1.65
+++ ChangeLog	21 Oct 2014 21:36:01 -0000	1.66
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/smpeg
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/smpeg/ChangeLog,v 1.65 2014/10/21 17:46:37 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/smpeg/ChangeLog,v 1.66 2014/10/21 21:36:01 pacho Exp $
+
+  21 Oct 2014; Pacho Ramos <pacho@gentoo.org> smpeg-0.4.4-r10.ebuild:
+  amd64/x86 stable, bug #525766
 
   21 Oct 2014; Jeroen Roovers <jer@gentoo.org> smpeg-0.4.4-r10.ebuild:
   Stable for HPPA (bug #525766).





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

* [gentoo-commits] gentoo-x86 commit in media-libs/smpeg: smpeg-0.4.4-r10.ebuild ChangeLog
@ 2015-02-22  7:38 Michael Sterrett (mr_bones_)
  0 siblings, 0 replies; 5+ messages in thread
From: Michael Sterrett (mr_bones_) @ 2015-02-22  7:38 UTC (permalink / raw
  To: gentoo-commits

mr_bones_    15/02/22 07:38:58

  Modified:             smpeg-0.4.4-r10.ebuild ChangeLog
  Log:
  use prune_libtool_files
  
  (Portage version: 2.2.14/cvs/Linux x86_64, unsigned Manifest commit)

Revision  Changes    Path
1.9                  media-libs/smpeg/smpeg-0.4.4-r10.ebuild

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

Index: smpeg-0.4.4-r10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/smpeg/smpeg-0.4.4-r10.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- smpeg-0.4.4-r10.ebuild	29 Jan 2015 17:58:23 -0000	1.8
+++ smpeg-0.4.4-r10.ebuild	22 Feb 2015 07:38:58 -0000	1.9
@@ -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/smpeg/smpeg-0.4.4-r10.ebuild,v 1.8 2015/01/29 17:58:23 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/smpeg/smpeg-0.4.4-r10.ebuild,v 1.9 2015/02/22 07:38:58 mr_bones_ Exp $
 
 EAPI=5
 inherit eutils toolchain-funcs autotools flag-o-matic multilib-minimal
@@ -71,5 +71,5 @@
 }
 
 multilib_src_install_all() {
-	use static-libs || find "${ED}" -name '*.la' -exec rm -f {} +
+	use static-libs || prune_libtool_files
 }



1.70                 media-libs/smpeg/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/smpeg/ChangeLog,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -r1.69 -r1.70
--- ChangeLog	29 Jan 2015 17:58:23 -0000	1.69
+++ ChangeLog	22 Feb 2015 07:38:58 -0000	1.70
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/smpeg
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/smpeg/ChangeLog,v 1.69 2015/01/29 17:58:23 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/smpeg/ChangeLog,v 1.70 2015/02/22 07:38:58 mr_bones_ Exp $
+
+  22 Feb 2015; Michael Sterrett <mr_bones_@gentoo.org> smpeg-0.4.4-r10.ebuild:
+  use prune_libtool_files
 
   29 Jan 2015; Michał Górny <mgorny@gentoo.org> smpeg-0.4.4-r10.ebuild,
   smpeg-0.4.4-r9.ebuild:





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

* [gentoo-commits] gentoo-x86 commit in media-libs/smpeg: smpeg-0.4.4-r10.ebuild ChangeLog
@ 2015-03-02  9:34 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 5+ messages in thread
From: Agostino Sarubbo (ago) @ 2015-03-02  9:34 UTC (permalink / raw
  To: gentoo-commits

ago         15/03/02 09:34:17

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

Revision  Changes    Path
1.10                 media-libs/smpeg/smpeg-0.4.4-r10.ebuild

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

Index: smpeg-0.4.4-r10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/smpeg/smpeg-0.4.4-r10.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- smpeg-0.4.4-r10.ebuild	22 Feb 2015 07:38:58 -0000	1.9
+++ smpeg-0.4.4-r10.ebuild	2 Mar 2015 09:34:17 -0000	1.10
@@ -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/smpeg/smpeg-0.4.4-r10.ebuild,v 1.9 2015/02/22 07:38:58 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/smpeg/smpeg-0.4.4-r10.ebuild,v 1.10 2015/03/02 09:34:17 ago Exp $
 
 EAPI=5
 inherit eutils toolchain-funcs autotools flag-o-matic multilib-minimal
@@ -12,7 +12,7 @@
 
 LICENSE="LGPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ~ppc ~ppc64 sh sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ~ppc64 sh sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~x86-solaris"
 IUSE="X debug cpu_flags_x86_mmx opengl static-libs"
 
 RDEPEND="



1.71                 media-libs/smpeg/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/smpeg/ChangeLog,v
retrieving revision 1.70
retrieving revision 1.71
diff -u -r1.70 -r1.71
--- ChangeLog	22 Feb 2015 07:38:58 -0000	1.70
+++ ChangeLog	2 Mar 2015 09:34:17 -0000	1.71
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/smpeg
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/smpeg/ChangeLog,v 1.70 2015/02/22 07:38:58 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/smpeg/ChangeLog,v 1.71 2015/03/02 09:34:17 ago Exp $
+
+  02 Mar 2015; Agostino Sarubbo <ago@gentoo.org> smpeg-0.4.4-r10.ebuild:
+  Stable for ppc, wrt bug #525766
 
   22 Feb 2015; Michael Sterrett <mr_bones_@gentoo.org> smpeg-0.4.4-r10.ebuild:
   use prune_libtool_files





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

end of thread, other threads:[~2015-03-02  9:34 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-04-18 19:21 [gentoo-commits] gentoo-x86 commit in media-libs/smpeg: smpeg-0.4.4-r10.ebuild ChangeLog Julian Ospald (hasufell)
  -- strict thread matches above, loose matches on Subject: below --
2014-06-18 19:58 Michal Gorny (mgorny)
2014-10-21 21:36 Pacho Ramos (pacho)
2015-02-22  7:38 Michael Sterrett (mr_bones_)
2015-03-02  9:34 Agostino Sarubbo (ago)

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