summaryrefslogtreecommitdiff
path: root/databases/postgresql74
diff options
context:
space:
mode:
authoradam <adam@pkgsrc.org>2006-10-18 19:24:07 +0000
committeradam <adam@pkgsrc.org>2006-10-18 19:24:07 +0000
commit939fca8005a281e0c08b92ac2137552390f191e7 (patch)
tree1c60f79bd43234c99a4644f10b2c404d46610b2b /databases/postgresql74
parent73c7e3adbf5aef8b416960a80d81b08f0861ee15 (diff)
downloadpkgsrc-939fca8005a281e0c08b92ac2137552390f191e7.tar.gz
Changes 7.4.14:
* Fix core dump when an untyped literal is taken as ANYARRAY * Fix string_to_array() to handle overlapping matches for the separator string For example, string_to_array('123xx456xxx789', 'xx'). * Fix corner cases in pattern matching for psql's \d commands * Fix index-corrupting bugs in /contrib/ltree (Teodor) * Fix backslash escaping in /contrib/dbmirror * Adjust regression tests for recent changes in US DST laws
Diffstat (limited to 'databases/postgresql74')
-rw-r--r--databases/postgresql74/Makefile.common48
-rw-r--r--databases/postgresql74/distinfo8
2 files changed, 28 insertions, 28 deletions
diff --git a/databases/postgresql74/Makefile.common b/databases/postgresql74/Makefile.common
index 6d92f48a22e..5c1f3313ffb 100644
--- a/databases/postgresql74/Makefile.common
+++ b/databases/postgresql74/Makefile.common
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.36 2006/05/26 17:47:58 joerg Exp $
+# $NetBSD: Makefile.common,v 1.37 2006/10/18 19:24:07 adam Exp $
#
# This Makefile fragment is included by all PostgreSQL packages built from
# the main sources of the PostgreSQL distribution except jdbc-postgresql.
@@ -9,9 +9,9 @@
# <lang>-postgresql client-side interface to PostgreSQL
# postgresql-<lang> server-side module for PostgreSQL backend
-DISTNAME?= postgresql-${DIST_VERS}
-CATEGORIES+= databases
-MASTER_SITES?= ${MASTER_SITE_PGSQL:=source/v${DIST_VERS}/}
+DISTNAME?= postgresql-${DIST_VERS}
+CATEGORIES+= databases
+MASTER_SITES?= ${MASTER_SITE_PGSQL:=source/v${DIST_VERS}/}
# Craft a MASTER_SORT_REGEX that understands the location of the country
# code in the FTP server name for the PostgreSQL mirror sites.
@@ -35,7 +35,7 @@ PATCHDIR?= ${.CURDIR}/../postgresql74/patches
# BASE_VERS pkgsrc-mangled version number (convert pl -> .)
#
# Note: Do not forget jdbc-postgresql when updating version
-DIST_VERS?= 7.4.13
+DIST_VERS?= 7.4.14
BASE_VERS?= ${DIST_VERS}
BUILDLINK_API_DEPENDS.postgresql74-lib?= postgresql74-lib>=${BASE_VERS}
@@ -87,8 +87,8 @@ CFLAGS:= ${CFLAGS:S/-ffast-math//}
post-extract:
if [ -d ${WRKSRC}/src ]; then \
- ${RM} -f ${WRKSRC}/src/Makefile.custom; \
- ${CP} -f ${COMMON_FILESDIR}/Makefile.custom \
+ rm -f ${WRKSRC}/src/Makefile.custom; \
+ cp -f ${COMMON_FILESDIR}/Makefile.custom \
${WRKSRC}/src/Makefile.custom; \
fi
.for platform in irix5
@@ -101,51 +101,51 @@ post-extract:
.endfor
.for platform in interix3
if [ -d ${WRKSRC}/src/template ]; then \
- ${RM} -f ${WRKSRC}/src/template/${platform}; \
- ${CP} -f ${COMMON_FILESDIR}/${platform}.template \
+ rm -f ${WRKSRC}/src/template/${platform}; \
+ cp -f ${COMMON_FILESDIR}/${platform}.template \
${WRKSRC}/src/template/${platform}; \
fi
.endfor
.for platform in interix3
if [ -d ${WRKSRC}/src/backend/port/dynloader ]; then \
- ${RM} -f ${WRKSRC}/src/backend/port/dynloader/${platform}.h; \
- ${CP} -f ${COMMON_FILESDIR}/dynloader-ltdl.h \
+ rm -f ${WRKSRC}/src/backend/port/dynloader/${platform}.h; \
+ cp -f ${COMMON_FILESDIR}/dynloader-ltdl.h \
${WRKSRC}/src/backend/port/dynloader/${platform}.h; \
- ${TOUCH} ${WRKSRC}/src/backend/port/dynloader/${platform}.c; \
+ touch ${WRKSRC}/src/backend/port/dynloader/${platform}.c; \
fi
.endfor
if [ -d ${WRKSRC}/src/interfaces/libpq ]; then \
- ${RM} -f ${WRKSRC}/src/interfaces/libpq/GNUmakefile; \
- ${CP} -f ${COMMON_FILESDIR}/GNUmakefile.libpq \
+ rm -f ${WRKSRC}/src/interfaces/libpq/GNUmakefile; \
+ cp -f ${COMMON_FILESDIR}/GNUmakefile.libpq \
${WRKSRC}/src/interfaces/libpq/GNUmakefile; \
fi
if [ -d ${WRKSRC}/src/interfaces/libpgtcl ]; then \
- ${RM} -f ${WRKSRC}/src/interfaces/libpgtcl/GNUmakefile; \
- ${CP} -f ${COMMON_FILESDIR}/GNUmakefile.libpgtcl \
+ rm -f ${WRKSRC}/src/interfaces/libpgtcl/GNUmakefile; \
+ cp -f ${COMMON_FILESDIR}/GNUmakefile.libpgtcl \
${WRKSRC}/src/interfaces/libpgtcl/GNUmakefile; \
fi
if [ -d ${WRKSRC}/src/backend/port/dynloader ]; then \
- ${RM} -f ${WRKSRC}/src/backend/port/dynloader/netbsd.[ch]; \
- ${CP} -f ${COMMON_FILESDIR}/netbsd.[ch] \
+ rm -f ${WRKSRC}/src/backend/port/dynloader/netbsd.[ch]; \
+ cp -f ${COMMON_FILESDIR}/netbsd.[ch] \
${WRKSRC}/src/backend/port/dynloader/; \
fi
if [ -d ${WRKSRC}/src/backend/port/dynloader ]; then \
- ${CP} ${WRKSRC}/src/backend/port/dynloader/freebsd.c \
+ cp ${WRKSRC}/src/backend/port/dynloader/freebsd.c \
${WRKSRC}/src/backend/port/dynloader/dragonfly.c; \
- ${CP} ${WRKSRC}/src/backend/port/dynloader/freebsd.h \
+ cp ${WRKSRC}/src/backend/port/dynloader/freebsd.h \
${WRKSRC}/src/backend/port/dynloader/dragonfly.h; \
- ${CP} ${WRKSRC}/src/backend/port/dynloader/freebsd.h \
+ cp ${WRKSRC}/src/backend/port/dynloader/freebsd.h \
${WRKSRC}/src/backend/port/dynloader/dragonfly.h; \
fi
if [ -d ${WRKSRC}/src/template ]; then \
- ${TOUCH} ${WRKSRC}/src/template/dragonfly; \
+ touch ${WRKSRC}/src/template/dragonfly; \
fi
if [ -d ${WRKSRC}/src/include/port ]; then \
- ${CP} ${WRKSRC}/src/include/port/freebsd.h \
+ cp ${WRKSRC}/src/include/port/freebsd.h \
${WRKSRC}/src/include/port/dragonfly.h; \
fi
if [ -d ${WRKSRC}/src/makefiles ]; then \
- ${CP} ${WRKSRC}/src/makefiles/Makefile.freebsd \
+ cp ${WRKSRC}/src/makefiles/Makefile.freebsd \
${WRKSRC}/src/makefiles/Makefile.dragonfly; \
fi
diff --git a/databases/postgresql74/distinfo b/databases/postgresql74/distinfo
index 034f7054566..d179dc4cb09 100644
--- a/databases/postgresql74/distinfo
+++ b/databases/postgresql74/distinfo
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.21 2006/05/26 17:47:58 joerg Exp $
+$NetBSD: distinfo,v 1.22 2006/10/18 19:24:07 adam Exp $
-SHA1 (postgresql-7.4.13.tar.bz2) = 32bb03c00e4905d02fc621988d88b075a8a07194
-RMD160 (postgresql-7.4.13.tar.bz2) = 8b107ed07fd44814f8559c4803a95e86176f2b63
-Size (postgresql-7.4.13.tar.bz2) = 10248808 bytes
+SHA1 (postgresql-7.4.14.tar.bz2) = 1193ae3215a3b36409ee457de812a7e179e608ee
+RMD160 (postgresql-7.4.14.tar.bz2) = 105f37482ff5591d89ad697a7d3cce1f29845440
+Size (postgresql-7.4.14.tar.bz2) = 10277632 bytes
SHA1 (patch-aa) = 830a0789195aacd10094e35e7d0d79c5e201491f
SHA1 (patch-ab) = f44a544c56452bad197a88cb827e88624c54656c
SHA1 (patch-ac) = 8104ac7631dd8566eb455e479dd59da058b68c8f