public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-python/psycopg: psycopg-2.5.1.ebuild ChangeLog
@ 2013-06-25  8:10 Patrick Lauer (patrick)
  0 siblings, 0 replies; 9+ messages in thread
From: Patrick Lauer (patrick) @ 2013-06-25  8:10 UTC (permalink / raw
  To: gentoo-commits

patrick     13/06/25 08:10:50

  Modified:             ChangeLog
  Added:                psycopg-2.5.1.ebuild
  Log:
  Bump
  
  (Portage version: 2.2.0_alpha185/cvs/Linux x86_64, unsigned Manifest commit)

Revision  Changes    Path
1.161                dev-python/psycopg/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v
retrieving revision 1.160
retrieving revision 1.161
diff -u -r1.160 -r1.161
--- ChangeLog	8 Apr 2013 05:03:14 -0000	1.160
+++ ChangeLog	25 Jun 2013 08:10:50 -0000	1.161
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/psycopg
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.160 2013/04/08 05:03:14 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.161 2013/06/25 08:10:50 patrick Exp $
+
+*psycopg-2.5.1 (25 Jun 2013)
+
+  25 Jun 2013; Patrick Lauer <patrick@gentoo.org> +psycopg-2.5.1.ebuild:
+  Bump
 
 *psycopg-2.5 (08 Apr 2013)
 



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

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

Index: psycopg-2.5.1.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.5.1.ebuild,v 1.1 2013/06/25 08:10:50 patrick Exp $

EAPI=5
PYTHON_COMPAT=( python{2_5,2_6,2_7,3_1,3_2,3_3} )

inherit distutils-r1 flag-o-matic

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

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

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

RDEPEND=">=dev-db/postgresql-base-8.1"
DEPEND="${RDEPEND}
	doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"

RESTRICT="test"

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

python_compile() {
	local CFLAGS=${CFLAGS} CXXFLAGS=${CXXFLAGS}

	[[ ${EPYTHON} != python3* ]] && append-flags -fno-strict-aliasing

	distutils-r1_python_compile
}

python_prepare_all() {
	local PATCHES=(
		"${FILESDIR}/${PN}-2.4.2-setup.py.patch"
	)

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

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

	distutils-r1_python_prepare_all
}

python_compile_all() {
	use doc && emake -C doc -j1 html text
}

python_install_all() {
	distutils-r1_python_install_all

	dodoc doc/{HACKING,SUCCESS}

	if use doc; then
		dodoc doc/psycopg2.txt
		dohtml -r doc/html/.
	fi

	if use examples; then
		insinto /usr/share/doc/${PF}/examples
		doins -r examples/.
	fi
}





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

* [gentoo-commits] gentoo-x86 commit in dev-python/psycopg: psycopg-2.5.1.ebuild ChangeLog
@ 2013-10-14 18:01 Tony Vroon (chainsaw)
  0 siblings, 0 replies; 9+ messages in thread
From: Tony Vroon (chainsaw) @ 2013-10-14 18:01 UTC (permalink / raw
  To: gentoo-commits

chainsaw    13/10/14 18:01:04

  Modified:             psycopg-2.5.1.ebuild ChangeLog
  Log:
  Marked stable on AMD64 based on arch tester report by Elijah "Armageddon" El Lazkani in bug #487872.
  
  (Portage version: 2.2.0/cvs/Linux x86_64, signed Manifest commit with key 0xB5058F9A)

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

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

Index: psycopg-2.5.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.5.1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- psycopg-2.5.1.ebuild	5 Sep 2013 18:46:24 -0000	1.2
+++ psycopg-2.5.1.ebuild	14 Oct 2013 18:01:04 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.5.1.ebuild,v 1.2 2013/09/05 18:46:24 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.5.1.ebuild,v 1.3 2013/10/14 18:01:04 chainsaw Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
@@ -16,7 +16,7 @@
 
 LICENSE="GPL-2"
 SLOT="2"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
 IUSE="debug doc examples"
 
 RDEPEND=">=dev-db/postgresql-base-8.1"



1.163                dev-python/psycopg/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v
retrieving revision 1.162
retrieving revision 1.163
diff -u -r1.162 -r1.163
--- ChangeLog	5 Sep 2013 18:46:24 -0000	1.162
+++ ChangeLog	14 Oct 2013 18:01:04 -0000	1.163
@@ -1,6 +1,10 @@
 # ChangeLog for dev-python/psycopg
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.162 2013/09/05 18:46:24 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.163 2013/10/14 18:01:04 chainsaw Exp $
+
+  14 Oct 2013; Tony Vroon <chainsaw@gentoo.org> psycopg-2.5.1.ebuild:
+  Marked stable on AMD64 based on arch tester report by Elijah "Armageddon" El
+  Lazkani in bug #487872.
 
   05 Sep 2013; Michał Górny <mgorny@gentoo.org> psycopg-1.1.21-r1.ebuild,
   psycopg-2.4.6-r1.ebuild, psycopg-2.4.6-r2.ebuild, psycopg-2.5.1.ebuild,





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

* [gentoo-commits] gentoo-x86 commit in dev-python/psycopg: psycopg-2.5.1.ebuild ChangeLog
@ 2013-10-17 17:08 Jeroen Roovers (jer)
  0 siblings, 0 replies; 9+ messages in thread
From: Jeroen Roovers (jer) @ 2013-10-17 17:08 UTC (permalink / raw
  To: gentoo-commits

jer         13/10/17 17:08:57

  Modified:             psycopg-2.5.1.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #487872).
  
  (Portage version: 2.2.7/cvs/Linux x86_64, RepoMan options: --ignore-arches, signed Manifest commit with key A792A613)

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

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

Index: psycopg-2.5.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.5.1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- psycopg-2.5.1.ebuild	14 Oct 2013 18:01:04 -0000	1.3
+++ psycopg-2.5.1.ebuild	17 Oct 2013 17:08:57 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.5.1.ebuild,v 1.3 2013/10/14 18:01:04 chainsaw Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.5.1.ebuild,v 1.4 2013/10/17 17:08:57 jer Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
@@ -16,7 +16,7 @@
 
 LICENSE="GPL-2"
 SLOT="2"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
 IUSE="debug doc examples"
 
 RDEPEND=">=dev-db/postgresql-base-8.1"



1.164                dev-python/psycopg/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v
retrieving revision 1.163
retrieving revision 1.164
diff -u -r1.163 -r1.164
--- ChangeLog	14 Oct 2013 18:01:04 -0000	1.163
+++ ChangeLog	17 Oct 2013 17:08:57 -0000	1.164
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/psycopg
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.163 2013/10/14 18:01:04 chainsaw Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.164 2013/10/17 17:08:57 jer Exp $
+
+  17 Oct 2013; Jeroen Roovers <jer@gentoo.org> psycopg-2.5.1.ebuild:
+  Stable for HPPA (bug #487872).
 
   14 Oct 2013; Tony Vroon <chainsaw@gentoo.org> psycopg-2.5.1.ebuild:
   Marked stable on AMD64 based on arch tester report by Elijah "Armageddon" El





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

* [gentoo-commits] gentoo-x86 commit in dev-python/psycopg: psycopg-2.5.1.ebuild ChangeLog
@ 2013-10-23 19:47 Markus Meier (maekke)
  0 siblings, 0 replies; 9+ messages in thread
From: Markus Meier (maekke) @ 2013-10-23 19:47 UTC (permalink / raw
  To: gentoo-commits

maekke      13/10/23 19:47:12

  Modified:             psycopg-2.5.1.ebuild ChangeLog
  Log:
  arm stable, bug #487872
  
  (Portage version: 2.2.7/cvs/Linux x86_64, RepoMan options: --include-arches="arm", signed Manifest commit with key 072AD062)

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

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

Index: psycopg-2.5.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.5.1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- psycopg-2.5.1.ebuild	17 Oct 2013 17:08:57 -0000	1.4
+++ psycopg-2.5.1.ebuild	23 Oct 2013 19:47:12 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.5.1.ebuild,v 1.4 2013/10/17 17:08:57 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.5.1.ebuild,v 1.5 2013/10/23 19:47:12 maekke Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
@@ -16,7 +16,7 @@
 
 LICENSE="GPL-2"
 SLOT="2"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
 IUSE="debug doc examples"
 
 RDEPEND=">=dev-db/postgresql-base-8.1"



1.165                dev-python/psycopg/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v
retrieving revision 1.164
retrieving revision 1.165
diff -u -r1.164 -r1.165
--- ChangeLog	17 Oct 2013 17:08:57 -0000	1.164
+++ ChangeLog	23 Oct 2013 19:47:12 -0000	1.165
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/psycopg
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.164 2013/10/17 17:08:57 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.165 2013/10/23 19:47:12 maekke Exp $
+
+  23 Oct 2013; Markus Meier <maekke@gentoo.org> psycopg-2.5.1.ebuild:
+  arm stable, bug #487872
 
   17 Oct 2013; Jeroen Roovers <jer@gentoo.org> psycopg-2.5.1.ebuild:
   Stable for HPPA (bug #487872).





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

* [gentoo-commits] gentoo-x86 commit in dev-python/psycopg: psycopg-2.5.1.ebuild ChangeLog
@ 2013-12-02 21:42 Johannes Huber (johu)
  0 siblings, 0 replies; 9+ messages in thread
From: Johannes Huber (johu) @ 2013-12-02 21:42 UTC (permalink / raw
  To: gentoo-commits

johu        13/12/02 21:42:06

  Modified:             psycopg-2.5.1.ebuild ChangeLog
  Log:
  x86 stable, bug #487872
  
  (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key F3CFD2BD)

Revision  Changes    Path
1.6                  dev-python/psycopg/psycopg-2.5.1.ebuild

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

Index: psycopg-2.5.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.5.1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- psycopg-2.5.1.ebuild	23 Oct 2013 19:47:12 -0000	1.5
+++ psycopg-2.5.1.ebuild	2 Dec 2013 21:42:06 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.5.1.ebuild,v 1.5 2013/10/23 19:47:12 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.5.1.ebuild,v 1.6 2013/12/02 21:42:06 johu Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
@@ -16,7 +16,7 @@
 
 LICENSE="GPL-2"
 SLOT="2"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
 IUSE="debug doc examples"
 
 RDEPEND=">=dev-db/postgresql-base-8.1"



1.166                dev-python/psycopg/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v
retrieving revision 1.165
retrieving revision 1.166
diff -u -r1.165 -r1.166
--- ChangeLog	23 Oct 2013 19:47:12 -0000	1.165
+++ ChangeLog	2 Dec 2013 21:42:06 -0000	1.166
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/psycopg
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.165 2013/10/23 19:47:12 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.166 2013/12/02 21:42:06 johu Exp $
+
+  02 Dec 2013; Johannes Huber <johu@gentoo.org> psycopg-2.5.1.ebuild:
+  x86 stable, bug #487872
 
   23 Oct 2013; Markus Meier <maekke@gentoo.org> psycopg-2.5.1.ebuild:
   arm stable, bug #487872





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

* [gentoo-commits] gentoo-x86 commit in dev-python/psycopg: psycopg-2.5.1.ebuild ChangeLog
@ 2013-12-04 22:23 Matt Turner (mattst88)
  0 siblings, 0 replies; 9+ messages in thread
From: Matt Turner (mattst88) @ 2013-12-04 22:23 UTC (permalink / raw
  To: gentoo-commits

mattst88    13/12/04 22:23:55

  Modified:             psycopg-2.5.1.ebuild ChangeLog
  Log:
  alpha stable, bug 487872.
  
  (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 974CA72A)

Revision  Changes    Path
1.7                  dev-python/psycopg/psycopg-2.5.1.ebuild

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

Index: psycopg-2.5.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.5.1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- psycopg-2.5.1.ebuild	2 Dec 2013 21:42:06 -0000	1.6
+++ psycopg-2.5.1.ebuild	4 Dec 2013 22:23:55 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.5.1.ebuild,v 1.6 2013/12/02 21:42:06 johu Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.5.1.ebuild,v 1.7 2013/12/04 22:23:55 mattst88 Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
@@ -16,7 +16,7 @@
 
 LICENSE="GPL-2"
 SLOT="2"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
 IUSE="debug doc examples"
 
 RDEPEND=">=dev-db/postgresql-base-8.1"



1.167                dev-python/psycopg/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v
retrieving revision 1.166
retrieving revision 1.167
diff -u -r1.166 -r1.167
--- ChangeLog	2 Dec 2013 21:42:06 -0000	1.166
+++ ChangeLog	4 Dec 2013 22:23:55 -0000	1.167
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/psycopg
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.166 2013/12/02 21:42:06 johu Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.167 2013/12/04 22:23:55 mattst88 Exp $
+
+  04 Dec 2013; Matt Turner <mattst88@gentoo.org> psycopg-2.5.1.ebuild:
+  alpha stable, bug 487872.
 
   02 Dec 2013; Johannes Huber <johu@gentoo.org> psycopg-2.5.1.ebuild:
   x86 stable, bug #487872





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

* [gentoo-commits] gentoo-x86 commit in dev-python/psycopg: psycopg-2.5.1.ebuild ChangeLog
@ 2013-12-21 16:24 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 9+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-12-21 16:24 UTC (permalink / raw
  To: gentoo-commits

ago         13/12/21 16:24:15

  Modified:             psycopg-2.5.1.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #487872
  
  (Portage version: 2.2.1/cvs/Linux ppc64, RepoMan options: --include-arches="ppc", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.8                  dev-python/psycopg/psycopg-2.5.1.ebuild

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

Index: psycopg-2.5.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.5.1.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- psycopg-2.5.1.ebuild	4 Dec 2013 22:23:55 -0000	1.7
+++ psycopg-2.5.1.ebuild	21 Dec 2013 16:24:15 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.5.1.ebuild,v 1.7 2013/12/04 22:23:55 mattst88 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.5.1.ebuild,v 1.8 2013/12/21 16:24:15 ago Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
@@ -16,7 +16,7 @@
 
 LICENSE="GPL-2"
 SLOT="2"
-KEYWORDS="alpha amd64 arm hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ~ia64 ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
 IUSE="debug doc examples"
 
 RDEPEND=">=dev-db/postgresql-base-8.1"



1.168                dev-python/psycopg/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v
retrieving revision 1.167
retrieving revision 1.168
diff -u -r1.167 -r1.168
--- ChangeLog	4 Dec 2013 22:23:55 -0000	1.167
+++ ChangeLog	21 Dec 2013 16:24:15 -0000	1.168
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/psycopg
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.167 2013/12/04 22:23:55 mattst88 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.168 2013/12/21 16:24:15 ago Exp $
+
+  21 Dec 2013; Agostino Sarubbo <ago@gentoo.org> psycopg-2.5.1.ebuild:
+  Stable for ppc, wrt bug #487872
 
   04 Dec 2013; Matt Turner <mattst88@gentoo.org> psycopg-2.5.1.ebuild:
   alpha stable, bug 487872.





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

* [gentoo-commits] gentoo-x86 commit in dev-python/psycopg: psycopg-2.5.1.ebuild ChangeLog
@ 2013-12-23 16:00 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 9+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-12-23 16:00 UTC (permalink / raw
  To: gentoo-commits

ago         13/12/23 16:00:23

  Modified:             psycopg-2.5.1.ebuild ChangeLog
  Log:
  Stable for sparc, wrt bug #487872
  
  (Portage version: 2.2.7/cvs/Linux x86_64, RepoMan options: --include-arches="sparc", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.10                 dev-python/psycopg/psycopg-2.5.1.ebuild

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

Index: psycopg-2.5.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.5.1.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- psycopg-2.5.1.ebuild	22 Dec 2013 13:19:25 -0000	1.9
+++ psycopg-2.5.1.ebuild	23 Dec 2013 16:00:23 -0000	1.10
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.5.1.ebuild,v 1.9 2013/12/22 13:19:25 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.5.1.ebuild,v 1.10 2013/12/23 16:00:23 ago Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
@@ -16,7 +16,7 @@
 
 LICENSE="GPL-2"
 SLOT="2"
-KEYWORDS="alpha amd64 arm hppa ~ia64 ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ~ia64 ppc ppc64 ~s390 ~sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
 IUSE="debug doc examples"
 
 RDEPEND=">=dev-db/postgresql-base-8.1"



1.170                dev-python/psycopg/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v
retrieving revision 1.169
retrieving revision 1.170
diff -u -r1.169 -r1.170
--- ChangeLog	22 Dec 2013 13:19:25 -0000	1.169
+++ ChangeLog	23 Dec 2013 16:00:23 -0000	1.170
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/psycopg
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.169 2013/12/22 13:19:25 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.170 2013/12/23 16:00:23 ago Exp $
+
+  23 Dec 2013; Agostino Sarubbo <ago@gentoo.org> psycopg-2.5.1.ebuild:
+  Stable for sparc, wrt bug #487872
 
   22 Dec 2013; Agostino Sarubbo <ago@gentoo.org> psycopg-2.5.1.ebuild:
   Stable for ppc64, wrt bug #487872





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

* [gentoo-commits] gentoo-x86 commit in dev-python/psycopg: psycopg-2.5.1.ebuild ChangeLog
@ 2013-12-29  9:45 Akinori Hattori (hattya)
  0 siblings, 0 replies; 9+ messages in thread
From: Akinori Hattori (hattya) @ 2013-12-29  9:45 UTC (permalink / raw
  To: gentoo-commits

hattya      13/12/29 09:45:54

  Modified:             psycopg-2.5.1.ebuild ChangeLog
  Log:
  ia64 stable wrt bug #487872
  
  (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key EC917A6D)

Revision  Changes    Path
1.11                 dev-python/psycopg/psycopg-2.5.1.ebuild

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

Index: psycopg-2.5.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.5.1.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- psycopg-2.5.1.ebuild	23 Dec 2013 16:00:23 -0000	1.10
+++ psycopg-2.5.1.ebuild	29 Dec 2013 09:45:54 -0000	1.11
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.5.1.ebuild,v 1.10 2013/12/23 16:00:23 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.5.1.ebuild,v 1.11 2013/12/29 09:45:54 hattya Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
@@ -16,7 +16,7 @@
 
 LICENSE="GPL-2"
 SLOT="2"
-KEYWORDS="alpha amd64 arm hppa ~ia64 ppc ppc64 ~s390 ~sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 ~s390 ~sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
 IUSE="debug doc examples"
 
 RDEPEND=">=dev-db/postgresql-base-8.1"



1.171                dev-python/psycopg/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v
retrieving revision 1.170
retrieving revision 1.171
diff -u -r1.170 -r1.171
--- ChangeLog	23 Dec 2013 16:00:23 -0000	1.170
+++ ChangeLog	29 Dec 2013 09:45:54 -0000	1.171
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/psycopg
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.170 2013/12/23 16:00:23 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.171 2013/12/29 09:45:54 hattya Exp $
+
+  29 Dec 2013; Akinori Hattori <hattya@gentoo.org> psycopg-2.5.1.ebuild:
+  ia64 stable wrt bug #487872
 
   23 Dec 2013; Agostino Sarubbo <ago@gentoo.org> psycopg-2.5.1.ebuild:
   Stable for sparc, wrt bug #487872





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

end of thread, other threads:[~2013-12-29  9:46 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-02 21:42 [gentoo-commits] gentoo-x86 commit in dev-python/psycopg: psycopg-2.5.1.ebuild ChangeLog Johannes Huber (johu)
  -- strict thread matches above, loose matches on Subject: below --
2013-12-29  9:45 Akinori Hattori (hattya)
2013-12-23 16:00 Agostino Sarubbo (ago)
2013-12-21 16:24 Agostino Sarubbo (ago)
2013-12-04 22:23 Matt Turner (mattst88)
2013-10-23 19:47 Markus Meier (maekke)
2013-10-17 17:08 Jeroen Roovers (jer)
2013-10-14 18:01 Tony Vroon (chainsaw)
2013-06-25  8:10 Patrick Lauer (patrick)

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