summaryrefslogtreecommitdiff
path: root/databases/py-sqlite2/Makefile
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2007-01-20 17:28:37 +0000
committerwiz <wiz@pkgsrc.org>2007-01-20 17:28:37 +0000
commit78bb72f5d9df0119fbdc3a5d51db6694a46397f1 (patch)
tree5a582a41dd2cd6fdd583a4dc4b8f6cafcc4790fe /databases/py-sqlite2/Makefile
parent72cd41e214f97dcaf42bc0a837a4c11d79def4f7 (diff)
downloadpkgsrc-78bb72f5d9df0119fbdc3a5d51db6694a46397f1.tar.gz
Update to 2.3.3:
- self->statement was not checked while fetching data, which could lead to crashes if you used the pysqlite API in unusual ways. Closing the cursor and continuing to fetch data was enough. - Converters are stored in a converters dictionary. The converter name is uppercased first. The old upper-casing algorithm was wrong and was replaced by a simple call to the Python string's upper() method instead. - Applied patch by Glyph Lefkowitz that fixes the problem with subsequent SQLITE_SCHEMA errors. - Improvement to the row type: rows can now be iterated over and have a keys() method. This improves compatibility with both tuple and dict a lot. - A bugfix for the subsecond resolution in timestamps. - Corrected the way the flags PARSE_DECLTYPES and PARSE_COLNAMES are checked for. Now they work as documented. - gcc on Linux sucks. It exports all symbols by default in shared libraries, so if symbols are not unique it can lead to problems with symbol lookup. pysqlite used to crash under Apache when mod_cache was enabled because both modules had the symbol cache_init. I fixed this by applying the prefix pysqlite_ almost everywhere. Sigh.
Diffstat (limited to 'databases/py-sqlite2/Makefile')
-rw-r--r--databases/py-sqlite2/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/databases/py-sqlite2/Makefile b/databases/py-sqlite2/Makefile
index 5c19a2f48f2..efee8bc7a24 100644
--- a/databases/py-sqlite2/Makefile
+++ b/databases/py-sqlite2/Makefile
@@ -1,9 +1,9 @@
-# $NetBSD: Makefile,v 1.5 2007/01/13 00:47:56 joerg Exp $
+# $NetBSD: Makefile,v 1.6 2007/01/20 17:28:37 wiz Exp $
-DISTNAME= pysqlite-2.3.2
-PKGNAME= ${PYPKGPREFIX}-sqlite2-2.3.2
+DISTNAME= pysqlite-2.3.3
+PKGNAME= ${PYPKGPREFIX}-sqlite2-2.3.3
CATEGORIES= databases python
-MASTER_SITES= http://initd.org/pub/software/pysqlite/releases/2.3/2.3.2/
+MASTER_SITES= http://initd.org/pub/software/pysqlite/releases/2.3/2.3.3/
MAINTAINER= tsarna@NetBSD.org
HOMEPAGE= http://initd.org/tracker/pysqlite