public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-python/psycopg: psycopg-1.1.21-r1.ebuild ChangeLog
@ 2011-12-14 10:05 Mike Gilbert (floppym)
  0 siblings, 0 replies; 11+ messages in thread
From: Mike Gilbert (floppym) @ 2011-12-14 10:05 UTC (permalink / raw
  To: gentoo-commits

floppym     11/12/14 10:05:25

  Modified:             ChangeLog
  Added:                psycopg-1.1.21-r1.ebuild
  Log:
  Don't call dodoc on doc/examples (directory). Fixes bug 367703.
  
  (Portage version: 2.2.0_alpha80/cvs/Linux x86_64)

Revision  Changes    Path
1.133                dev-python/psycopg/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v
retrieving revision 1.132
retrieving revision 1.133
diff -u -r1.132 -r1.133
--- ChangeLog	14 Sep 2011 07:43:04 -0000	1.132
+++ ChangeLog	14 Dec 2011 10:05:25 -0000	1.133
@@ -1,6 +1,11 @@
 # 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.132 2011/09/14 07:43:04 djc Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.133 2011/12/14 10:05:25 floppym Exp $
+
+*psycopg-1.1.21-r1 (14 Dec 2011)
+
+  14 Dec 2011; Mike Gilbert <floppym@gentoo.org> +psycopg-1.1.21-r1.ebuild:
+  Don't call dodoc on doc/examples (directory). Fixes bug 367703.
 
 *psycopg-2.4.2 (14 Sep 2011)
 



1.1                  dev-python/psycopg/psycopg-1.1.21-r1.ebuild

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

Index: psycopg-1.1.21-r1.ebuild
===================================================================
# 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-1.1.21-r1.ebuild,v 1.1 2011/12/14 10:05:25 floppym Exp $

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

inherit python

DESCRIPTION="PostgreSQL database adapter for Python"
HOMEPAGE="http://www.initd.org/software/psycopg"
SRC_URI="http://initd.org/pub/software/${PN}/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE=""

DEPEND=">=dev-python/egenix-mx-base-2.0.3
	dev-db/postgresql-base"
RDEPEND="${DEPEND}"

src_prepare() {
	# fix for bug #134873
	sed -e '1245s/static //' -i cursor.c

	sed -e 's:$(PY_MOD_DIR):$(D)&/$$mod:' -i Makefile.pre.in

	python_copy_sources
}

src_configure() {
	configuration() {
		econf \
			--with-mxdatetime-includes="$(python_get_includedir)/mx" \
			--with-postgres-includes="/usr/include/postgresql/server" || return 1
		sed -e 's:$(BLDSHARED):& $(LDFLAGS):' -i Makefile
	}
	python_execute_function -s configuration
}

src_compile() {
	python_src_compile OPT="${CFLAGS}" LDFLAGS="${LDFLAGS}"
}

src_install () {
	python_src_install

	dodoc AUTHORS ChangeLog CREDITS README NEWS RELEASE-1.0 SUCCESS TODO
	docinto doc
	dodoc doc/python-taylor.txt doc/README
	insinto /usr/share/doc/${PF}/examples
	doins doc/examples/*
}






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

* [gentoo-commits] gentoo-x86 commit in dev-python/psycopg: psycopg-1.1.21-r1.ebuild ChangeLog
@ 2013-01-19 11:52 Michal Gorny (mgorny)
  0 siblings, 0 replies; 11+ messages in thread
From: Michal Gorny (mgorny) @ 2013-01-19 11:52 UTC (permalink / raw
  To: gentoo-commits

mgorny      13/01/19 11:52:03

  Modified:             ChangeLog
  Added:                psycopg-1.1.21-r1.ebuild
  Log:
  Migrate slot 0 to python-r1.
  
  (Portage version: 2.2.0_alpha155/cvs/Linux x86_64, signed Manifest commit with key 42B9401D)

Revision  Changes    Path
1.155                dev-python/psycopg/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v
retrieving revision 1.154
retrieving revision 1.155
diff -u -r1.154 -r1.155
--- ChangeLog	15 Jan 2013 18:03:38 -0000	1.154
+++ ChangeLog	19 Jan 2013 11:52:03 -0000	1.155
@@ -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.154 2013/01/15 18:03:38 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.155 2013/01/19 11:52:03 mgorny Exp $
+
+*psycopg-1.1.21-r1 (19 Jan 2013)
+
+  19 Jan 2013; Michał Górny <mgorny@gentoo.org> +psycopg-1.1.21-r1.ebuild:
+  Migrate slot 0 to python-r1.
 
   15 Jan 2013; Michał Górny <mgorny@gentoo.org> psycopg-2.4.6-r1.ebuild:
   Fix recursive dohtml call.



1.3                  dev-python/psycopg/psycopg-1.1.21-r1.ebuild

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






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

* [gentoo-commits] gentoo-x86 commit in dev-python/psycopg: psycopg-1.1.21-r1.ebuild ChangeLog
@ 2014-10-23 17:22 Mike Gilbert (floppym)
  0 siblings, 0 replies; 11+ messages in thread
From: Mike Gilbert (floppym) @ 2014-10-23 17:22 UTC (permalink / raw
  To: gentoo-commits

floppym     14/10/23 17:22:30

  Modified:             ChangeLog
  Added:                psycopg-1.1.21-r1.ebuild
  Log:
  Restore python-r1 version to SLOT 0 as well.
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0BBEEA1FEA4843A4)

Revision  Changes    Path
1.181                dev-python/psycopg/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v
retrieving revision 1.180
retrieving revision 1.181
diff -u -r1.180 -r1.181
--- ChangeLog	22 Oct 2014 08:21:49 -0000	1.180
+++ ChangeLog	23 Oct 2014 17:22:30 -0000	1.181
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/psycopg
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.180 2014/10/22 08:21:49 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.181 2014/10/23 17:22:30 floppym Exp $
+
+*psycopg-1.1.21-r1 (23 Oct 2014)
+
+  23 Oct 2014; Mike Gilbert <floppym@gentoo.org> +psycopg-1.1.21-r1.ebuild:
+  Restore python-r1 version to SLOT 0 as well.
 
 *psycopg-1.1.21 (22 Oct 2014)
 



1.6                  dev-python/psycopg/psycopg-1.1.21-r1.ebuild

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






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

* [gentoo-commits] gentoo-x86 commit in dev-python/psycopg: psycopg-1.1.21-r1.ebuild ChangeLog
@ 2015-03-06 22:32 Pacho Ramos (pacho)
  0 siblings, 0 replies; 11+ messages in thread
From: Pacho Ramos (pacho) @ 2015-03-06 22:32 UTC (permalink / raw
  To: gentoo-commits

pacho       15/03/06 22:32:26

  Modified:             psycopg-1.1.21-r1.ebuild ChangeLog
  Log:
  amd64 stable, bug 540290
  
  (Portage version: 2.2.17/cvs/Linux x86_64, RepoMan options: --include-arches="amd64", signed Manifest commit with key A188FBD4)

Revision  Changes    Path
1.9                  dev-python/psycopg/psycopg-1.1.21-r1.ebuild

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

Index: psycopg-1.1.21-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-1.1.21-r1.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- psycopg-1.1.21-r1.ebuild	28 Dec 2014 15:41:58 -0000	1.8
+++ psycopg-1.1.21-r1.ebuild	6 Mar 2015 22:32:26 -0000	1.9
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-1.1.21-r1.ebuild,v 1.8 2014/12/28 15:41:58 titanofold Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-1.1.21-r1.ebuild,v 1.9 2015/03/06 22:32:26 pacho Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_6,2_7} )
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 IUSE="examples"
 
 RDEPEND=">=dev-python/egenix-mx-base-2.0.3[${PYTHON_USEDEP}]



1.197                dev-python/psycopg/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v
retrieving revision 1.196
retrieving revision 1.197
diff -u -r1.196 -r1.197
--- ChangeLog	2 Mar 2015 04:01:51 -0000	1.196
+++ ChangeLog	6 Mar 2015 22:32:26 -0000	1.197
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/psycopg
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.196 2015/03/02 04:01:51 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.197 2015/03/06 22:32:26 pacho Exp $
+
+  06 Mar 2015; Pacho Ramos <pacho@gentoo.org> psycopg-1.1.21-r1.ebuild:
+  amd64 stable, bug 540290
 
   02 Mar 2015; Patrick Lauer <patrick@gentoo.org> psycopg-2.6.ebuild:
   Fix doc build #539948





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

* [gentoo-commits] gentoo-x86 commit in dev-python/psycopg: psycopg-1.1.21-r1.ebuild ChangeLog
@ 2015-03-07  0:17 Pacho Ramos (pacho)
  0 siblings, 0 replies; 11+ messages in thread
From: Pacho Ramos (pacho) @ 2015-03-07  0:17 UTC (permalink / raw
  To: gentoo-commits

pacho       15/03/07 00:17:42

  Modified:             psycopg-1.1.21-r1.ebuild ChangeLog
  Log:
  ppc64 stable, bug 540290
  
  (Portage version: 2.2.17/cvs/Linux x86_64, RepoMan options: --include-arches="ppc64", signed Manifest commit with key A188FBD4)

Revision  Changes    Path
1.10                 dev-python/psycopg/psycopg-1.1.21-r1.ebuild

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

Index: psycopg-1.1.21-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-1.1.21-r1.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- psycopg-1.1.21-r1.ebuild	6 Mar 2015 22:32:26 -0000	1.9
+++ psycopg-1.1.21-r1.ebuild	7 Mar 2015 00:17:42 -0000	1.10
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-1.1.21-r1.ebuild,v 1.9 2015/03/06 22:32:26 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-1.1.21-r1.ebuild,v 1.10 2015/03/07 00:17:42 pacho Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_6,2_7} )
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ppc64 ~sparc ~x86"
 IUSE="examples"
 
 RDEPEND=">=dev-python/egenix-mx-base-2.0.3[${PYTHON_USEDEP}]



1.198                dev-python/psycopg/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v
retrieving revision 1.197
retrieving revision 1.198
diff -u -r1.197 -r1.198
--- ChangeLog	6 Mar 2015 22:32:26 -0000	1.197
+++ ChangeLog	7 Mar 2015 00:17:42 -0000	1.198
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/psycopg
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.197 2015/03/06 22:32:26 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.198 2015/03/07 00:17:42 pacho Exp $
+
+  07 Mar 2015; Pacho Ramos <pacho@gentoo.org> psycopg-1.1.21-r1.ebuild:
+  ppc64 stable, bug 540290
 
   06 Mar 2015; Pacho Ramos <pacho@gentoo.org> psycopg-1.1.21-r1.ebuild:
   amd64 stable, bug 540290





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

* [gentoo-commits] gentoo-x86 commit in dev-python/psycopg: psycopg-1.1.21-r1.ebuild ChangeLog
@ 2015-03-07  8:18 Pacho Ramos (pacho)
  0 siblings, 0 replies; 11+ messages in thread
From: Pacho Ramos (pacho) @ 2015-03-07  8:18 UTC (permalink / raw
  To: gentoo-commits

pacho       15/03/07 08:18:52

  Modified:             psycopg-1.1.21-r1.ebuild ChangeLog
  Log:
  ppc stable, bug 540290
  
  (Portage version: 2.2.17/cvs/Linux x86_64, RepoMan options: --include-arches="ppc", signed Manifest commit with key A188FBD4)

Revision  Changes    Path
1.11                 dev-python/psycopg/psycopg-1.1.21-r1.ebuild

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

Index: psycopg-1.1.21-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-1.1.21-r1.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- psycopg-1.1.21-r1.ebuild	7 Mar 2015 00:17:42 -0000	1.10
+++ psycopg-1.1.21-r1.ebuild	7 Mar 2015 08:18:52 -0000	1.11
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-1.1.21-r1.ebuild,v 1.10 2015/03/07 00:17:42 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-1.1.21-r1.ebuild,v 1.11 2015/03/07 08:18:52 pacho Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_6,2_7} )
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~ia64 ppc ppc64 ~sparc ~x86"
 IUSE="examples"
 
 RDEPEND=">=dev-python/egenix-mx-base-2.0.3[${PYTHON_USEDEP}]



1.199                dev-python/psycopg/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v
retrieving revision 1.198
retrieving revision 1.199
diff -u -r1.198 -r1.199
--- ChangeLog	7 Mar 2015 00:17:42 -0000	1.198
+++ ChangeLog	7 Mar 2015 08:18:52 -0000	1.199
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/psycopg
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.198 2015/03/07 00:17:42 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.199 2015/03/07 08:18:52 pacho Exp $
+
+  07 Mar 2015; Pacho Ramos <pacho@gentoo.org> psycopg-1.1.21-r1.ebuild:
+  ppc stable, bug 540290
 
   07 Mar 2015; Pacho Ramos <pacho@gentoo.org> psycopg-1.1.21-r1.ebuild:
   ppc64 stable, bug 540290





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

* [gentoo-commits] gentoo-x86 commit in dev-python/psycopg: psycopg-1.1.21-r1.ebuild ChangeLog
@ 2015-03-08 23:55 Pacho Ramos (pacho)
  0 siblings, 0 replies; 11+ messages in thread
From: Pacho Ramos (pacho) @ 2015-03-08 23:55 UTC (permalink / raw
  To: gentoo-commits

pacho       15/03/08 23:55:24

  Modified:             psycopg-1.1.21-r1.ebuild ChangeLog
  Log:
  x86 stable, bug 540290
  
  (Portage version: 2.2.17/cvs/Linux x86_64, RepoMan options: --include-arches="x86", signed Manifest commit with key A188FBD4)

Revision  Changes    Path
1.12                 dev-python/psycopg/psycopg-1.1.21-r1.ebuild

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

Index: psycopg-1.1.21-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-1.1.21-r1.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- psycopg-1.1.21-r1.ebuild	7 Mar 2015 08:18:52 -0000	1.11
+++ psycopg-1.1.21-r1.ebuild	8 Mar 2015 23:55:24 -0000	1.12
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-1.1.21-r1.ebuild,v 1.11 2015/03/07 08:18:52 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-1.1.21-r1.ebuild,v 1.12 2015/03/08 23:55:24 pacho Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_6,2_7} )
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ppc ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~ia64 ppc ppc64 ~sparc x86"
 IUSE="examples"
 
 RDEPEND=">=dev-python/egenix-mx-base-2.0.3[${PYTHON_USEDEP}]



1.200                dev-python/psycopg/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v
retrieving revision 1.199
retrieving revision 1.200
diff -u -r1.199 -r1.200
--- ChangeLog	7 Mar 2015 08:18:52 -0000	1.199
+++ ChangeLog	8 Mar 2015 23:55:24 -0000	1.200
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/psycopg
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.199 2015/03/07 08:18:52 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.200 2015/03/08 23:55:24 pacho Exp $
+
+  08 Mar 2015; Pacho Ramos <pacho@gentoo.org> psycopg-1.1.21-r1.ebuild:
+  x86 stable, bug 540290
 
   07 Mar 2015; Pacho Ramos <pacho@gentoo.org> psycopg-1.1.21-r1.ebuild:
   ppc stable, bug 540290





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

* [gentoo-commits] gentoo-x86 commit in dev-python/psycopg: psycopg-1.1.21-r1.ebuild ChangeLog
@ 2015-04-13  9:26 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 11+ messages in thread
From: Agostino Sarubbo (ago) @ 2015-04-13  9:26 UTC (permalink / raw
  To: gentoo-commits

ago         15/04/13 09:26:23

  Modified:             psycopg-1.1.21-r1.ebuild ChangeLog
  Log:
  Stable for alpha, wrt bug #540290
  
  (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --include-arches="alpha", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.14                 dev-python/psycopg/psycopg-1.1.21-r1.ebuild

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

Index: psycopg-1.1.21-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-1.1.21-r1.ebuild,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- psycopg-1.1.21-r1.ebuild	8 Apr 2015 08:04:54 -0000	1.13
+++ psycopg-1.1.21-r1.ebuild	13 Apr 2015 09:26:23 -0000	1.14
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-1.1.21-r1.ebuild,v 1.13 2015/04/08 08:04:54 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-1.1.21-r1.ebuild,v 1.14 2015/04/13 09:26:23 ago Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python2_7 )
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ppc ppc64 ~sparc x86"
+KEYWORDS="alpha amd64 ~arm ~ia64 ppc ppc64 ~sparc x86"
 IUSE="examples"
 
 RDEPEND=">=dev-python/egenix-mx-base-2.0.3[${PYTHON_USEDEP}]



1.202                dev-python/psycopg/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v
retrieving revision 1.201
retrieving revision 1.202
diff -u -r1.201 -r1.202
--- ChangeLog	8 Apr 2015 08:04:54 -0000	1.201
+++ ChangeLog	13 Apr 2015 09:26:23 -0000	1.202
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/psycopg
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.201 2015/04/08 08:04:54 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.202 2015/04/13 09:26:23 ago Exp $
+
+  13 Apr 2015; Agostino Sarubbo <ago@gentoo.org> psycopg-1.1.21-r1.ebuild:
+  Stable for alpha, wrt bug #540290
 
   08 Apr 2015; Michał Górny <mgorny@gentoo.org> psycopg-1.1.21-r1.ebuild,
   psycopg-2.5.1.ebuild, psycopg-2.5.2.ebuild, psycopg-2.5.3.ebuild,





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

* [gentoo-commits] gentoo-x86 commit in dev-python/psycopg: psycopg-1.1.21-r1.ebuild ChangeLog
@ 2015-04-14 12:50 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 11+ messages in thread
From: Agostino Sarubbo (ago) @ 2015-04-14 12:50 UTC (permalink / raw
  To: gentoo-commits

ago         15/04/14 12:50:37

  Modified:             psycopg-1.1.21-r1.ebuild ChangeLog
  Log:
  Stable for ia64, wrt bug #540290
  
  (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --include-arches="ia64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.15                 dev-python/psycopg/psycopg-1.1.21-r1.ebuild

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

Index: psycopg-1.1.21-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-1.1.21-r1.ebuild,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- psycopg-1.1.21-r1.ebuild	13 Apr 2015 09:26:23 -0000	1.14
+++ psycopg-1.1.21-r1.ebuild	14 Apr 2015 12:50:37 -0000	1.15
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-1.1.21-r1.ebuild,v 1.14 2015/04/13 09:26:23 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-1.1.21-r1.ebuild,v 1.15 2015/04/14 12:50:37 ago Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python2_7 )
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~ia64 ppc ppc64 ~sparc x86"
+KEYWORDS="alpha amd64 ~arm ia64 ppc ppc64 ~sparc x86"
 IUSE="examples"
 
 RDEPEND=">=dev-python/egenix-mx-base-2.0.3[${PYTHON_USEDEP}]



1.203                dev-python/psycopg/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v
retrieving revision 1.202
retrieving revision 1.203
diff -u -r1.202 -r1.203
--- ChangeLog	13 Apr 2015 09:26:23 -0000	1.202
+++ ChangeLog	14 Apr 2015 12:50:37 -0000	1.203
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/psycopg
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.202 2015/04/13 09:26:23 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.203 2015/04/14 12:50:37 ago Exp $
+
+  14 Apr 2015; Agostino Sarubbo <ago@gentoo.org> psycopg-1.1.21-r1.ebuild:
+  Stable for ia64, wrt bug #540290
 
   13 Apr 2015; Agostino Sarubbo <ago@gentoo.org> psycopg-1.1.21-r1.ebuild:
   Stable for alpha, wrt bug #540290





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

* [gentoo-commits] gentoo-x86 commit in dev-python/psycopg: psycopg-1.1.21-r1.ebuild ChangeLog
@ 2015-06-02  5:12 Jack Morgan (jmorgan)
  0 siblings, 0 replies; 11+ messages in thread
From: Jack Morgan (jmorgan) @ 2015-06-02  5:12 UTC (permalink / raw
  To: gentoo-commits

jmorgan     15/06/02 05:12:15

  Modified:             psycopg-1.1.21-r1.ebuild ChangeLog
  Log:
  sparc stable wrt bug #540290
  
  (Portage version: 2.2.18/cvs/Linux x86_64, RepoMan options: --include-arches="sparc", signed Manifest commit with key )

Revision  Changes    Path
1.16                 dev-python/psycopg/psycopg-1.1.21-r1.ebuild

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

Index: psycopg-1.1.21-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-1.1.21-r1.ebuild,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- psycopg-1.1.21-r1.ebuild	14 Apr 2015 12:50:37 -0000	1.15
+++ psycopg-1.1.21-r1.ebuild	2 Jun 2015 05:12:15 -0000	1.16
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-1.1.21-r1.ebuild,v 1.15 2015/04/14 12:50:37 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-1.1.21-r1.ebuild,v 1.16 2015/06/02 05:12:15 jmorgan Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python2_7 )
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ia64 ppc ppc64 ~sparc x86"
+KEYWORDS="alpha amd64 ~arm ia64 ppc ppc64 sparc x86"
 IUSE="examples"
 
 RDEPEND=">=dev-python/egenix-mx-base-2.0.3[${PYTHON_USEDEP}]



1.204                dev-python/psycopg/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v
retrieving revision 1.203
retrieving revision 1.204
diff -u -r1.203 -r1.204
--- ChangeLog	14 Apr 2015 12:50:37 -0000	1.203
+++ ChangeLog	2 Jun 2015 05:12:15 -0000	1.204
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/psycopg
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.203 2015/04/14 12:50:37 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.204 2015/06/02 05:12:15 jmorgan Exp $
+
+  02 Jun 2015; Jack Morgan <jmorgan@gentoo.org> psycopg-1.1.21-r1.ebuild:
+  sparc stable wrt bug #540290
 
   14 Apr 2015; Agostino Sarubbo <ago@gentoo.org> psycopg-1.1.21-r1.ebuild:
   Stable for ia64, wrt bug #540290





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

* [gentoo-commits] gentoo-x86 commit in dev-python/psycopg: psycopg-1.1.21-r1.ebuild ChangeLog
@ 2015-06-07  9:33 Markus Meier (maekke)
  0 siblings, 0 replies; 11+ messages in thread
From: Markus Meier (maekke) @ 2015-06-07  9:33 UTC (permalink / raw
  To: gentoo-commits

maekke      15/06/07 09:33:55

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

Revision  Changes    Path
1.17                 dev-python/psycopg/psycopg-1.1.21-r1.ebuild

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

Index: psycopg-1.1.21-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-1.1.21-r1.ebuild,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- psycopg-1.1.21-r1.ebuild	2 Jun 2015 05:12:15 -0000	1.16
+++ psycopg-1.1.21-r1.ebuild	7 Jun 2015 09:33:55 -0000	1.17
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-1.1.21-r1.ebuild,v 1.16 2015/06/02 05:12:15 jmorgan Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-1.1.21-r1.ebuild,v 1.17 2015/06/07 09:33:55 maekke Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python2_7 )
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ia64 ppc ppc64 sparc x86"
+KEYWORDS="alpha amd64 arm ia64 ppc ppc64 sparc x86"
 IUSE="examples"
 
 RDEPEND=">=dev-python/egenix-mx-base-2.0.3[${PYTHON_USEDEP}]



1.205                dev-python/psycopg/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v
retrieving revision 1.204
retrieving revision 1.205
diff -u -r1.204 -r1.205
--- ChangeLog	2 Jun 2015 05:12:15 -0000	1.204
+++ ChangeLog	7 Jun 2015 09:33:55 -0000	1.205
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/psycopg
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.204 2015/06/02 05:12:15 jmorgan Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.205 2015/06/07 09:33:55 maekke Exp $
+
+  07 Jun 2015; Markus Meier <maekke@gentoo.org> psycopg-1.1.21-r1.ebuild:
+  arm stable, bug #540290
 
   02 Jun 2015; Jack Morgan <jmorgan@gentoo.org> psycopg-1.1.21-r1.ebuild:
   sparc stable wrt bug #540290





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

end of thread, other threads:[~2015-06-07  9:34 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-12-14 10:05 [gentoo-commits] gentoo-x86 commit in dev-python/psycopg: psycopg-1.1.21-r1.ebuild ChangeLog Mike Gilbert (floppym)
  -- strict thread matches above, loose matches on Subject: below --
2013-01-19 11:52 Michal Gorny (mgorny)
2014-10-23 17:22 Mike Gilbert (floppym)
2015-03-06 22:32 Pacho Ramos (pacho)
2015-03-07  0:17 Pacho Ramos (pacho)
2015-03-07  8:18 Pacho Ramos (pacho)
2015-03-08 23:55 Pacho Ramos (pacho)
2015-04-13  9:26 Agostino Sarubbo (ago)
2015-04-14 12:50 Agostino Sarubbo (ago)
2015-06-02  5:12 Jack Morgan (jmorgan)
2015-06-07  9:33 Markus Meier (maekke)

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