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

arfrever    10/12/20 15:59:33

  Modified:             ChangeLog
  Added:                psycopg-2.3.2.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.0_alpha9_p9/cvs/Linux x86_64)

Revision  Changes    Path
1.112                dev-python/psycopg/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/psycopg/ChangeLog?rev=1.112&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/psycopg/ChangeLog?rev=1.112&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/psycopg/ChangeLog?r1=1.111&r2=1.112

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v
retrieving revision 1.111
retrieving revision 1.112
diff -u -r1.111 -r1.112
--- ChangeLog	13 Dec 2010 20:26:15 -0000	1.111
+++ ChangeLog	20 Dec 2010 15:59:33 -0000	1.112
@@ -1,6 +1,12 @@
 # ChangeLog for dev-python/psycopg
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.111 2010/12/13 20:26:15 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.112 2010/12/20 15:59:33 arfrever Exp $
+
+*psycopg-2.3.2 (20 Dec 2010)
+
+  20 Dec 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
+  +psycopg-2.3.2.ebuild:
+  Version bump.
 
 *psycopg-2.3.1 (13 Dec 2010)
 



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

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

Index: psycopg-2.3.2.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.3.2.ebuild,v 1.1 2010/12/20 15:59:33 arfrever Exp $

EAPI="3"
PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="3.* *-jython"

inherit distutils eutils

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

DESCRIPTION="PostgreSQL database adapter for Python"
HOMEPAGE="http://initd.org/psycopg/ http://pypi.python.org/pypi/psycopg2"
SRC_URI="http://initd.org/pub/software/psycopg/${MY_P}.tar.gz"

LICENSE="GPL-2"
SLOT="2"
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
IUSE="debug doc examples mxdatetime"

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

S="${WORKDIR}/${MY_P}"

PYTHON_CFLAGS=("2.* + -fno-strict-aliasing")

DOCS="AUTHORS doc/HACKING doc/psycopg2.txt doc/SUCCESS"
PYTHON_MODNAME="${PN}2"

src_prepare() {
	epatch "${FILESDIR}/${PN}-2.0.12-setup.py.patch"
	epatch "${FILESDIR}/${PN}-2.0.9-round-solaris.patch"

	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() {
	distutils_src_install

	if use doc; then
		pushd doc/html > /dev/null
		docinto html
		cp -R [a-z]* _static "${ED}usr/share/doc/${PF}/html" || die "Installation of documentation failed"
		popd > /dev/null
	fi

	if use examples; then
		insinto /usr/share/doc/${PF}
		doins -r examples || die "Installation of examples failed"
	fi
}






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

* [gentoo-commits] gentoo-x86 commit in dev-python/psycopg: psycopg-2.3.2.ebuild ChangeLog
@ 2011-01-26 18:32 Markos Chandras (hwoarang)
  0 siblings, 0 replies; 5+ messages in thread
From: Markos Chandras (hwoarang) @ 2011-01-26 18:32 UTC (permalink / raw
  To: gentoo-commits

hwoarang    11/01/26 18:32:42

  Modified:             psycopg-2.3.2.ebuild ChangeLog
  Log:
  Stable on amd64 wrt bug #352730
  
  (Portage version: 2.1.9.35/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  dev-python/psycopg/psycopg-2.3.2.ebuild

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

Index: psycopg-2.3.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.3.2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- psycopg-2.3.2.ebuild	20 Dec 2010 15:59:33 -0000	1.1
+++ psycopg-2.3.2.ebuild	26 Jan 2011 18:32:42 -0000	1.2
@@ -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/dev-python/psycopg/psycopg-2.3.2.ebuild,v 1.1 2010/12/20 15:59:33 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.3.2.ebuild,v 1.2 2011/01/26 18:32:42 hwoarang Exp $
 
 EAPI="3"
 PYTHON_DEPEND="2"
@@ -17,7 +17,7 @@
 
 LICENSE="GPL-2"
 SLOT="2"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
 IUSE="debug doc examples mxdatetime"
 
 DEPEND=">=dev-db/postgresql-base-8.1



1.114                dev-python/psycopg/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v
retrieving revision 1.113
retrieving revision 1.114
diff -u -r1.113 -r1.114
--- ChangeLog	27 Dec 2010 21:05:31 -0000	1.113
+++ ChangeLog	26 Jan 2011 18:32:42 -0000	1.114
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/psycopg
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.113 2010/12/27 21:05:31 ranger Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.114 2011/01/26 18:32:42 hwoarang Exp $
+
+  26 Jan 2011; Markos Chandras <hwoarang@gentoo.org> psycopg-2.3.2.ebuild:
+  Stable on amd64 wrt bug #352730
 
   27 Dec 2010; Brent Baude <ranger@gentoo.org> psycopg-2.2.2.ebuild:
   Marking psycopg-2.2.2 ppc64 for bug 337136






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

* [gentoo-commits] gentoo-x86 commit in dev-python/psycopg: psycopg-2.3.2.ebuild ChangeLog
@ 2011-01-28 17:24 PaweA Hajdan (phajdan.jr)
  0 siblings, 0 replies; 5+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2011-01-28 17:24 UTC (permalink / raw
  To: gentoo-commits

phajdan.jr    11/01/28 17:24:20

  Modified:             psycopg-2.3.2.ebuild ChangeLog
  Log:
  x86 stable wrt bug #352730
  
  (Portage version: 2.1.9.25/cvs/Linux i686)

Revision  Changes    Path
1.3                  dev-python/psycopg/psycopg-2.3.2.ebuild

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

Index: psycopg-2.3.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.3.2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- psycopg-2.3.2.ebuild	26 Jan 2011 18:32:42 -0000	1.2
+++ psycopg-2.3.2.ebuild	28 Jan 2011 17:24:20 -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/dev-python/psycopg/psycopg-2.3.2.ebuild,v 1.2 2011/01/26 18:32:42 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.3.2.ebuild,v 1.3 2011/01/28 17:24:20 phajdan.jr Exp $
 
 EAPI="3"
 PYTHON_DEPEND="2"
@@ -17,7 +17,7 @@
 
 LICENSE="GPL-2"
 SLOT="2"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
 IUSE="debug doc examples mxdatetime"
 
 DEPEND=">=dev-db/postgresql-base-8.1



1.115                dev-python/psycopg/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v
retrieving revision 1.114
retrieving revision 1.115
diff -u -r1.114 -r1.115
--- ChangeLog	26 Jan 2011 18:32:42 -0000	1.114
+++ ChangeLog	28 Jan 2011 17:24:20 -0000	1.115
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/psycopg
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.114 2011/01/26 18:32:42 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.115 2011/01/28 17:24:20 phajdan.jr Exp $
+
+  28 Jan 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> psycopg-2.3.2.ebuild:
+  x86 stable wrt bug #352730
 
   26 Jan 2011; Markos Chandras <hwoarang@gentoo.org> psycopg-2.3.2.ebuild:
   Stable on amd64 wrt bug #352730






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

* [gentoo-commits] gentoo-x86 commit in dev-python/psycopg: psycopg-2.3.2.ebuild ChangeLog
@ 2011-01-30 17:56 Raul Porcel (armin76)
  0 siblings, 0 replies; 5+ messages in thread
From: Raul Porcel (armin76) @ 2011-01-30 17:56 UTC (permalink / raw
  To: gentoo-commits

armin76     11/01/30 17:56:34

  Modified:             psycopg-2.3.2.ebuild ChangeLog
  Log:
  alpha/ia64/sparc stable wrt #352730
  
  (Portage version: 2.1.9.25/cvs/Linux ia64)

Revision  Changes    Path
1.4                  dev-python/psycopg/psycopg-2.3.2.ebuild

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

Index: psycopg-2.3.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.3.2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- psycopg-2.3.2.ebuild	28 Jan 2011 17:24:20 -0000	1.3
+++ psycopg-2.3.2.ebuild	30 Jan 2011 17:56:34 -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/dev-python/psycopg/psycopg-2.3.2.ebuild,v 1.3 2011/01/28 17:24:20 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.3.2.ebuild,v 1.4 2011/01/30 17:56:34 armin76 Exp $
 
 EAPI="3"
 PYTHON_DEPEND="2"
@@ -17,7 +17,7 @@
 
 LICENSE="GPL-2"
 SLOT="2"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ia64 ~ppc ~ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
 IUSE="debug doc examples mxdatetime"
 
 DEPEND=">=dev-db/postgresql-base-8.1



1.116                dev-python/psycopg/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v
retrieving revision 1.115
retrieving revision 1.116
diff -u -r1.115 -r1.116
--- ChangeLog	28 Jan 2011 17:24:20 -0000	1.115
+++ ChangeLog	30 Jan 2011 17:56:34 -0000	1.116
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/psycopg
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.115 2011/01/28 17:24:20 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.116 2011/01/30 17:56:34 armin76 Exp $
+
+  30 Jan 2011; Raúl Porcel <armin76@gentoo.org> psycopg-2.3.2.ebuild:
+  alpha/ia64/sparc stable wrt #352730
 
   28 Jan 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> psycopg-2.3.2.ebuild:
   x86 stable wrt bug #352730






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

* [gentoo-commits] gentoo-x86 commit in dev-python/psycopg: psycopg-2.3.2.ebuild ChangeLog
@ 2011-02-08 22:31 Kacper Kowalik (xarthisius)
  0 siblings, 0 replies; 5+ messages in thread
From: Kacper Kowalik (xarthisius) @ 2011-02-08 22:31 UTC (permalink / raw
  To: gentoo-commits

xarthisius    11/02/08 22:31:32

  Modified:             psycopg-2.3.2.ebuild ChangeLog
  Log:
  ppc/ppc64 stable wrt #352730
  
  (Portage version: 2.1.9.25/cvs/Linux ppc64)

Revision  Changes    Path
1.5                  dev-python/psycopg/psycopg-2.3.2.ebuild

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

Index: psycopg-2.3.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.3.2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- psycopg-2.3.2.ebuild	30 Jan 2011 17:56:34 -0000	1.4
+++ psycopg-2.3.2.ebuild	8 Feb 2011 22:31:31 -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/dev-python/psycopg/psycopg-2.3.2.ebuild,v 1.4 2011/01/30 17:56:34 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.3.2.ebuild,v 1.5 2011/02/08 22:31:31 xarthisius Exp $
 
 EAPI="3"
 PYTHON_DEPEND="2"
@@ -17,7 +17,7 @@
 
 LICENSE="GPL-2"
 SLOT="2"
-KEYWORDS="alpha amd64 ~arm ia64 ~ppc ~ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ia64 ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
 IUSE="debug doc examples mxdatetime"
 
 DEPEND=">=dev-db/postgresql-base-8.1



1.117                dev-python/psycopg/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v
retrieving revision 1.116
retrieving revision 1.117
diff -u -r1.116 -r1.117
--- ChangeLog	30 Jan 2011 17:56:34 -0000	1.116
+++ ChangeLog	8 Feb 2011 22:31:31 -0000	1.117
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/psycopg
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.116 2011/01/30 17:56:34 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.117 2011/02/08 22:31:31 xarthisius Exp $
+
+  08 Feb 2011; Kacper Kowalik <xarthisius@gentoo.org> psycopg-2.3.2.ebuild:
+  ppc/ppc64 stable wrt #352730
 
   30 Jan 2011; Raúl Porcel <armin76@gentoo.org> psycopg-2.3.2.ebuild:
   alpha/ia64/sparc stable wrt #352730






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

end of thread, other threads:[~2011-02-08 22:31 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-02-08 22:31 [gentoo-commits] gentoo-x86 commit in dev-python/psycopg: psycopg-2.3.2.ebuild ChangeLog Kacper Kowalik (xarthisius)
  -- strict thread matches above, loose matches on Subject: below --
2011-01-30 17:56 Raul Porcel (armin76)
2011-01-28 17:24 PaweA Hajdan (phajdan.jr)
2011-01-26 18:32 Markos Chandras (hwoarang)
2010-12-20 15:59 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