public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in www-apps/gallery: ChangeLog gallery-2.3.1.ebuild
@ 2010-12-09  9:02 Tim Harder (radhermit)
  0 siblings, 0 replies; 9+ messages in thread
From: Tim Harder (radhermit) @ 2010-12-09  9:02 UTC (permalink / raw
  To: gentoo-commits

radhermit    10/12/09 09:02:31

  Modified:             ChangeLog
  Added:                gallery-2.3.1.ebuild
  Log:
  Version bump (bug #299307 by Chan Min Wai). Allow media-gfx/graphicsmagick[imagemagick] to satisfy the imagemagick dependency (bug #314387 by Wojciech Porczyk) and allow mysql or mysqli USE flags for php (bug #286636).
  
  (Portage version: 2.2.0_alpha7/cvs/Linux x86_64)

Revision  Changes    Path
1.177                www-apps/gallery/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/gallery/ChangeLog?rev=1.177&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/gallery/ChangeLog?rev=1.177&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/gallery/ChangeLog?r1=1.176&r2=1.177

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-apps/gallery/ChangeLog,v
retrieving revision 1.176
retrieving revision 1.177
diff -u -r1.176 -r1.177
--- ChangeLog	9 Dec 2010 08:19:09 -0000	1.176
+++ ChangeLog	9 Dec 2010 09:02:31 -0000	1.177
@@ -1,6 +1,14 @@
 # ChangeLog for www-apps/gallery
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-apps/gallery/ChangeLog,v 1.176 2010/12/09 08:19:09 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apps/gallery/ChangeLog,v 1.177 2010/12/09 09:02:31 radhermit Exp $
+
+*gallery-2.3.1 (09 Dec 2010)
+
+  09 Dec 2010; Tim Harder <radhermit@gentoo.org> +gallery-2.3.1.ebuild:
+  Version bump (bug #299307 by Chan Min Wai). Allow
+  media-gfx/graphicsmagick[imagemagick] to satisfy the imagemagick dependency
+  (bug #314387 by Wojciech Porczyk) and allow mysql or mysqli USE flags for php
+  (bug #286636).
 
   09 Dec 2010; Tim Harder <radhermit@gentoo.org> gallery-2.3-r2.ebuild:
   Fix mysql and postgres USE flag dependencies (bug #326883 by Diego E.



1.1                  www-apps/gallery/gallery-2.3.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/gallery/gallery-2.3.1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/gallery/gallery-2.3.1.ebuild?rev=1.1&content-type=text/plain

Index: gallery-2.3.1.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-apps/gallery/gallery-2.3.1.ebuild,v 1.1 2010/12/09 09:02:31 radhermit Exp $

EAPI="2"

inherit webapp eutils depend.php confutils

DESCRIPTION="Web based (PHP Script) photo album viewer/creator"
HOMEPAGE="http://gallery.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}-full.tar.gz"

LICENSE="GPL-2"
KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
IUSE="ffmpeg gd imagemagick mysql netpbm postgres raw sqlite unzip zip"

RDEPEND="raw? ( media-gfx/dcraw )
	ffmpeg? ( media-video/ffmpeg )
	imagemagick? ( || ( media-gfx/imagemagick media-gfx/graphicsmagick[imagemagick] ) )
	netpbm? ( media-libs/netpbm media-gfx/jhead )
	unzip? ( app-arch/unzip )
	zip? ( app-arch/zip )
	sqlite? ( dev-lang/php[pdo] )
	gd? ( || ( dev-lang/php[gd] dev-lang/php[gd-external] ) )
	mysql? ( || ( dev-lang/php[mysql] dev-lang/php[mysqli] ) )
	dev-lang/php[mysql?,session,postgres?,sqlite?]
	|| ( <dev-lang/php-5.3[pcre] >=dev-lang/php-5.3 )"

S=${WORKDIR}/${PN}2

need_httpd_cgi
need_php_httpd

pkg_setup() {
	webapp_pkg_setup
	confutils_require_any gd imagemagick netpbm
	confutils_require_any mysql postgres sqlite
}

src_install() {
	webapp_src_preinst

	dohtml README.html
	rm README.html LICENSE
	sed -i -e "/^LICENSE\>/d" -e "/^README\.html\>/d" MANIFEST

	insinto "${MY_HTDOCSDIR}"
	doins -r .

	webapp_postinst_txt en "${FILESDIR}/postinstall-en2.txt"
	webapp_src_install
}

pkg_postinst() {
	elog "You are strongly encouraged to back up your database"
	elog "and the g2data directory, as upgrading may make"
	elog "irreversible changes to both."
	elog
	elog "g2data dir: cp -Rf /path/to/g2data/ /path/to/backup"
	elog "mysql: mysqldump --opt -u username -h hostname -p database > /path/to/backup.sql"
	elog "postgres: pg_dump -h hostname --format=t database > /path/to/backup.sql"
	webapp_pkg_postinst
}






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

* [gentoo-commits] gentoo-x86 commit in www-apps/gallery: ChangeLog gallery-2.3.1.ebuild
@ 2010-12-09  9:20 Tim Harder (radhermit)
  0 siblings, 0 replies; 9+ messages in thread
From: Tim Harder (radhermit) @ 2010-12-09  9:20 UTC (permalink / raw
  To: gentoo-commits

radhermit    10/12/09 09:20:20

  Modified:             ChangeLog gallery-2.3.1.ebuild
  Log:
  Add USE flag defaults on gd and mysql for bug #261030.
  
  (Portage version: 2.2.0_alpha7/cvs/Linux x86_64)

Revision  Changes    Path
1.178                www-apps/gallery/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/gallery/ChangeLog?rev=1.178&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/gallery/ChangeLog?rev=1.178&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/gallery/ChangeLog?r1=1.177&r2=1.178

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-apps/gallery/ChangeLog,v
retrieving revision 1.177
retrieving revision 1.178
diff -u -r1.177 -r1.178
--- ChangeLog	9 Dec 2010 09:02:31 -0000	1.177
+++ ChangeLog	9 Dec 2010 09:20:20 -0000	1.178
@@ -1,6 +1,9 @@
 # ChangeLog for www-apps/gallery
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-apps/gallery/ChangeLog,v 1.177 2010/12/09 09:02:31 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apps/gallery/ChangeLog,v 1.178 2010/12/09 09:20:20 radhermit Exp $
+
+  09 Dec 2010; Tim Harder <radhermit@gentoo.org> gallery-2.3.1.ebuild:
+  Add USE flag defaults on gd and mysql for bug #261030.
 
 *gallery-2.3.1 (09 Dec 2010)
 



1.2                  www-apps/gallery/gallery-2.3.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/gallery/gallery-2.3.1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/gallery/gallery-2.3.1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/gallery/gallery-2.3.1.ebuild?r1=1.1&r2=1.2

Index: gallery-2.3.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-apps/gallery/gallery-2.3.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- gallery-2.3.1.ebuild	9 Dec 2010 09:02:31 -0000	1.1
+++ gallery-2.3.1.ebuild	9 Dec 2010 09:20:20 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-apps/gallery/gallery-2.3.1.ebuild,v 1.1 2010/12/09 09:02:31 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apps/gallery/gallery-2.3.1.ebuild,v 1.2 2010/12/09 09:20:20 radhermit Exp $
 
 EAPI="2"
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-2"
 KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
-IUSE="ffmpeg gd imagemagick mysql netpbm postgres raw sqlite unzip zip"
+IUSE="ffmpeg +gd imagemagick +mysql netpbm postgres raw sqlite unzip zip"
 
 RDEPEND="raw? ( media-gfx/dcraw )
 	ffmpeg? ( media-video/ffmpeg )






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

* [gentoo-commits] gentoo-x86 commit in www-apps/gallery: ChangeLog gallery-2.3.1.ebuild
@ 2011-02-12  9:51 Markos Chandras (hwoarang)
  0 siblings, 0 replies; 9+ messages in thread
From: Markos Chandras (hwoarang) @ 2011-02-12  9:51 UTC (permalink / raw
  To: gentoo-commits

hwoarang    11/02/12 09:51:30

  Modified:             ChangeLog gallery-2.3.1.ebuild
  Log:
  Stable on amd64 wrt bug #354541
  
  (Portage version: 2.1.9.39/cvs/Linux x86_64)

Revision  Changes    Path
1.179                www-apps/gallery/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/gallery/ChangeLog?rev=1.179&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/gallery/ChangeLog?rev=1.179&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/gallery/ChangeLog?r1=1.178&r2=1.179

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-apps/gallery/ChangeLog,v
retrieving revision 1.178
retrieving revision 1.179
diff -u -r1.178 -r1.179
--- ChangeLog	9 Dec 2010 09:20:20 -0000	1.178
+++ ChangeLog	12 Feb 2011 09:51:29 -0000	1.179
@@ -1,6 +1,9 @@
 # ChangeLog for www-apps/gallery
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-apps/gallery/ChangeLog,v 1.178 2010/12/09 09:20:20 radhermit Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/www-apps/gallery/ChangeLog,v 1.179 2011/02/12 09:51:29 hwoarang Exp $
+
+  12 Feb 2011; Markos Chandras <hwoarang@gentoo.org> gallery-2.3.1.ebuild:
+  Stable on amd64 wrt bug #354541
 
   09 Dec 2010; Tim Harder <radhermit@gentoo.org> gallery-2.3.1.ebuild:
   Add USE flag defaults on gd and mysql for bug #261030.



1.3                  www-apps/gallery/gallery-2.3.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/gallery/gallery-2.3.1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/gallery/gallery-2.3.1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/gallery/gallery-2.3.1.ebuild?r1=1.2&r2=1.3

Index: gallery-2.3.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-apps/gallery/gallery-2.3.1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- gallery-2.3.1.ebuild	9 Dec 2010 09:20:20 -0000	1.2
+++ gallery-2.3.1.ebuild	12 Feb 2011 09:51:29 -0000	1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-apps/gallery/gallery-2.3.1.ebuild,v 1.2 2010/12/09 09:20:20 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apps/gallery/gallery-2.3.1.ebuild,v 1.3 2011/02/12 09:51:29 hwoarang Exp $
 
 EAPI="2"
 
@@ -11,7 +11,7 @@
 SRC_URI="mirror://sourceforge/${PN}/${P}-full.tar.gz"
 
 LICENSE="GPL-2"
-KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
 IUSE="ffmpeg +gd imagemagick +mysql netpbm postgres raw sqlite unzip zip"
 
 RDEPEND="raw? ( media-gfx/dcraw )






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

* [gentoo-commits] gentoo-x86 commit in www-apps/gallery: ChangeLog gallery-2.3.1.ebuild
@ 2011-02-14 18:22 PaweA Hajdan (phajdan.jr)
  0 siblings, 0 replies; 9+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2011-02-14 18:22 UTC (permalink / raw
  To: gentoo-commits

phajdan.jr    11/02/14 18:22:50

  Modified:             ChangeLog gallery-2.3.1.ebuild
  Log:
  x86 stable wrt bug #354541
  
  (Portage version: 2.1.9.25/cvs/Linux i686)

Revision  Changes    Path
1.181                www-apps/gallery/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/gallery/ChangeLog?rev=1.181&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/gallery/ChangeLog?rev=1.181&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/gallery/ChangeLog?r1=1.180&r2=1.181

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-apps/gallery/ChangeLog,v
retrieving revision 1.180
retrieving revision 1.181
diff -u -r1.180 -r1.181
--- ChangeLog	13 Feb 2011 18:42:59 -0000	1.180
+++ ChangeLog	14 Feb 2011 18:22:49 -0000	1.181
@@ -1,6 +1,9 @@
 # ChangeLog for www-apps/gallery
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-apps/gallery/ChangeLog,v 1.180 2011/02/13 18:42:59 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apps/gallery/ChangeLog,v 1.181 2011/02/14 18:22:49 phajdan.jr Exp $
+
+  14 Feb 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> gallery-2.3.1.ebuild:
+  x86 stable wrt bug #354541
 
   13 Feb 2011; Raúl Porcel <armin76@gentoo.org> gallery-1.5.10.ebuild,
   gallery-2.3.ebuild, gallery-2.3-r1.ebuild, gallery-2.3-r2.ebuild,



1.5                  www-apps/gallery/gallery-2.3.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/gallery/gallery-2.3.1.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/gallery/gallery-2.3.1.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/gallery/gallery-2.3.1.ebuild?r1=1.4&r2=1.5

Index: gallery-2.3.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-apps/gallery/gallery-2.3.1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- gallery-2.3.1.ebuild	13 Feb 2011 18:42:59 -0000	1.4
+++ gallery-2.3.1.ebuild	14 Feb 2011 18:22:49 -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/www-apps/gallery/gallery-2.3.1.ebuild,v 1.4 2011/02/13 18:42:59 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apps/gallery/gallery-2.3.1.ebuild,v 1.5 2011/02/14 18:22:49 phajdan.jr Exp $
 
 EAPI="2"
 
@@ -11,7 +11,7 @@
 SRC_URI="mirror://sourceforge/${PN}/${P}-full.tar.gz"
 
 LICENSE="GPL-2"
-KEYWORDS="amd64 ~hppa ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~hppa ~ppc ~ppc64 x86"
 IUSE="ffmpeg +gd imagemagick +mysql netpbm postgres raw sqlite unzip zip"
 
 RDEPEND="raw? ( media-gfx/dcraw )






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

* [gentoo-commits] gentoo-x86 commit in www-apps/gallery: ChangeLog gallery-2.3.1.ebuild
@ 2011-03-07 20:32 Tim Harder (radhermit)
  0 siblings, 0 replies; 9+ messages in thread
From: Tim Harder (radhermit) @ 2011-03-07 20:32 UTC (permalink / raw
  To: gentoo-commits

radhermit    11/03/07 20:32:53

  Modified:             ChangeLog gallery-2.3.1.ebuild
  Log:
  Fix install with the mysqli USE flag (bug #357503 thanks to Stef Simoens).
  
  (Portage version: 2.2.0_alpha26/cvs/Linux x86_64)

Revision  Changes    Path
1.183                www-apps/gallery/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/gallery/ChangeLog?rev=1.183&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/gallery/ChangeLog?rev=1.183&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/gallery/ChangeLog?r1=1.182&r2=1.183

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-apps/gallery/ChangeLog,v
retrieving revision 1.182
retrieving revision 1.183
diff -u -r1.182 -r1.183
--- ChangeLog	28 Feb 2011 18:06:37 -0000	1.182
+++ ChangeLog	7 Mar 2011 20:32:53 -0000	1.183
@@ -1,6 +1,9 @@
 # ChangeLog for www-apps/gallery
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-apps/gallery/ChangeLog,v 1.182 2011/02/28 18:06:37 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apps/gallery/ChangeLog,v 1.183 2011/03/07 20:32:53 radhermit Exp $
+
+  07 Mar 2011; Tim Harder <radhermit@gentoo.org> gallery-2.3.1.ebuild:
+  Fix install with the mysqli USE flag (bug #357503 thanks to Stef Simoens).
 
   28 Feb 2011; Samuli Suominen <ssuominen@gentoo.org> gallery-1.5.10.ebuild:
   Use virtual/jpeg.



1.6                  www-apps/gallery/gallery-2.3.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/gallery/gallery-2.3.1.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/gallery/gallery-2.3.1.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/gallery/gallery-2.3.1.ebuild?r1=1.5&r2=1.6

Index: gallery-2.3.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-apps/gallery/gallery-2.3.1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- gallery-2.3.1.ebuild	14 Feb 2011 18:22:49 -0000	1.5
+++ gallery-2.3.1.ebuild	7 Mar 2011 20:32:53 -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/www-apps/gallery/gallery-2.3.1.ebuild,v 1.5 2011/02/14 18:22:49 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apps/gallery/gallery-2.3.1.ebuild,v 1.6 2011/03/07 20:32:53 radhermit Exp $
 
 EAPI="2"
 
@@ -23,7 +23,7 @@
 	sqlite? ( dev-lang/php[pdo] )
 	gd? ( || ( dev-lang/php[gd] dev-lang/php[gd-external] ) )
 	mysql? ( || ( dev-lang/php[mysql] dev-lang/php[mysqli] ) )
-	dev-lang/php[mysql?,session,postgres?,sqlite?]
+	dev-lang/php[session,postgres?,sqlite?]
 	|| ( <dev-lang/php-5.3[pcre] >=dev-lang/php-5.3 )"
 
 S=${WORKDIR}/${PN}2






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

* [gentoo-commits] gentoo-x86 commit in www-apps/gallery: ChangeLog gallery-2.3.1.ebuild
@ 2011-03-07 21:15 Jeroen Roovers (jer)
  0 siblings, 0 replies; 9+ messages in thread
From: Jeroen Roovers (jer) @ 2011-03-07 21:15 UTC (permalink / raw
  To: gentoo-commits

jer         11/03/07 21:15:32

  Modified:             ChangeLog gallery-2.3.1.ebuild
  Log:
  Stable for HPPA (bug #354541).
  
  (Portage version: 2.2.0_alpha26/cvs/Linux i686)

Revision  Changes    Path
1.184                www-apps/gallery/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/gallery/ChangeLog?rev=1.184&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/gallery/ChangeLog?rev=1.184&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/gallery/ChangeLog?r1=1.183&r2=1.184

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-apps/gallery/ChangeLog,v
retrieving revision 1.183
retrieving revision 1.184
diff -u -r1.183 -r1.184
--- ChangeLog	7 Mar 2011 20:32:53 -0000	1.183
+++ ChangeLog	7 Mar 2011 21:15:32 -0000	1.184
@@ -1,6 +1,9 @@
 # ChangeLog for www-apps/gallery
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-apps/gallery/ChangeLog,v 1.183 2011/03/07 20:32:53 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apps/gallery/ChangeLog,v 1.184 2011/03/07 21:15:32 jer Exp $
+
+  07 Mar 2011; Jeroen Roovers <jer@gentoo.org> gallery-2.3.1.ebuild:
+  Stable for HPPA (bug #354541).
 
   07 Mar 2011; Tim Harder <radhermit@gentoo.org> gallery-2.3.1.ebuild:
   Fix install with the mysqli USE flag (bug #357503 thanks to Stef Simoens).



1.7                  www-apps/gallery/gallery-2.3.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/gallery/gallery-2.3.1.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/gallery/gallery-2.3.1.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/gallery/gallery-2.3.1.ebuild?r1=1.6&r2=1.7

Index: gallery-2.3.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-apps/gallery/gallery-2.3.1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- gallery-2.3.1.ebuild	7 Mar 2011 20:32:53 -0000	1.6
+++ gallery-2.3.1.ebuild	7 Mar 2011 21:15:32 -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/www-apps/gallery/gallery-2.3.1.ebuild,v 1.6 2011/03/07 20:32:53 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apps/gallery/gallery-2.3.1.ebuild,v 1.7 2011/03/07 21:15:32 jer Exp $
 
 EAPI="2"
 
@@ -11,7 +11,7 @@
 SRC_URI="mirror://sourceforge/${PN}/${P}-full.tar.gz"
 
 LICENSE="GPL-2"
-KEYWORDS="amd64 ~hppa ~ppc ~ppc64 x86"
+KEYWORDS="amd64 hppa ~ppc ~ppc64 x86"
 IUSE="ffmpeg +gd imagemagick +mysql netpbm postgres raw sqlite unzip zip"
 
 RDEPEND="raw? ( media-gfx/dcraw )






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

* [gentoo-commits] gentoo-x86 commit in www-apps/gallery: ChangeLog gallery-2.3.1.ebuild
@ 2011-03-23 20:01 Kacper Kowalik (xarthisius)
  0 siblings, 0 replies; 9+ messages in thread
From: Kacper Kowalik (xarthisius) @ 2011-03-23 20:01 UTC (permalink / raw
  To: gentoo-commits

xarthisius    11/03/23 20:01:01

  Modified:             ChangeLog gallery-2.3.1.ebuild
  Log:
  ppc/ppc64 stable wrt #354541
  
  (Portage version: 2.2.0_alpha27/cvs/Linux x86_64)

Revision  Changes    Path
1.185                www-apps/gallery/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/gallery/ChangeLog?rev=1.185&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/gallery/ChangeLog?rev=1.185&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/gallery/ChangeLog?r1=1.184&r2=1.185

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-apps/gallery/ChangeLog,v
retrieving revision 1.184
retrieving revision 1.185
diff -u -r1.184 -r1.185
--- ChangeLog	7 Mar 2011 21:15:32 -0000	1.184
+++ ChangeLog	23 Mar 2011 20:01:01 -0000	1.185
@@ -1,6 +1,9 @@
 # ChangeLog for www-apps/gallery
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-apps/gallery/ChangeLog,v 1.184 2011/03/07 21:15:32 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apps/gallery/ChangeLog,v 1.185 2011/03/23 20:01:01 xarthisius Exp $
+
+  23 Mar 2011; Kacper Kowalik <xarthisius@gentoo.org> gallery-2.3.1.ebuild:
+  ppc/ppc64 stable wrt #354541
 
   07 Mar 2011; Jeroen Roovers <jer@gentoo.org> gallery-2.3.1.ebuild:
   Stable for HPPA (bug #354541).



1.8                  www-apps/gallery/gallery-2.3.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/gallery/gallery-2.3.1.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/gallery/gallery-2.3.1.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/gallery/gallery-2.3.1.ebuild?r1=1.7&r2=1.8

Index: gallery-2.3.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-apps/gallery/gallery-2.3.1.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- gallery-2.3.1.ebuild	7 Mar 2011 21:15:32 -0000	1.7
+++ gallery-2.3.1.ebuild	23 Mar 2011 20:01:01 -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/www-apps/gallery/gallery-2.3.1.ebuild,v 1.7 2011/03/07 21:15:32 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apps/gallery/gallery-2.3.1.ebuild,v 1.8 2011/03/23 20:01:01 xarthisius Exp $
 
 EAPI="2"
 
@@ -11,7 +11,7 @@
 SRC_URI="mirror://sourceforge/${PN}/${P}-full.tar.gz"
 
 LICENSE="GPL-2"
-KEYWORDS="amd64 hppa ~ppc ~ppc64 x86"
+KEYWORDS="amd64 hppa ppc ppc64 x86"
 IUSE="ffmpeg +gd imagemagick +mysql netpbm postgres raw sqlite unzip zip"
 
 RDEPEND="raw? ( media-gfx/dcraw )






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

* [gentoo-commits] gentoo-x86 commit in www-apps/gallery: ChangeLog gallery-2.3.1.ebuild
@ 2011-04-04 12:14 Tomas Chvatal (scarabeus)
  0 siblings, 0 replies; 9+ messages in thread
From: Tomas Chvatal (scarabeus) @ 2011-04-04 12:14 UTC (permalink / raw
  To: gentoo-commits

scarabeus    11/04/04 12:14:40

  Modified:             ChangeLog gallery-2.3.1.ebuild
  Log:
  Move to virtual/ffmpeg from media-video/ffmpeg.
  
  (Portage version: 2.2.0_alpha29/cvs/Linux x86_64)

Revision  Changes    Path
1.187                www-apps/gallery/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/gallery/ChangeLog?rev=1.187&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/gallery/ChangeLog?rev=1.187&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/gallery/ChangeLog?r1=1.186&r2=1.187

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-apps/gallery/ChangeLog,v
retrieving revision 1.186
retrieving revision 1.187
diff -u -r1.186 -r1.187
--- ChangeLog	24 Mar 2011 07:05:05 -0000	1.186
+++ ChangeLog	4 Apr 2011 12:14:40 -0000	1.187
@@ -1,6 +1,9 @@
 # ChangeLog for www-apps/gallery
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-apps/gallery/ChangeLog,v 1.186 2011/03/24 07:05:05 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apps/gallery/ChangeLog,v 1.187 2011/04/04 12:14:40 scarabeus Exp $
+
+  04 Apr 2011; Tomáš Chvátal <scarabeus@gentoo.org> gallery-2.3.1.ebuild:
+  Move to virtual/ffmpeg from media-video/ffmpeg.
 
   24 Mar 2011; Tim Harder <radhermit@gentoo.org> -gallery-1.5.10.ebuild,
   -gallery-2.3.ebuild, -gallery-2.3-r1.ebuild, -gallery-2.3-r2.ebuild,



1.9                  www-apps/gallery/gallery-2.3.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/gallery/gallery-2.3.1.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/gallery/gallery-2.3.1.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/gallery/gallery-2.3.1.ebuild?r1=1.8&r2=1.9

Index: gallery-2.3.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-apps/gallery/gallery-2.3.1.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- gallery-2.3.1.ebuild	23 Mar 2011 20:01:01 -0000	1.8
+++ gallery-2.3.1.ebuild	4 Apr 2011 12:14:40 -0000	1.9
@@ -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/www-apps/gallery/gallery-2.3.1.ebuild,v 1.8 2011/03/23 20:01:01 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apps/gallery/gallery-2.3.1.ebuild,v 1.9 2011/04/04 12:14:40 scarabeus Exp $
 
 EAPI="2"
 
@@ -15,7 +15,7 @@
 IUSE="ffmpeg +gd imagemagick +mysql netpbm postgres raw sqlite unzip zip"
 
 RDEPEND="raw? ( media-gfx/dcraw )
-	ffmpeg? ( media-video/ffmpeg )
+	ffmpeg? ( virtual/ffmpeg )
 	imagemagick? ( || ( media-gfx/imagemagick media-gfx/graphicsmagick[imagemagick] ) )
 	netpbm? ( media-libs/netpbm media-gfx/jhead )
 	unzip? ( app-arch/unzip )






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

* [gentoo-commits] gentoo-x86 commit in www-apps/gallery: ChangeLog gallery-2.3.1.ebuild
@ 2013-01-23 17:12 Sergey Popov (pinkbyte)
  0 siblings, 0 replies; 9+ messages in thread
From: Sergey Popov (pinkbyte) @ 2013-01-23 17:12 UTC (permalink / raw
  To: gentoo-commits

pinkbyte    13/01/23 17:12:01

  Modified:             ChangeLog gallery-2.3.1.ebuild
  Log:
  Change homepage, wrt bug #421761
  
  (Portage version: 2.2.0_alpha152/cvs/Linux x86_64, unsigned Manifest commit)

Revision  Changes    Path
1.189                www-apps/gallery/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/gallery/ChangeLog?rev=1.189&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/gallery/ChangeLog?rev=1.189&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/gallery/ChangeLog?r1=1.188&r2=1.189

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-apps/gallery/ChangeLog,v
retrieving revision 1.188
retrieving revision 1.189
diff -u -r1.188 -r1.189
--- ChangeLog	9 Sep 2012 11:43:04 -0000	1.188
+++ ChangeLog	23 Jan 2013 17:12:01 -0000	1.189
@@ -1,6 +1,9 @@
 # ChangeLog for www-apps/gallery
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-apps/gallery/ChangeLog,v 1.188 2012/09/09 11:43:04 olemarkus Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/www-apps/gallery/ChangeLog,v 1.189 2013/01/23 17:12:01 pinkbyte Exp $
+
+  23 Jan 2013; Sergey Popov <pinkbyte@gentoo.org> gallery-2.3.1.ebuild:
+  Change homepage, wrt bug #421761
 
   09 Sep 2012; Ole Markus With <olemarkus@gentoo.org> gallery-2.3.1.ebuild:
   Fix dependencies to handle also php 5.4 with sqlite. Cleaned up deps related



1.11                 www-apps/gallery/gallery-2.3.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/gallery/gallery-2.3.1.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/gallery/gallery-2.3.1.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/gallery/gallery-2.3.1.ebuild?r1=1.10&r2=1.11

Index: gallery-2.3.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-apps/gallery/gallery-2.3.1.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- gallery-2.3.1.ebuild	9 Sep 2012 11:43:04 -0000	1.10
+++ gallery-2.3.1.ebuild	23 Jan 2013 17:12:01 -0000	1.11
@@ -1,13 +1,13 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-apps/gallery/gallery-2.3.1.ebuild,v 1.10 2012/09/09 11:43:04 olemarkus Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apps/gallery/gallery-2.3.1.ebuild,v 1.11 2013/01/23 17:12:01 pinkbyte Exp $
 
 EAPI="2"
 
 inherit webapp eutils depend.php confutils
 
 DESCRIPTION="Web based (PHP Script) photo album viewer/creator"
-HOMEPAGE="http://gallery.sourceforge.net/"
+HOMEPAGE="http://galleryproject.org/"
 SRC_URI="mirror://sourceforge/${PN}/${P}-full.tar.gz"
 
 LICENSE="GPL-2"





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

end of thread, other threads:[~2013-01-23 17:12 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-02-12  9:51 [gentoo-commits] gentoo-x86 commit in www-apps/gallery: ChangeLog gallery-2.3.1.ebuild Markos Chandras (hwoarang)
  -- strict thread matches above, loose matches on Subject: below --
2013-01-23 17:12 Sergey Popov (pinkbyte)
2011-04-04 12:14 Tomas Chvatal (scarabeus)
2011-03-23 20:01 Kacper Kowalik (xarthisius)
2011-03-07 21:15 Jeroen Roovers (jer)
2011-03-07 20:32 Tim Harder (radhermit)
2011-02-14 18:22 PaweA Hajdan (phajdan.jr)
2010-12-09  9:20 Tim Harder (radhermit)
2010-12-09  9:02 Tim Harder (radhermit)

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