From 6cd163c1f8d222b22ff03ac91e82be8fc7d7a154 Mon Sep 17 00:00:00 2001 From: Johann Visagie Date: Wed, 23 Oct 2002 14:33:47 +0000 Subject: - Make this port a subport of databases/postgresql7, since the development of PyGreSQL has been folded into that of PostgreSQL itself. - This update effectivly takes PyGreSQL to version 3.3, which is distributed with PostgreSQL 7.2.3. - Byte-compile installed modules to ensure clean deinstallation. - Install documentation under $DOCSDIR. - Remove Makefile from $FILESDIR - not required anymore. - Remove patch-pgdb.py - not required any longer. - Add two patches to ensure installation is $PREFIX-clean. - Update pkg-comment and pkg-descr to reflect the current status of the port. --- databases/py-PyGreSQL/files/patch-pgdb.py | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 databases/py-PyGreSQL/files/patch-pgdb.py (limited to 'databases/py-PyGreSQL/files/patch-pgdb.py') diff --git a/databases/py-PyGreSQL/files/patch-pgdb.py b/databases/py-PyGreSQL/files/patch-pgdb.py deleted file mode 100644 index 1210ef8e5fa0..000000000000 --- a/databases/py-PyGreSQL/files/patch-pgdb.py +++ /dev/null @@ -1,28 +0,0 @@ ---- pgdb.py.orig Sun Nov 5 20:15:26 2000 -+++ pgdb.py Thu Nov 29 17:38:24 2001 -@@ -58,7 +58,7 @@ - import string - import exceptions - import types --import DateTime -+import mx.DateTime - import time - - ### module constants -@@ -384,13 +384,13 @@ - - # mandatory type helpers - def Date(year, month, day): -- return DateTime.DateTime(year, month, day) -+ return mx.DateTime.DateTime(year, month, day) - - def Time(hour, minute, second): -- return DateTime.TimeDelta(hour, minute, second) -+ return mx.DateTime.TimeDelta(hour, minute, second) - - def Timestamp(year, month, day, hour, minute, second): -- return DateTime.DateTime(year, month, day, hour, minute, second) -+ return mx.DateTime.DateTime(year, month, day, hour, minute, second) - - def DateFromTicks(ticks): - return apply(Date, time.localtime(ticks)[:3]) -- cgit v1.2.3