public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in media-video/griffith: ChangeLog griffith-0.9.5.ebuild
@ 2007-10-27 12:35 Krzysiek Pawlik (nelchael)
  0 siblings, 0 replies; 4+ messages in thread
From: Krzysiek Pawlik (nelchael) @ 2007-10-27 12:35 UTC (permalink / raw
  To: gentoo-commits

nelchael    07/10/27 12:35:25

  Modified:             ChangeLog
  Added:                griffith-0.9.5.ebuild
  Log:
  Version bump.
  (Portage version: 2.1.3.16)

Revision  Changes    Path
1.15                 media-video/griffith/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/griffith/ChangeLog?rev=1.15&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/griffith/ChangeLog?rev=1.15&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/griffith/ChangeLog?r1=1.14&r2=1.15

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/griffith/ChangeLog,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- ChangeLog	27 Oct 2007 12:32:13 -0000	1.14
+++ ChangeLog	27 Oct 2007 12:35:24 -0000	1.15
@@ -1,6 +1,11 @@
 # ChangeLog for media-video/griffith
 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/griffith/ChangeLog,v 1.14 2007/10/27 12:32:13 nelchael Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/griffith/ChangeLog,v 1.15 2007/10/27 12:35:24 nelchael Exp $
+
+*griffith-0.9.5 (27 Oct 2007)
+
+  27 Oct 2007; Krzysiek Pawlik <nelchael@gentoo.org> +griffith-0.9.5.ebuild:
+  Version bump.
 
   27 Oct 2007; Krzysiek Pawlik <nelchael@gentoo.org> griffith-0.9.2.ebuild,
   griffith-0.9.3.1.ebuild:



1.1                  media-video/griffith/griffith-0.9.5.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/griffith/griffith-0.9.5.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/griffith/griffith-0.9.5.ebuild?rev=1.1&content-type=text/plain

Index: griffith-0.9.5.ebuild
===================================================================
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/griffith/griffith-0.9.5.ebuild,v 1.1 2007/10/27 12:35:24 nelchael Exp $

inherit python

ARTWORK_PV="0.9.4"

DESCRIPTION="Movie collection manager"
HOMEPAGE="http://griffith.berlios.de/"
SRC_URI="http://download.berlios.de/griffith/${P/_/-}.tar.gz
	http://download.berlios.de/griffith/${PN}-extra-artwork-${ARTWORK_PV}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc spell"

RDEPEND="dev-python/imaging
	dev-python/pyxml
	>=dev-python/pygtk-2.6.1
	>=dev-python/pysqlite-2.0
	>=dev-python/sqlalchemy-0.3
	>=dev-python/reportlab-1.19
	spell? ( >=dev-python/gnome-python-extras-2.0 )"
DEPEND="${RDEPEND}
	doc? ( app-text/docbook2X )"

src_unpack() {
	unpack ${A}
	cd "${S}"
	sed -i \
		-e 's/docbook2x-man/docbook2man.pl/' \
		-e 's#/pl/#/pl.UTF-8/#' \
		docs/*/Makefile || die "sed failed"
	sed -i \
		-e 's/latin1/iso-8859-1/' \
		docs/en/*.xml || die "sed failed"

	sed -i \
		-e 's/ISO-8859-1/UTF-8/' \
		lib/gconsole.py || die "sed failed"
}

src_compile() {
	# Nothing to compile and default `emake` spews an error message
	true
}

src_install() {
	use doc || sed -i -e '/docs/d' Makefile

	emake DESTDIR="${D}" install || die "emake install failed"
	dodoc AUTHORS ChangeLog README TODO NEWS TRANSLATORS

	cd "${WORKDIR}/${PN}-extra-artwork-${ARTWORK_PV}/"
	emake DESTDIR="${D}" install || die "emake install artwork failed"
}

pkg_postinst() {
	python_mod_optimize ${ROOT}usr/share/${PN}/lib
}

pkg_postrm() {
	python_mod_cleanup ${ROOT}usr/share/${PN}/lib
}



-- 
gentoo-commits@gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in media-video/griffith: ChangeLog griffith-0.9.5.ebuild
@ 2007-12-14 19:34 Krzysiek Pawlik (nelchael)
  0 siblings, 0 replies; 4+ messages in thread
From: Krzysiek Pawlik (nelchael) @ 2007-12-14 19:34 UTC (permalink / raw
  To: gentoo-commits

nelchael    07/12/14 19:34:11

  Modified:             ChangeLog griffith-0.9.5.ebuild
  Log:
  Fix bug #201648: require =dev-python/sqlalchemy-0.3*
  (Portage version: 2.1.4_rc10)

Revision  Changes    Path
1.17                 media-video/griffith/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/griffith/ChangeLog?rev=1.17&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/griffith/ChangeLog?rev=1.17&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/griffith/ChangeLog?r1=1.16&r2=1.17

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/griffith/ChangeLog,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- ChangeLog	27 Oct 2007 12:38:47 -0000	1.16
+++ ChangeLog	14 Dec 2007 19:34:11 -0000	1.17
@@ -1,6 +1,9 @@
 # ChangeLog for media-video/griffith
 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/griffith/ChangeLog,v 1.16 2007/10/27 12:38:47 nelchael Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/griffith/ChangeLog,v 1.17 2007/12/14 19:34:11 nelchael Exp $
+
+  14 Dec 2007; Krzysiek Pawlik <nelchael@gentoo.org> griffith-0.9.5.ebuild:
+  Fix bug #201648: require =dev-python/sqlalchemy-0.3*
 
   27 Oct 2007; Krzysiek Pawlik <nelchael@gentoo.org> griffith-0.9.2.ebuild,
   griffith-0.9.3.1.ebuild, griffith-0.9.5.ebuild:



1.3                  media-video/griffith/griffith-0.9.5.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/griffith/griffith-0.9.5.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/griffith/griffith-0.9.5.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/griffith/griffith-0.9.5.ebuild?r1=1.2&r2=1.3

Index: griffith-0.9.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/griffith/griffith-0.9.5.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- griffith-0.9.5.ebuild	27 Oct 2007 12:38:47 -0000	1.2
+++ griffith-0.9.5.ebuild	14 Dec 2007 19:34:11 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2007 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/griffith/griffith-0.9.5.ebuild,v 1.2 2007/10/27 12:38:47 nelchael Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/griffith/griffith-0.9.5.ebuild,v 1.3 2007/12/14 19:34:11 nelchael Exp $
 
 inherit python
 
@@ -20,7 +20,7 @@
 	dev-python/pyxml
 	>=dev-python/pygtk-2.6.1
 	>=dev-python/pysqlite-2.0
-	>=dev-python/sqlalchemy-0.3
+	=dev-python/sqlalchemy-0.3*
 	>=dev-python/reportlab-1.19
 	spell? ( >=dev-python/gnome-python-extras-2.0 )"
 DEPEND="${RDEPEND}



-- 
gentoo-commits@gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in media-video/griffith: ChangeLog griffith-0.9.5.ebuild
@ 2007-12-16 14:47 Markus Meier (maekke)
  0 siblings, 0 replies; 4+ messages in thread
From: Markus Meier (maekke) @ 2007-12-16 14:47 UTC (permalink / raw
  To: gentoo-commits

maekke      07/12/16 14:47:09

  Modified:             ChangeLog griffith-0.9.5.ebuild
  Log:
  x86 stable, bug #202308
  (Portage version: 2.1.4_rc10)

Revision  Changes    Path
1.18                 media-video/griffith/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/griffith/ChangeLog?rev=1.18&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/griffith/ChangeLog?rev=1.18&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/griffith/ChangeLog?r1=1.17&r2=1.18

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/griffith/ChangeLog,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- ChangeLog	14 Dec 2007 19:34:11 -0000	1.17
+++ ChangeLog	16 Dec 2007 14:47:08 -0000	1.18
@@ -1,6 +1,9 @@
 # ChangeLog for media-video/griffith
 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/griffith/ChangeLog,v 1.17 2007/12/14 19:34:11 nelchael Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/griffith/ChangeLog,v 1.18 2007/12/16 14:47:08 maekke Exp $
+
+  16 Dec 2007; Markus Meier <maekke@gentoo.org> griffith-0.9.5.ebuild:
+  x86 stable, bug #202308
 
   14 Dec 2007; Krzysiek Pawlik <nelchael@gentoo.org> griffith-0.9.5.ebuild:
   Fix bug #201648: require =dev-python/sqlalchemy-0.3*



1.4                  media-video/griffith/griffith-0.9.5.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/griffith/griffith-0.9.5.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/griffith/griffith-0.9.5.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/griffith/griffith-0.9.5.ebuild?r1=1.3&r2=1.4

Index: griffith-0.9.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/griffith/griffith-0.9.5.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- griffith-0.9.5.ebuild	14 Dec 2007 19:34:11 -0000	1.3
+++ griffith-0.9.5.ebuild	16 Dec 2007 14:47:08 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2007 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/griffith/griffith-0.9.5.ebuild,v 1.3 2007/12/14 19:34:11 nelchael Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/griffith/griffith-0.9.5.ebuild,v 1.4 2007/12/16 14:47:08 maekke Exp $
 
 inherit python
 
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE="doc spell"
 
 RDEPEND="dev-python/imaging



-- 
gentoo-commits@gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in media-video/griffith: ChangeLog griffith-0.9.5.ebuild
@ 2007-12-16 17:05 Samuli Suominen (drac)
  0 siblings, 0 replies; 4+ messages in thread
From: Samuli Suominen (drac) @ 2007-12-16 17:05 UTC (permalink / raw
  To: gentoo-commits

drac        07/12/16 17:05:40

  Modified:             ChangeLog griffith-0.9.5.ebuild
  Log:
  amd64 stable wrt #202308
  (Portage version: 2.1.4_rc10)

Revision  Changes    Path
1.19                 media-video/griffith/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/griffith/ChangeLog?rev=1.19&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/griffith/ChangeLog?rev=1.19&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/griffith/ChangeLog?r1=1.18&r2=1.19

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/griffith/ChangeLog,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- ChangeLog	16 Dec 2007 14:47:08 -0000	1.18
+++ ChangeLog	16 Dec 2007 17:05:40 -0000	1.19
@@ -1,6 +1,9 @@
 # ChangeLog for media-video/griffith
 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/griffith/ChangeLog,v 1.18 2007/12/16 14:47:08 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/griffith/ChangeLog,v 1.19 2007/12/16 17:05:40 drac Exp $
+
+  16 Dec 2007; Samuli Suominen <drac@gentoo.org> griffith-0.9.5.ebuild:
+  amd64 stable wrt #202308
 
   16 Dec 2007; Markus Meier <maekke@gentoo.org> griffith-0.9.5.ebuild:
   x86 stable, bug #202308



1.5                  media-video/griffith/griffith-0.9.5.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/griffith/griffith-0.9.5.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/griffith/griffith-0.9.5.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/griffith/griffith-0.9.5.ebuild?r1=1.4&r2=1.5

Index: griffith-0.9.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/griffith/griffith-0.9.5.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- griffith-0.9.5.ebuild	16 Dec 2007 14:47:08 -0000	1.4
+++ griffith-0.9.5.ebuild	16 Dec 2007 17:05:40 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2007 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/griffith/griffith-0.9.5.ebuild,v 1.4 2007/12/16 14:47:08 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/griffith/griffith-0.9.5.ebuild,v 1.5 2007/12/16 17:05:40 drac Exp $
 
 inherit python
 
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 IUSE="doc spell"
 
 RDEPEND="dev-python/imaging



-- 
gentoo-commits@gentoo.org mailing list



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

end of thread, other threads:[~2007-12-16 17:05 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-12-16 14:47 [gentoo-commits] gentoo-x86 commit in media-video/griffith: ChangeLog griffith-0.9.5.ebuild Markus Meier (maekke)
  -- strict thread matches above, loose matches on Subject: below --
2007-12-16 17:05 Samuli Suominen (drac)
2007-12-14 19:34 Krzysiek Pawlik (nelchael)
2007-10-27 12:35 Krzysiek Pawlik (nelchael)

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