public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpegthumbnailer: ffmpegthumbnailer-2.0.6.ebuild ChangeLog
@ 2011-01-09 13:58 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 10+ messages in thread
From: Samuli Suominen (ssuominen) @ 2011-01-09 13:58 UTC (permalink / raw
  To: gentoo-commits

ssuominen    11/01/09 13:58:10

  Modified:             ChangeLog
  Added:                ffmpegthumbnailer-2.0.6.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.0_alpha13/cvs/Linux x86_64)

Revision  Changes    Path
1.110                media-video/ffmpegthumbnailer/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpegthumbnailer/ChangeLog?rev=1.110&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpegthumbnailer/ChangeLog?rev=1.110&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpegthumbnailer/ChangeLog?r1=1.109&r2=1.110

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ChangeLog,v
retrieving revision 1.109
retrieving revision 1.110
diff -u -r1.109 -r1.110
--- ChangeLog	5 Dec 2010 18:47:42 -0000	1.109
+++ ChangeLog	9 Jan 2011 13:58:10 -0000	1.110
@@ -1,6 +1,13 @@
 # ChangeLog for media-video/ffmpegthumbnailer
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ChangeLog,v 1.109 2010/12/05 18:47:42 ssuominen Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ChangeLog,v 1.110 2011/01/09 13:58:10 ssuominen Exp $
+
+*ffmpegthumbnailer-2.0.6 (09 Jan 2011)
+
+  09 Jan 2011; Samuli Suominen <ssuominen@gentoo.org>
+  +ffmpegthumbnailer-2.0.6.ebuild,
+  +files/ffmpegthumbnailer-2.0.6-asneeded.patch:
+  Version bump.
 
 *ffmpegthumbnailer-2.0.5 (05 Dec 2010)
 



1.1                  media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.0.6.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.0.6.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.0.6.ebuild?rev=1.1&content-type=text/plain

Index: ffmpegthumbnailer-2.0.6.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.0.6.ebuild,v 1.1 2011/01/09 13:58:10 ssuominen Exp $

EAPI=2
inherit autotools eutils

DESCRIPTION="Lightweight video thumbnailer that can be used by file managers"
HOMEPAGE="http://code.google.com/p/ffmpegthumbnailer/"
SRC_URI="http://${PN}.googlecode.com/files/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="gtk jpeg png"

COMMON_DEPEND=">=media-video/ffmpeg-0.5
	png? ( >=media-libs/libpng-1.4 )
	jpeg? ( virtual/jpeg )"
RDEPEND="${COMMON_DEPEND}
	gtk? ( >=dev-libs/glib-2.14:2 )"
DEPEND="${COMMON_DEPEND}
	dev-util/pkgconfig"

src_prepare() {
	epatch "${FILESDIR}"/${P}-asneeded.patch
	eautoreconf
}

src_configure() {
	econf \
		--disable-dependency-tracking \
		--disable-static \
		$(use_enable png) \
		$(use_enable jpeg) \
		$(use_enable gtk gio)
}

src_install() {
	emake DESTDIR="${D}" install || die
	dodoc AUTHORS ChangeLog README
	find "${D}" -name '*.la' -delete
}






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

* [gentoo-commits] gentoo-x86 commit in media-video/ffmpegthumbnailer: ffmpegthumbnailer-2.0.6.ebuild ChangeLog
@ 2011-01-09 14:05 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 10+ messages in thread
From: Samuli Suominen (ssuominen) @ 2011-01-09 14:05 UTC (permalink / raw
  To: gentoo-commits

ssuominen    11/01/09 14:05:49

  Modified:             ffmpegthumbnailer-2.0.6.ebuild ChangeLog
  Log:
  Fix CPPFLAGS and CXXFLAGS confusion in configure.ac.
  
  (Portage version: 2.2.0_alpha13/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.0.6.ebuild

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

Index: ffmpegthumbnailer-2.0.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.0.6.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ffmpegthumbnailer-2.0.6.ebuild	9 Jan 2011 13:58:10 -0000	1.1
+++ ffmpegthumbnailer-2.0.6.ebuild	9 Jan 2011 14:05:49 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.0.6.ebuild,v 1.1 2011/01/09 13:58:10 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.0.6.ebuild,v 1.2 2011/01/09 14:05:49 ssuominen Exp $
 
 EAPI=2
 inherit autotools eutils
@@ -23,7 +23,7 @@
 	dev-util/pkgconfig"
 
 src_prepare() {
-	epatch "${FILESDIR}"/${P}-asneeded.patch
+	epatch "${FILESDIR}"/${P}-{asneeded,flags}.patch
 	eautoreconf
 }
 



1.111                media-video/ffmpegthumbnailer/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpegthumbnailer/ChangeLog?rev=1.111&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpegthumbnailer/ChangeLog?rev=1.111&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpegthumbnailer/ChangeLog?r1=1.110&r2=1.111

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ChangeLog,v
retrieving revision 1.110
retrieving revision 1.111
diff -u -r1.110 -r1.111
--- ChangeLog	9 Jan 2011 13:58:10 -0000	1.110
+++ ChangeLog	9 Jan 2011 14:05:49 -0000	1.111
@@ -1,6 +1,10 @@
 # ChangeLog for media-video/ffmpegthumbnailer
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ChangeLog,v 1.110 2011/01/09 13:58:10 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ChangeLog,v 1.111 2011/01/09 14:05:49 ssuominen Exp $
+
+  09 Jan 2011; Samuli Suominen <ssuominen@gentoo.org>
+  ffmpegthumbnailer-2.0.6.ebuild, +files/ffmpegthumbnailer-2.0.6-flags.patch:
+  Fix CPPFLAGS and CXXFLAGS confusion in configure.ac.
 
 *ffmpegthumbnailer-2.0.6 (09 Jan 2011)
 






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

* [gentoo-commits] gentoo-x86 commit in media-video/ffmpegthumbnailer: ffmpegthumbnailer-2.0.6.ebuild ChangeLog
@ 2011-03-26 15:20 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 10+ messages in thread
From: Samuli Suominen (ssuominen) @ 2011-03-26 15:20 UTC (permalink / raw
  To: gentoo-commits

ssuominen    11/03/26 15:20:48

  Modified:             ffmpegthumbnailer-2.0.6.ebuild ChangeLog
  Log:
  Fix building with sys-devel/gcc >= 4.6 wrt #357305 by Ryan Hill.
  
  (Portage version: 2.2.0_alpha28/cvs/Linux x86_64)

Revision  Changes    Path
1.3                  media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.0.6.ebuild

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

Index: ffmpegthumbnailer-2.0.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.0.6.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ffmpegthumbnailer-2.0.6.ebuild	9 Jan 2011 14:05:49 -0000	1.2
+++ ffmpegthumbnailer-2.0.6.ebuild	26 Mar 2011 15:20:48 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.0.6.ebuild,v 1.2 2011/01/09 14:05:49 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.0.6.ebuild,v 1.3 2011/03/26 15:20:48 ssuominen Exp $
 
 EAPI=2
 inherit autotools eutils
@@ -23,7 +23,7 @@
 	dev-util/pkgconfig"
 
 src_prepare() {
-	epatch "${FILESDIR}"/${P}-{asneeded,flags}.patch
+	epatch "${FILESDIR}"/${P}-{asneeded,flags,gcc46}.patch
 	eautoreconf
 }
 



1.114                media-video/ffmpegthumbnailer/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ChangeLog,v
retrieving revision 1.113
retrieving revision 1.114
diff -u -r1.113 -r1.114
--- ChangeLog	22 Jan 2011 18:05:18 -0000	1.113
+++ ChangeLog	26 Mar 2011 15:20:48 -0000	1.114
@@ -1,6 +1,10 @@
 # ChangeLog for media-video/ffmpegthumbnailer
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ChangeLog,v 1.113 2011/01/22 18:05:18 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ChangeLog,v 1.114 2011/03/26 15:20:48 ssuominen Exp $
+
+  26 Mar 2011; Samuli Suominen <ssuominen@gentoo.org>
+  ffmpegthumbnailer-2.0.6.ebuild, +files/ffmpegthumbnailer-2.0.6-gcc46.patch:
+  Fix building with sys-devel/gcc >= 4.6 wrt #357305 by Ryan Hill.
 
   22 Jan 2011; Kacper Kowalik <xarthisius@gentoo.org>
   ffmpegthumbnailer-2.0.4.ebuild:






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

* [gentoo-commits] gentoo-x86 commit in media-video/ffmpegthumbnailer: ffmpegthumbnailer-2.0.6.ebuild ChangeLog
@ 2011-03-26 17:16 Christoph Mende (angelos)
  0 siblings, 0 replies; 10+ messages in thread
From: Christoph Mende (angelos) @ 2011-03-26 17:16 UTC (permalink / raw
  To: gentoo-commits

angelos     11/03/26 17:16:55

  Modified:             ffmpegthumbnailer-2.0.6.ebuild ChangeLog
  Log:
  Stable on amd64 wrt bug #360557
  
  (Portage version: 2.2.0_alpha28/cvs/Linux x86_64)

Revision  Changes    Path
1.4                  media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.0.6.ebuild

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

Index: ffmpegthumbnailer-2.0.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.0.6.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ffmpegthumbnailer-2.0.6.ebuild	26 Mar 2011 15:20:48 -0000	1.3
+++ ffmpegthumbnailer-2.0.6.ebuild	26 Mar 2011 17:16:55 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.0.6.ebuild,v 1.3 2011/03/26 15:20:48 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.0.6.ebuild,v 1.4 2011/03/26 17:16:55 angelos Exp $
 
 EAPI=2
 inherit autotools eutils
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
 IUSE="gtk jpeg png"
 
 COMMON_DEPEND=">=media-video/ffmpeg-0.5



1.115                media-video/ffmpegthumbnailer/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ChangeLog,v
retrieving revision 1.114
retrieving revision 1.115
diff -u -r1.114 -r1.115
--- ChangeLog	26 Mar 2011 15:20:48 -0000	1.114
+++ ChangeLog	26 Mar 2011 17:16:55 -0000	1.115
@@ -1,6 +1,10 @@
 # ChangeLog for media-video/ffmpegthumbnailer
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ChangeLog,v 1.114 2011/03/26 15:20:48 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ChangeLog,v 1.115 2011/03/26 17:16:55 angelos Exp $
+
+  26 Mar 2011; Christoph Mende <angelos@gentoo.org>
+  ffmpegthumbnailer-2.0.6.ebuild:
+  Stable on amd64 wrt bug #360557
 
   26 Mar 2011; Samuli Suominen <ssuominen@gentoo.org>
   ffmpegthumbnailer-2.0.6.ebuild, +files/ffmpegthumbnailer-2.0.6-gcc46.patch:






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

* [gentoo-commits] gentoo-x86 commit in media-video/ffmpegthumbnailer: ffmpegthumbnailer-2.0.6.ebuild ChangeLog
@ 2011-03-27 17:04 Brent Baude (ranger)
  0 siblings, 0 replies; 10+ messages in thread
From: Brent Baude (ranger) @ 2011-03-27 17:04 UTC (permalink / raw
  To: gentoo-commits

ranger      11/03/27 17:04:40

  Modified:             ffmpegthumbnailer-2.0.6.ebuild ChangeLog
  Log:
  Marking ffmpegthumbnailer-2.0.6 ppc for bug 360557
  
  (Portage version: 2.1.9.42/cvs/Linux ppc64)

Revision  Changes    Path
1.5                  media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.0.6.ebuild

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

Index: ffmpegthumbnailer-2.0.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.0.6.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ffmpegthumbnailer-2.0.6.ebuild	26 Mar 2011 17:16:55 -0000	1.4
+++ ffmpegthumbnailer-2.0.6.ebuild	27 Mar 2011 17:04:40 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.0.6.ebuild,v 1.4 2011/03/26 17:16:55 angelos Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.0.6.ebuild,v 1.5 2011/03/27 17:04:40 ranger Exp $
 
 EAPI=2
 inherit autotools eutils
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
 IUSE="gtk jpeg png"
 
 COMMON_DEPEND=">=media-video/ffmpeg-0.5



1.116                media-video/ffmpegthumbnailer/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ChangeLog,v
retrieving revision 1.115
retrieving revision 1.116
diff -u -r1.115 -r1.116
--- ChangeLog	26 Mar 2011 17:16:55 -0000	1.115
+++ ChangeLog	27 Mar 2011 17:04:40 -0000	1.116
@@ -1,6 +1,10 @@
 # ChangeLog for media-video/ffmpegthumbnailer
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ChangeLog,v 1.115 2011/03/26 17:16:55 angelos Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ChangeLog,v 1.116 2011/03/27 17:04:40 ranger Exp $
+
+  27 Mar 2011; Brent Baude <ranger@gentoo.org>
+  ffmpegthumbnailer-2.0.6.ebuild:
+  Marking ffmpegthumbnailer-2.0.6 ppc for bug 360557
 
   26 Mar 2011; Christoph Mende <angelos@gentoo.org>
   ffmpegthumbnailer-2.0.6.ebuild:






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

* [gentoo-commits] gentoo-x86 commit in media-video/ffmpegthumbnailer: ffmpegthumbnailer-2.0.6.ebuild ChangeLog
@ 2011-03-28 12:26 PaweA Hajdan (phajdan.jr)
  0 siblings, 0 replies; 10+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2011-03-28 12:26 UTC (permalink / raw
  To: gentoo-commits

phajdan.jr    11/03/28 12:26:38

  Modified:             ffmpegthumbnailer-2.0.6.ebuild ChangeLog
  Log:
  x86 stable wrt bug #360557
  
  (Portage version: 2.1.9.42/cvs/Linux i686)

Revision  Changes    Path
1.6                  media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.0.6.ebuild

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

Index: ffmpegthumbnailer-2.0.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.0.6.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ffmpegthumbnailer-2.0.6.ebuild	27 Mar 2011 17:04:40 -0000	1.5
+++ ffmpegthumbnailer-2.0.6.ebuild	28 Mar 2011 12:26:38 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.0.6.ebuild,v 1.5 2011/03/27 17:04:40 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.0.6.ebuild,v 1.6 2011/03/28 12:26:38 phajdan.jr Exp $
 
 EAPI=2
 inherit autotools eutils
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ppc ~ppc64 ~sparc x86 ~x86-fbsd"
 IUSE="gtk jpeg png"
 
 COMMON_DEPEND=">=media-video/ffmpeg-0.5



1.117                media-video/ffmpegthumbnailer/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ChangeLog,v
retrieving revision 1.116
retrieving revision 1.117
diff -u -r1.116 -r1.117
--- ChangeLog	27 Mar 2011 17:04:40 -0000	1.116
+++ ChangeLog	28 Mar 2011 12:26:38 -0000	1.117
@@ -1,6 +1,10 @@
 # ChangeLog for media-video/ffmpegthumbnailer
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ChangeLog,v 1.116 2011/03/27 17:04:40 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ChangeLog,v 1.117 2011/03/28 12:26:38 phajdan.jr Exp $
+
+  28 Mar 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org>
+  ffmpegthumbnailer-2.0.6.ebuild:
+  x86 stable wrt bug #360557
 
   27 Mar 2011; Brent Baude <ranger@gentoo.org>
   ffmpegthumbnailer-2.0.6.ebuild:






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

* [gentoo-commits] gentoo-x86 commit in media-video/ffmpegthumbnailer: ffmpegthumbnailer-2.0.6.ebuild ChangeLog
@ 2011-04-02 14:25 Raul Porcel (armin76)
  0 siblings, 0 replies; 10+ messages in thread
From: Raul Porcel (armin76) @ 2011-04-02 14:25 UTC (permalink / raw
  To: gentoo-commits

armin76     11/04/02 14:25:17

  Modified:             ffmpegthumbnailer-2.0.6.ebuild ChangeLog
  Log:
  alpha/arm/ia64/sparc stable wrt #360557
  
  (Portage version: 2.1.9.44/cvs/Linux ia64)

Revision  Changes    Path
1.7                  media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.0.6.ebuild

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

Index: ffmpegthumbnailer-2.0.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.0.6.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ffmpegthumbnailer-2.0.6.ebuild	28 Mar 2011 12:26:38 -0000	1.6
+++ ffmpegthumbnailer-2.0.6.ebuild	2 Apr 2011 14:25:17 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.0.6.ebuild,v 1.6 2011/03/28 12:26:38 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.0.6.ebuild,v 1.7 2011/04/02 14:25:17 armin76 Exp $
 
 EAPI=2
 inherit autotools eutils
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ppc ~ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 arm ~hppa ia64 ppc ~ppc64 sparc x86 ~x86-fbsd"
 IUSE="gtk jpeg png"
 
 COMMON_DEPEND=">=media-video/ffmpeg-0.5



1.118                media-video/ffmpegthumbnailer/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ChangeLog,v
retrieving revision 1.117
retrieving revision 1.118
diff -u -r1.117 -r1.118
--- ChangeLog	28 Mar 2011 12:26:38 -0000	1.117
+++ ChangeLog	2 Apr 2011 14:25:17 -0000	1.118
@@ -1,6 +1,10 @@
 # ChangeLog for media-video/ffmpegthumbnailer
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ChangeLog,v 1.117 2011/03/28 12:26:38 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ChangeLog,v 1.118 2011/04/02 14:25:17 armin76 Exp $
+
+  02 Apr 2011; Raúl Porcel <armin76@gentoo.org>
+  ffmpegthumbnailer-2.0.6.ebuild:
+  alpha/arm/ia64/sparc stable wrt #360557
 
   28 Mar 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org>
   ffmpegthumbnailer-2.0.6.ebuild:






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

* [gentoo-commits] gentoo-x86 commit in media-video/ffmpegthumbnailer: ffmpegthumbnailer-2.0.6.ebuild ChangeLog
@ 2011-04-04 18:36 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 10+ messages in thread
From: Samuli Suominen (ssuominen) @ 2011-04-04 18:36 UTC (permalink / raw
  To: gentoo-commits

ssuominen    11/04/04 18:36:30

  Modified:             ffmpegthumbnailer-2.0.6.ebuild ChangeLog
  Log:
  Fix building with media-libs/libpng >= 1.5.
  
  (Portage version: 2.2.0_alpha29/cvs/Linux x86_64)

Revision  Changes    Path
1.8                  media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.0.6.ebuild

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

Index: ffmpegthumbnailer-2.0.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.0.6.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ffmpegthumbnailer-2.0.6.ebuild	2 Apr 2011 14:25:17 -0000	1.7
+++ ffmpegthumbnailer-2.0.6.ebuild	4 Apr 2011 18:36:30 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.0.6.ebuild,v 1.7 2011/04/02 14:25:17 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.0.6.ebuild,v 1.8 2011/04/04 18:36:30 ssuominen Exp $
 
 EAPI=2
 inherit autotools eutils
@@ -23,7 +23,7 @@
 	dev-util/pkgconfig"
 
 src_prepare() {
-	epatch "${FILESDIR}"/${P}-{asneeded,flags,gcc46}.patch
+	epatch "${FILESDIR}"/${P}-{asneeded,flags,gcc46,libpng15}.patch
 	eautoreconf
 }
 
@@ -39,5 +39,5 @@
 src_install() {
 	emake DESTDIR="${D}" install || die
 	dodoc AUTHORS ChangeLog README
-	find "${D}" -name '*.la' -delete
+	find "${D}" -name '*.la' -exec rm -f {} +
 }



1.119                media-video/ffmpegthumbnailer/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ChangeLog,v
retrieving revision 1.118
retrieving revision 1.119
diff -u -r1.118 -r1.119
--- ChangeLog	2 Apr 2011 14:25:17 -0000	1.118
+++ ChangeLog	4 Apr 2011 18:36:30 -0000	1.119
@@ -1,6 +1,11 @@
 # ChangeLog for media-video/ffmpegthumbnailer
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ChangeLog,v 1.118 2011/04/02 14:25:17 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ChangeLog,v 1.119 2011/04/04 18:36:30 ssuominen Exp $
+
+  04 Apr 2011; Samuli Suominen <ssuominen@gentoo.org>
+  ffmpegthumbnailer-2.0.6.ebuild,
+  +files/ffmpegthumbnailer-2.0.6-libpng15.patch:
+  Fix building with media-libs/libpng >= 1.5.
 
   02 Apr 2011; Raúl Porcel <armin76@gentoo.org>
   ffmpegthumbnailer-2.0.6.ebuild:






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

* [gentoo-commits] gentoo-x86 commit in media-video/ffmpegthumbnailer: ffmpegthumbnailer-2.0.6.ebuild ChangeLog
@ 2011-04-26 18:36 Jeroen Roovers (jer)
  0 siblings, 0 replies; 10+ messages in thread
From: Jeroen Roovers (jer) @ 2011-04-26 18:36 UTC (permalink / raw
  To: gentoo-commits

jer         11/04/26 18:36:56

  Modified:             ffmpegthumbnailer-2.0.6.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #360557).
  
  (Portage version: 2.2.0_alpha30/cvs/Linux i686)

Revision  Changes    Path
1.10                 media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.0.6.ebuild

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

Index: ffmpegthumbnailer-2.0.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.0.6.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ffmpegthumbnailer-2.0.6.ebuild	10 Apr 2011 20:13:22 -0000	1.9
+++ ffmpegthumbnailer-2.0.6.ebuild	26 Apr 2011 18:36:56 -0000	1.10
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.0.6.ebuild,v 1.9 2011/04/10 20:13:22 scarabeus Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.0.6.ebuild,v 1.10 2011/04/26 18:36:56 jer Exp $
 
 EAPI=2
 inherit autotools eutils
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~hppa ia64 ppc ~ppc64 sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ia64 ppc ~ppc64 sparc x86 ~x86-fbsd"
 IUSE="gtk jpeg png"
 
 COMMON_DEPEND="virtual/ffmpeg



1.121                media-video/ffmpegthumbnailer/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ChangeLog,v
retrieving revision 1.120
retrieving revision 1.121
diff -u -r1.120 -r1.121
--- ChangeLog	10 Apr 2011 20:13:22 -0000	1.120
+++ ChangeLog	26 Apr 2011 18:36:56 -0000	1.121
@@ -1,6 +1,9 @@
 # ChangeLog for media-video/ffmpegthumbnailer
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ChangeLog,v 1.120 2011/04/10 20:13:22 scarabeus Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ChangeLog,v 1.121 2011/04/26 18:36:56 jer Exp $
+
+  26 Apr 2011; Jeroen Roovers <jer@gentoo.org> ffmpegthumbnailer-2.0.6.ebuild:
+  Stable for HPPA (bug #360557).
 
   10 Apr 2011; Tomáš Chvátal <scarabeus@gentoo.org>
   ffmpegthumbnailer-2.0.4.ebuild, ffmpegthumbnailer-2.0.6.ebuild:






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

* [gentoo-commits] gentoo-x86 commit in media-video/ffmpegthumbnailer: ffmpegthumbnailer-2.0.6.ebuild ChangeLog
@ 2011-05-20 20:08 Kacper Kowalik (xarthisius)
  0 siblings, 0 replies; 10+ messages in thread
From: Kacper Kowalik (xarthisius) @ 2011-05-20 20:08 UTC (permalink / raw
  To: gentoo-commits

xarthisius    11/05/20 20:08:11

  Modified:             ffmpegthumbnailer-2.0.6.ebuild ChangeLog
  Log:
  ppc64 stable wrt #360557
  
  (Portage version: 2.2.0_alpha34/cvs/Linux x86_64)

Revision  Changes    Path
1.11                 media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.0.6.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.0.6.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.0.6.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.0.6.ebuild?r1=1.10&r2=1.11

Index: ffmpegthumbnailer-2.0.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.0.6.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- ffmpegthumbnailer-2.0.6.ebuild	26 Apr 2011 18:36:56 -0000	1.10
+++ ffmpegthumbnailer-2.0.6.ebuild	20 May 2011 20:08:11 -0000	1.11
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.0.6.ebuild,v 1.10 2011/04/26 18:36:56 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.0.6.ebuild,v 1.11 2011/05/20 20:08:11 xarthisius Exp $
 
 EAPI=2
 inherit autotools eutils
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ppc ~ppc64 sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd"
 IUSE="gtk jpeg png"
 
 COMMON_DEPEND="virtual/ffmpeg



1.122                media-video/ffmpegthumbnailer/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ChangeLog,v
retrieving revision 1.121
retrieving revision 1.122
diff -u -r1.121 -r1.122
--- ChangeLog	26 Apr 2011 18:36:56 -0000	1.121
+++ ChangeLog	20 May 2011 20:08:11 -0000	1.122
@@ -1,6 +1,10 @@
 # ChangeLog for media-video/ffmpegthumbnailer
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ChangeLog,v 1.121 2011/04/26 18:36:56 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ChangeLog,v 1.122 2011/05/20 20:08:11 xarthisius Exp $
+
+  20 May 2011; Kacper Kowalik <xarthisius@gentoo.org>
+  ffmpegthumbnailer-2.0.6.ebuild:
+  ppc64 stable wrt #360557
 
   26 Apr 2011; Jeroen Roovers <jer@gentoo.org> ffmpegthumbnailer-2.0.6.ebuild:
   Stable for HPPA (bug #360557).






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

end of thread, other threads:[~2011-05-20 20:08 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-01-09 13:58 [gentoo-commits] gentoo-x86 commit in media-video/ffmpegthumbnailer: ffmpegthumbnailer-2.0.6.ebuild ChangeLog Samuli Suominen (ssuominen)
  -- strict thread matches above, loose matches on Subject: below --
2011-01-09 14:05 Samuli Suominen (ssuominen)
2011-03-26 15:20 Samuli Suominen (ssuominen)
2011-03-26 17:16 Christoph Mende (angelos)
2011-03-27 17:04 Brent Baude (ranger)
2011-03-28 12:26 PaweA Hajdan (phajdan.jr)
2011-04-02 14:25 Raul Porcel (armin76)
2011-04-04 18:36 Samuli Suominen (ssuominen)
2011-04-26 18:36 Jeroen Roovers (jer)
2011-05-20 20:08 Kacper Kowalik (xarthisius)

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