diff --git a/databases/postgresql/Makefile b/databases/postgresql/Makefile index 6c48f947b0d..e688b650406 100644 --- a/databases/postgresql/Makefile +++ b/databases/postgresql/Makefile @@ -1,18 +1,17 @@ -# $OpenBSD: Makefile,v 1.149 2011/04/07 14:45:25 pea Exp $ +# $OpenBSD: Makefile,v 1.150 2011/04/19 08:39:21 pea Exp $ COMMENT-main= PostgreSQL RDBMS (client) COMMENT-server= PostgreSQL RDBMS (server) COMMENT-docs= PostgreSQL RDBMS documentation COMMENT-contrib=PostgreSQL RDBMS contributions -VERSION= 9.0.3 +VERSION= 9.0.4 DISTNAME= postgresql-${VERSION} PKGNAME-main= postgresql-client-${VERSION} PKGNAME-server= postgresql-server-${VERSION} PKGNAME-docs= postgresql-docs-${VERSION} PKGNAME-contrib=postgresql-contrib-${VERSION} -REVISION-server= 4 CATEGORIES= databases SHARED_LIBS= ecpg 7.2 \ diff --git a/databases/postgresql/distinfo b/databases/postgresql/distinfo index 9e9891aebe6..3e3b30de7e7 100644 --- a/databases/postgresql/distinfo +++ b/databases/postgresql/distinfo @@ -1,5 +1,5 @@ -MD5 (postgresql-9.0.3.tar.gz) = Vjht7S1dzYpM7vDagcPSLA== -RMD160 (postgresql-9.0.3.tar.gz) = Ceix61dqhiHpa4Bm4EErXwz7w6E= -SHA1 (postgresql-9.0.3.tar.gz) = yPtdHXkw54IR5VS7V1EYOoFI0O4= -SHA256 (postgresql-9.0.3.tar.gz) = Nrs6YlahYcDJS/pTSlK6Wv5FKJvbYmxazbew4htRl8w= -SIZE (postgresql-9.0.3.tar.gz) = 18335858 +MD5 (postgresql-9.0.4.tar.gz) = Zazrs3S76uBcMIJtJm2GtA== +RMD160 (postgresql-9.0.4.tar.gz) = FAkLQGdiqcuCzhzqPF8vTqLEQRY= +SHA1 (postgresql-9.0.4.tar.gz) = i7bE0R6yPrT4Q/Tpb2MNM29T4uk= +SHA256 (postgresql-9.0.4.tar.gz) = deMTMED8lMUUVhBbB89spI+4C674wDb9a66Py/n0B4s= +SIZE (postgresql-9.0.4.tar.gz) = 18370278 diff --git a/databases/postgresql/patches/patch-src_backend_port_dynloader_openbsd_c b/databases/postgresql/patches/patch-src_backend_port_dynloader_openbsd_c deleted file mode 100644 index 4eec9759647..00000000000 --- a/databases/postgresql/patches/patch-src_backend_port_dynloader_openbsd_c +++ /dev/null @@ -1,37 +0,0 @@ -$OpenBSD: patch-src_backend_port_dynloader_openbsd_c,v 1.1 2011/04/07 13:54:16 pea Exp $ - -Remove old restrictions that no longer exist on OpenBSD. -Without these, PostgreSQL can now run on mips platforms. - ---- src/backend/port/dynloader/openbsd.c.orig Thu Apr 7 03:30:11 2011 -+++ src/backend/port/dynloader/openbsd.c Thu Apr 7 03:32:13 2011 -@@ -57,28 +57,18 @@ BSD44_derived_dlerror(void) - void * - BSD44_derived_dlopen(const char *file, int num) - { --#if defined(__mips__) -- snprintf(error_message, sizeof(error_message), -- "dlopen (%s) not supported", file); -- return NULL; --#else - void *vp; - - if ((vp = dlopen((char *) file, num)) == NULL) - snprintf(error_message, sizeof(error_message), - "dlopen (%s) failed: %s", file, dlerror()); - return vp; --#endif - } - - void * - BSD44_derived_dlsym(void *handle, const char *name) - { --#if defined(__mips__) -- snprintf(error_message, sizeof(error_message), -- "dlsym (%s) failed", name); -- return NULL; --#elif defined(__ELF__) -+#if defined(__ELF__) - return dlsym(handle, name); - #else - void *vp; diff --git a/databases/postgresql/pkg/PLIST-docs b/databases/postgresql/pkg/PLIST-docs index 782d06e8f28..ad7fdded5cf 100644 --- a/databases/postgresql/pkg/PLIST-docs +++ b/databases/postgresql/pkg/PLIST-docs @@ -1,4 +1,4 @@ -@comment $OpenBSD: PLIST-docs,v 1.49 2011/02/02 14:10:45 pea Exp $ +@comment $OpenBSD: PLIST-docs,v 1.50 2011/04/19 08:39:21 pea Exp $ share/doc/postgresql/ share/doc/postgresql/COPYRIGHT share/doc/postgresql/HISTORY @@ -671,6 +671,7 @@ share/doc/postgresql/html/release-8-2-18.html share/doc/postgresql/html/release-8-2-19.html share/doc/postgresql/html/release-8-2-2.html share/doc/postgresql/html/release-8-2-20.html +share/doc/postgresql/html/release-8-2-21.html share/doc/postgresql/html/release-8-2-3.html share/doc/postgresql/html/release-8-2-4.html share/doc/postgresql/html/release-8-2-5.html @@ -685,6 +686,7 @@ share/doc/postgresql/html/release-8-3-11.html share/doc/postgresql/html/release-8-3-12.html share/doc/postgresql/html/release-8-3-13.html share/doc/postgresql/html/release-8-3-14.html +share/doc/postgresql/html/release-8-3-15.html share/doc/postgresql/html/release-8-3-2.html share/doc/postgresql/html/release-8-3-3.html share/doc/postgresql/html/release-8-3-4.html @@ -701,10 +703,12 @@ share/doc/postgresql/html/release-8-4-4.html share/doc/postgresql/html/release-8-4-5.html share/doc/postgresql/html/release-8-4-6.html share/doc/postgresql/html/release-8-4-7.html +share/doc/postgresql/html/release-8-4-8.html share/doc/postgresql/html/release-8-4.html share/doc/postgresql/html/release-9-0-1.html share/doc/postgresql/html/release-9-0-2.html share/doc/postgresql/html/release-9-0-3.html +share/doc/postgresql/html/release-9-0-4.html share/doc/postgresql/html/release-9-0.html share/doc/postgresql/html/release.html share/doc/postgresql/html/resources.html diff --git a/databases/postgresql/pkg/PLIST-main b/databases/postgresql/pkg/PLIST-main index 063cde77fcc..87071232924 100644 --- a/databases/postgresql/pkg/PLIST-main +++ b/databases/postgresql/pkg/PLIST-main @@ -1,4 +1,4 @@ -@comment $OpenBSD: PLIST-main,v 1.19 2010/11/08 14:12:24 pea Exp $ +@comment $OpenBSD: PLIST-main,v 1.20 2011/04/19 08:39:22 pea Exp $ @conflict pgsql-* @conflict pgsql-clients-* @conflict postgresql-* @@ -475,6 +475,7 @@ share/postgresql/timezone/America/Mazatlan share/postgresql/timezone/America/Mendoza share/postgresql/timezone/America/Menominee share/postgresql/timezone/America/Merida +share/postgresql/timezone/America/Metlakatla share/postgresql/timezone/America/Mexico_City share/postgresql/timezone/America/Miquelon share/postgresql/timezone/America/Moncton @@ -488,6 +489,7 @@ share/postgresql/timezone/America/Nipigon share/postgresql/timezone/America/Nome share/postgresql/timezone/America/Noronha share/postgresql/timezone/America/North_Dakota/ +share/postgresql/timezone/America/North_Dakota/Beulah share/postgresql/timezone/America/North_Dakota/Center share/postgresql/timezone/America/North_Dakota/New_Salem share/postgresql/timezone/America/Ojinaga @@ -514,6 +516,7 @@ share/postgresql/timezone/America/Santo_Domingo share/postgresql/timezone/America/Sao_Paulo share/postgresql/timezone/America/Scoresbysund share/postgresql/timezone/America/Shiprock +share/postgresql/timezone/America/Sitka share/postgresql/timezone/America/St_Barthelemy share/postgresql/timezone/America/St_Johns share/postgresql/timezone/America/St_Kitts