public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-python/psycopg: ChangeLog psycopg-2.0.11.ebuild
@ 2009-06-20 16:27 Arfrever Frehtes Taifersar Arahesis (arfrever)
  0 siblings, 0 replies; 7+ messages in thread
From: Arfrever Frehtes Taifersar Arahesis (arfrever) @ 2009-06-20 16:27 UTC (permalink / raw
  To: gentoo-commits

arfrever    09/06/20 16:27:58

  Modified:             ChangeLog
  Added:                psycopg-2.0.11.ebuild
  Log:
  Version bump.
  (Portage version: 13655-svn/cvs/Linux x86_64)

Revision  Changes    Path
1.74                 dev-python/psycopg/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/psycopg/ChangeLog?rev=1.74&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/psycopg/ChangeLog?rev=1.74&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/psycopg/ChangeLog?r1=1.73&r2=1.74

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v
retrieving revision 1.73
retrieving revision 1.74
diff -u -r1.73 -r1.74
--- ChangeLog	7 May 2009 14:16:41 -0000	1.73
+++ ChangeLog	20 Jun 2009 16:27:58 -0000	1.74
@@ -1,6 +1,12 @@
 # ChangeLog for dev-python/psycopg
-# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.73 2009/05/07 14:16:41 fauli Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.74 2009/06/20 16:27:58 arfrever Exp $
+
+*psycopg-2.0.11 (20 Jun 2009)
+
+  20 Jun 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
+  +psycopg-2.0.11.ebuild:
+  Version bump.
 
   07 May 2009; Christian Faulhammer <fauli@gentoo.org> psycopg-2.0.8.ebuild:
   stable x86, bug 262739



1.1                  dev-python/psycopg/psycopg-2.0.11.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/psycopg/psycopg-2.0.11.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/psycopg/psycopg-2.0.11.ebuild?rev=1.1&content-type=text/plain

Index: psycopg-2.0.11.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.0.11.ebuild,v 1.1 2009/06/20 16:27:58 arfrever Exp $

NEED_PYTHON="2.4"

inherit distutils

MY_P=${PN}2-${PV}

DESCRIPTION="PostgreSQL database adapter for Python."
SRC_URI="http://initd.org/pub/software/psycopg/${MY_P}.tar.gz"
HOMEPAGE="http://initd.org/projects/psycopg2"
SLOT="2"
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
LICENSE="GPL-2"
IUSE="debug doc examples mxdatetime"

DEPEND=">=virtual/postgresql-base-8.1
	mxdatetime? ( dev-python/egenix-mx-base )"
RDEPEND="${DEPEND}"

S=${WORKDIR}/${MY_P}

PYTHON_MODNAME=${PN}2

src_unpack() {
	unpack ${A}
	cd "${S}"

	if use debug; then
		sed -i 's/^\(define=\)/\1PSYCOPG_DEBUG,/' setup.cfg || die "sed failed"
	fi

	if use mxdatetime; then
		sed -i 's/\(use_pydatetime=\)1/\10/' setup.cfg || die "sed failed"
	fi
}

src_install() {
	DOCS="AUTHORS doc/HACKING doc/SUCCESS doc/TODO doc/async.txt"
	distutils_src_install

	insinto /usr/share/doc/${PF}
	use examples && doins -r examples

	cd doc
	use doc && dohtml -r .
}






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

* [gentoo-commits] gentoo-x86 commit in dev-python/psycopg: ChangeLog psycopg-2.0.11.ebuild
@ 2009-07-21 20:17 Christian Faulhammer (fauli)
  0 siblings, 0 replies; 7+ messages in thread
From: Christian Faulhammer (fauli) @ 2009-07-21 20:17 UTC (permalink / raw
  To: gentoo-commits

fauli       09/07/21 20:17:30

  Modified:             ChangeLog psycopg-2.0.11.ebuild
  Log:
  stable x86, bug 278366
  (Portage version: 2.1.6.13/cvs/Linux i686)

Revision  Changes    Path
1.75                 dev-python/psycopg/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/psycopg/ChangeLog?rev=1.75&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/psycopg/ChangeLog?rev=1.75&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/psycopg/ChangeLog?r1=1.74&r2=1.75

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v
retrieving revision 1.74
retrieving revision 1.75
diff -u -r1.74 -r1.75
--- ChangeLog	20 Jun 2009 16:27:58 -0000	1.74
+++ ChangeLog	21 Jul 2009 20:17:30 -0000	1.75
@@ -1,6 +1,10 @@
 # ChangeLog for dev-python/psycopg
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.74 2009/06/20 16:27:58 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.75 2009/07/21 20:17:30 fauli Exp $
+
+  21 Jul 2009; Christian Faulhammer <fauli@gentoo.org>
+  psycopg-2.0.11.ebuild:
+  stable x86, bug 278366
 
 *psycopg-2.0.11 (20 Jun 2009)
 



1.2                  dev-python/psycopg/psycopg-2.0.11.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/psycopg/psycopg-2.0.11.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/psycopg/psycopg-2.0.11.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/psycopg/psycopg-2.0.11.ebuild?r1=1.1&r2=1.2

Index: psycopg-2.0.11.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.0.11.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- psycopg-2.0.11.ebuild	20 Jun 2009 16:27:58 -0000	1.1
+++ psycopg-2.0.11.ebuild	21 Jul 2009 20:17:30 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.0.11.ebuild,v 1.1 2009/06/20 16:27:58 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.0.11.ebuild,v 1.2 2009/07/21 20:17:30 fauli Exp $
 
 NEED_PYTHON="2.4"
 
@@ -12,7 +12,7 @@
 SRC_URI="http://initd.org/pub/software/psycopg/${MY_P}.tar.gz"
 HOMEPAGE="http://initd.org/projects/psycopg2"
 SLOT="2"
-KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
 LICENSE="GPL-2"
 IUSE="debug doc examples mxdatetime"
 






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

* [gentoo-commits] gentoo-x86 commit in dev-python/psycopg: ChangeLog psycopg-2.0.11.ebuild
@ 2009-07-27 13:06 Brent Baude (ranger)
  0 siblings, 0 replies; 7+ messages in thread
From: Brent Baude (ranger) @ 2009-07-27 13:06 UTC (permalink / raw
  To: gentoo-commits

ranger      09/07/27 13:06:50

  Modified:             ChangeLog psycopg-2.0.11.ebuild
  Log:
  stable ppc64, bug 278366
  (Portage version: 2.1.6.13/cvs/Linux ppc64)

Revision  Changes    Path
1.76                 dev-python/psycopg/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/psycopg/ChangeLog?rev=1.76&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/psycopg/ChangeLog?rev=1.76&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/psycopg/ChangeLog?r1=1.75&r2=1.76

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v
retrieving revision 1.75
retrieving revision 1.76
diff -u -r1.75 -r1.76
--- ChangeLog	21 Jul 2009 20:17:30 -0000	1.75
+++ ChangeLog	27 Jul 2009 13:06:50 -0000	1.76
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/psycopg
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.75 2009/07/21 20:17:30 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.76 2009/07/27 13:06:50 ranger Exp $
+
+  26 Jul 2009; Brent Baude <ranger@gentoo.org> psycopg-2.0.11.ebuild:
+  stable ppc64, bug 278366
 
   21 Jul 2009; Christian Faulhammer <fauli@gentoo.org>
   psycopg-2.0.11.ebuild:



1.3                  dev-python/psycopg/psycopg-2.0.11.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/psycopg/psycopg-2.0.11.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/psycopg/psycopg-2.0.11.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/psycopg/psycopg-2.0.11.ebuild?r1=1.2&r2=1.3

Index: psycopg-2.0.11.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.0.11.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- psycopg-2.0.11.ebuild	21 Jul 2009 20:17:30 -0000	1.2
+++ psycopg-2.0.11.ebuild	27 Jul 2009 13:06:50 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.0.11.ebuild,v 1.2 2009/07/21 20:17:30 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.0.11.ebuild,v 1.3 2009/07/27 13:06:50 ranger Exp $
 
 NEED_PYTHON="2.4"
 
@@ -12,7 +12,7 @@
 SRC_URI="http://initd.org/pub/software/psycopg/${MY_P}.tar.gz"
 HOMEPAGE="http://initd.org/projects/psycopg2"
 SLOT="2"
-KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ppc64 ~sparc x86 ~x86-fbsd"
 LICENSE="GPL-2"
 IUSE="debug doc examples mxdatetime"
 






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

* [gentoo-commits] gentoo-x86 commit in dev-python/psycopg: ChangeLog psycopg-2.0.11.ebuild
@ 2009-08-02 13:54 Markus Meier (maekke)
  0 siblings, 0 replies; 7+ messages in thread
From: Markus Meier (maekke) @ 2009-08-02 13:54 UTC (permalink / raw
  To: gentoo-commits

maekke      09/08/02 13:54:55

  Modified:             ChangeLog psycopg-2.0.11.ebuild
  Log:
  amd64 stable, bug #278366
  (Portage version: 2.2_rc33/cvs/Linux x86_64)

Revision  Changes    Path
1.77                 dev-python/psycopg/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/psycopg/ChangeLog?rev=1.77&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/psycopg/ChangeLog?rev=1.77&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/psycopg/ChangeLog?r1=1.76&r2=1.77

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v
retrieving revision 1.76
retrieving revision 1.77
diff -u -r1.76 -r1.77
--- ChangeLog	27 Jul 2009 13:06:50 -0000	1.76
+++ ChangeLog	2 Aug 2009 13:54:55 -0000	1.77
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/psycopg
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.76 2009/07/27 13:06:50 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.77 2009/08/02 13:54:55 maekke Exp $
+
+  02 Aug 2009; Markus Meier <maekke@gentoo.org> psycopg-2.0.11.ebuild:
+  amd64 stable, bug #278366
 
   26 Jul 2009; Brent Baude <ranger@gentoo.org> psycopg-2.0.11.ebuild:
   stable ppc64, bug 278366



1.4                  dev-python/psycopg/psycopg-2.0.11.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/psycopg/psycopg-2.0.11.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/psycopg/psycopg-2.0.11.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/psycopg/psycopg-2.0.11.ebuild?r1=1.3&r2=1.4

Index: psycopg-2.0.11.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.0.11.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- psycopg-2.0.11.ebuild	27 Jul 2009 13:06:50 -0000	1.3
+++ psycopg-2.0.11.ebuild	2 Aug 2009 13:54:55 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.0.11.ebuild,v 1.3 2009/07/27 13:06:50 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.0.11.ebuild,v 1.4 2009/08/02 13:54:55 maekke Exp $
 
 NEED_PYTHON="2.4"
 
@@ -12,7 +12,7 @@
 SRC_URI="http://initd.org/pub/software/psycopg/${MY_P}.tar.gz"
 HOMEPAGE="http://initd.org/projects/psycopg2"
 SLOT="2"
-KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~ia64 ~ppc ppc64 ~sparc x86 ~x86-fbsd"
 LICENSE="GPL-2"
 IUSE="debug doc examples mxdatetime"
 






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

* [gentoo-commits] gentoo-x86 commit in dev-python/psycopg: ChangeLog psycopg-2.0.11.ebuild
@ 2009-08-09 13:23 Gysbert Wassenaar (nixnut)
  0 siblings, 0 replies; 7+ messages in thread
From: Gysbert Wassenaar (nixnut) @ 2009-08-09 13:23 UTC (permalink / raw
  To: gentoo-commits

nixnut      09/08/09 13:23:14

  Modified:             ChangeLog psycopg-2.0.11.ebuild
  Log:
  ppc stable #278366
  (Portage version: 2.1.6.13/cvs/Linux ppc)

Revision  Changes    Path
1.78                 dev-python/psycopg/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/psycopg/ChangeLog?rev=1.78&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/psycopg/ChangeLog?rev=1.78&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/psycopg/ChangeLog?r1=1.77&r2=1.78

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v
retrieving revision 1.77
retrieving revision 1.78
diff -u -r1.77 -r1.78
--- ChangeLog	2 Aug 2009 13:54:55 -0000	1.77
+++ ChangeLog	9 Aug 2009 13:23:14 -0000	1.78
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/psycopg
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.77 2009/08/02 13:54:55 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.78 2009/08/09 13:23:14 nixnut Exp $
+
+  09 Aug 2009; nixnut <nixnut@gentoo.org> psycopg-2.0.11.ebuild:
+  ppc stable #278366
 
   02 Aug 2009; Markus Meier <maekke@gentoo.org> psycopg-2.0.11.ebuild:
   amd64 stable, bug #278366



1.5                  dev-python/psycopg/psycopg-2.0.11.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/psycopg/psycopg-2.0.11.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/psycopg/psycopg-2.0.11.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/psycopg/psycopg-2.0.11.ebuild?r1=1.4&r2=1.5

Index: psycopg-2.0.11.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.0.11.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- psycopg-2.0.11.ebuild	2 Aug 2009 13:54:55 -0000	1.4
+++ psycopg-2.0.11.ebuild	9 Aug 2009 13:23:14 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.0.11.ebuild,v 1.4 2009/08/02 13:54:55 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.0.11.ebuild,v 1.5 2009/08/09 13:23:14 nixnut Exp $
 
 NEED_PYTHON="2.4"
 
@@ -12,7 +12,7 @@
 SRC_URI="http://initd.org/pub/software/psycopg/${MY_P}.tar.gz"
 HOMEPAGE="http://initd.org/projects/psycopg2"
 SLOT="2"
-KEYWORDS="~alpha amd64 ~ia64 ~ppc ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~ia64 ppc ppc64 ~sparc x86 ~x86-fbsd"
 LICENSE="GPL-2"
 IUSE="debug doc examples mxdatetime"
 






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

* [gentoo-commits] gentoo-x86 commit in dev-python/psycopg: ChangeLog psycopg-2.0.11.ebuild
@ 2009-08-26 12:51 Tobias Klausmann (klausman)
  0 siblings, 0 replies; 7+ messages in thread
From: Tobias Klausmann (klausman) @ 2009-08-26 12:51 UTC (permalink / raw
  To: gentoo-commits

klausman    09/08/26 12:51:10

  Modified:             ChangeLog psycopg-2.0.11.ebuild
  Log:
  Stable on alpha, bug #278366
  (Portage version: 2.1.6.13/cvs/Linux x86_64)

Revision  Changes    Path
1.81                 dev-python/psycopg/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/psycopg/ChangeLog?rev=1.81&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/psycopg/ChangeLog?rev=1.81&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/psycopg/ChangeLog?r1=1.80&r2=1.81

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v
retrieving revision 1.80
retrieving revision 1.81
diff -u -r1.80 -r1.81
--- ChangeLog	25 Aug 2009 15:37:26 -0000	1.80
+++ ChangeLog	26 Aug 2009 12:51:10 -0000	1.81
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/psycopg
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.80 2009/08/25 15:37:26 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.81 2009/08/26 12:51:10 klausman Exp $
+
+  26 Aug 2009; Tobias Klausmann <klausman@gentoo.org> psycopg-2.0.11.ebuild:
+  Stable on alpha, bug #278366
 
   25 Aug 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
   psycopg-2.0.12.ebuild, +files/psycopg-2.0.12-setup.py.patch, metadata.xml:



1.6                  dev-python/psycopg/psycopg-2.0.11.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/psycopg/psycopg-2.0.11.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/psycopg/psycopg-2.0.11.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/psycopg/psycopg-2.0.11.ebuild?r1=1.5&r2=1.6

Index: psycopg-2.0.11.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.0.11.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- psycopg-2.0.11.ebuild	9 Aug 2009 13:23:14 -0000	1.5
+++ psycopg-2.0.11.ebuild	26 Aug 2009 12:51:10 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.0.11.ebuild,v 1.5 2009/08/09 13:23:14 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.0.11.ebuild,v 1.6 2009/08/26 12:51:10 klausman Exp $
 
 NEED_PYTHON="2.4"
 
@@ -12,7 +12,7 @@
 SRC_URI="http://initd.org/pub/software/psycopg/${MY_P}.tar.gz"
 HOMEPAGE="http://initd.org/projects/psycopg2"
 SLOT="2"
-KEYWORDS="~alpha amd64 ~ia64 ppc ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 ~ia64 ppc ppc64 ~sparc x86 ~x86-fbsd"
 LICENSE="GPL-2"
 IUSE="debug doc examples mxdatetime"
 






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

* [gentoo-commits] gentoo-x86 commit in dev-python/psycopg: ChangeLog psycopg-2.0.11.ebuild
@ 2009-09-07 13:55 Raul Porcel (armin76)
  0 siblings, 0 replies; 7+ messages in thread
From: Raul Porcel (armin76) @ 2009-09-07 13:55 UTC (permalink / raw
  To: gentoo-commits

armin76     09/09/07 13:55:06

  Modified:             ChangeLog psycopg-2.0.11.ebuild
  Log:
  ia64/sparc stable wrt #278366
  (Portage version: 2.1.6.13/cvs/Linux ia64)

Revision  Changes    Path
1.82                 dev-python/psycopg/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/psycopg/ChangeLog?rev=1.82&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/psycopg/ChangeLog?rev=1.82&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/psycopg/ChangeLog?r1=1.81&r2=1.82

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v
retrieving revision 1.81
retrieving revision 1.82
diff -u -r1.81 -r1.82
--- ChangeLog	26 Aug 2009 12:51:10 -0000	1.81
+++ ChangeLog	7 Sep 2009 13:55:06 -0000	1.82
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/psycopg
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.81 2009/08/26 12:51:10 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.82 2009/09/07 13:55:06 armin76 Exp $
+
+  07 Sep 2009; Raúl Porcel <armin76@gentoo.org> psycopg-2.0.11.ebuild:
+  ia64/sparc stable wrt #278366
 
   26 Aug 2009; Tobias Klausmann <klausman@gentoo.org> psycopg-2.0.11.ebuild:
   Stable on alpha, bug #278366



1.7                  dev-python/psycopg/psycopg-2.0.11.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/psycopg/psycopg-2.0.11.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/psycopg/psycopg-2.0.11.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/psycopg/psycopg-2.0.11.ebuild?r1=1.6&r2=1.7

Index: psycopg-2.0.11.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.0.11.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- psycopg-2.0.11.ebuild	26 Aug 2009 12:51:10 -0000	1.6
+++ psycopg-2.0.11.ebuild	7 Sep 2009 13:55:06 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.0.11.ebuild,v 1.6 2009/08/26 12:51:10 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.0.11.ebuild,v 1.7 2009/09/07 13:55:06 armin76 Exp $
 
 NEED_PYTHON="2.4"
 
@@ -12,7 +12,7 @@
 SRC_URI="http://initd.org/pub/software/psycopg/${MY_P}.tar.gz"
 HOMEPAGE="http://initd.org/projects/psycopg2"
 SLOT="2"
-KEYWORDS="alpha amd64 ~ia64 ppc ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 ia64 ppc ppc64 sparc x86 ~x86-fbsd"
 LICENSE="GPL-2"
 IUSE="debug doc examples mxdatetime"
 






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

end of thread, other threads:[~2009-09-07 13:55 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-09-07 13:55 [gentoo-commits] gentoo-x86 commit in dev-python/psycopg: ChangeLog psycopg-2.0.11.ebuild Raul Porcel (armin76)
  -- strict thread matches above, loose matches on Subject: below --
2009-08-26 12:51 Tobias Klausmann (klausman)
2009-08-09 13:23 Gysbert Wassenaar (nixnut)
2009-08-02 13:54 Markus Meier (maekke)
2009-07-27 13:06 Brent Baude (ranger)
2009-07-21 20:17 Christian Faulhammer (fauli)
2009-06-20 16:27 Arfrever Frehtes Taifersar Arahesis (arfrever)

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