diff options
author | darcy <darcy@pkgsrc.org> | 2006-06-11 00:58:39 +0000 |
---|---|---|
committer | darcy <darcy@pkgsrc.org> | 2006-06-11 00:58:39 +0000 |
commit | ac0e8c908d0f1b617444497b1abe7e3e9161f429 (patch) | |
tree | 98bcc69cb355bef265002247ddb5ac75a65f5651 /databases/py-postgresql/Makefile | |
parent | 174a41b761ad99f0a7196634adcaae0a73c74289 (diff) | |
download | pkgsrc-ac0e8c908d0f1b617444497b1abe7e3e9161f429.tar.gz |
Update package to 3.8.1.
Mostly bug fixes from 3.8.
- Use string methods instead of deprecated string functions.
- Only use SQL-standard way of escaping quotes.
- Added the functions escape_string() and escape/unescape_bytea()
(as suggested by Charlie Dyson and Kavous Bojnourdi a long time ago).
- Reverted code in clear() method that set date to current.
- Added code for backwards compatibility in OID munging code.
- Reorder attnames tests so that "interval" is checked for before "int."
- If caller supplies key dictionary, make sure that all has a namespace.
Diffstat (limited to 'databases/py-postgresql/Makefile')
-rw-r--r-- | databases/py-postgresql/Makefile | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/databases/py-postgresql/Makefile b/databases/py-postgresql/Makefile index a463cb9d6ff..ddc8e23042d 100644 --- a/databases/py-postgresql/Makefile +++ b/databases/py-postgresql/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.46 2006/06/07 12:54:55 joerg Exp $ +# $NetBSD: Makefile,v 1.47 2006/06/11 00:58:39 darcy Exp $ -DISTNAME= PyGreSQL-3.8 -PKGNAME= ${PYPKGPREFIX}-postgresql-3.8 +DISTNAME= PyGreSQL-3.8.1 +PKGNAME= ${PYPKGPREFIX}-postgresql-3.8.1 CATEGORIES= databases python MASTER_SITES= ftp://ftp.druid.net/pub/distrib/ EXTRACT_SUFX= .tgz @@ -27,10 +27,13 @@ DOCDIR= ${PREFIX}/share/doc/${PYPKGPREFIX}-postgresql post-install: ${INSTALL_DATA_DIR} ${DOCDIR}/tutorial - ${INSTALL_DATA} ${WRKSRC}/README ${DOCDIR} + ${INSTALL_DATA_DIR} ${DOCDIR}/docs for inst_file in ${WRKSRC}/tutorial/*.py; do \ ${INSTALL_DATA} $${inst_file} ${DOCDIR}/tutorial; \ done + for inst_file in ${WRKSRC}/docs/*; do \ + ${INSTALL_DATA} $${inst_file} ${DOCDIR}/docs; \ + done .include "../../lang/python/extension.mk" .include "../../mk/pgsql.buildlink3.mk" |