Import of pkgsrc-2015Q1

This commit is contained in:
2015-04-22 14:34:26 +02:00
committed by Lionel Sambuc
parent 9a8c06dafb
commit 4af1cdf7a9
25114 changed files with 870550 additions and 795435 deletions

View File

@@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.8 2014/02/23 11:25:51 adam Exp $
# $NetBSD: Makefile,v 1.10 2014/07/25 22:14:55 adam Exp $
PKGNAME= ${DISTNAME:C/-/90-/}
COMMENT= Robust, next generation, object-relational DBMS

View File

@@ -1,17 +1,4 @@
# $NetBSD: Makefile.common,v 1.30 2014/03/27 20:57:54 adam Exp $
#
# used by databases/postgresql90-adminpack/Makefile
# used by databases/postgresql90-client/Makefile
# used by databases/postgresql90-datatypes/Makefile
# used by databases/postgresql90-dblink/Makefile
# used by databases/postgresql90-docs/Makefile
# used by databases/postgresql90-fuzzystrmatch/Makefile
# used by databases/postgresql90-pgcrypto/Makefile
# used by databases/postgresql90-plperl/Makefile
# used by databases/postgresql90-plpython/Makefile
# used by databases/postgresql90-pltcl/Makefile
# used by databases/postgresql90-server/Makefile
# used by databases/postgresql90-upgrade/Makefile
# $NetBSD: Makefile.common,v 1.34 2015/02/14 12:39:51 adam Exp $
#
# This Makefile fragment is included by all PostgreSQL packages built from
# the main sources of the PostgreSQL distribution except jdbc-postgresql.
@@ -20,8 +7,23 @@
# packages, is as follows:
# <lang>-postgresql client-side interface to PostgreSQL
# postgresql-<lang> server-side module for PostgreSQL backend
#
# used by databases/postgresql90-adminpack/Makefile
# used by databases/postgresql90-client/Makefile
# used by databases/postgresql90-datatypes/Makefile
# used by databases/postgresql90-dblink/Makefile
# used by databases/postgresql90-docs/Makefile
# used by databases/postgresql90-fuzzystrmatch/Makefile
# used by databases/postgresql90-monitoring/Makefile
# used by databases/postgresql90-pgcrypto/Makefile
# used by databases/postgresql90-plperl/Makefile
# used by databases/postgresql90-plpython/Makefile
# used by databases/postgresql90-pltcl/Makefile
# used by databases/postgresql90-replicationtools/Makefile
# used by databases/postgresql90-server/Makefile
# used by databases/postgresql90-upgrade/Makefile
DISTNAME= postgresql-9.0.17
DISTNAME= postgresql-9.0.19
CATEGORIES= databases
MASTER_SITES= ${MASTER_SITE_PGSQL:=source/v${PKGVERSION_NOREV}/}
EXTRACT_SUFX= .tar.bz2
@@ -104,6 +106,9 @@ USE_LIBLTDL?= no
.include "../../devel/gettext-lib/buildlink3.mk"
LIBS.SunOS+= -lintl
.include "../../mk/pthread.buildlink3.mk"
CONFIGURE_FLAGS+= acx_pthread_flags="${PTHREAD_LIBS} ${PTHREAD_LDFLAGS}"
.if !defined(META_PACKAGE)
post-extract:
. if !empty(USE_LIBLTDL:M[yY][eE][sS])

View File

@@ -1,8 +1,8 @@
$NetBSD: distinfo,v 1.21 2014/03/27 20:57:54 adam Exp $
$NetBSD: distinfo,v 1.24 2015/02/14 12:39:51 adam Exp $
SHA1 (postgresql-9.0.17.tar.bz2) = 585198b90b2e86b1e2e8e33ff28d7161af20156d
RMD160 (postgresql-9.0.17.tar.bz2) = 36d1f5e7d4cf9f5703f01b35c507814fd73384a3
Size (postgresql-9.0.17.tar.bz2) = 14961682 bytes
SHA1 (postgresql-9.0.19.tar.bz2) = 41e71a878273b22332ad4e187528d6cefb41b063
RMD160 (postgresql-9.0.19.tar.bz2) = c95a55f8d42dbc0101215d6e3050cb59f79cf346
Size (postgresql-9.0.19.tar.bz2) = 15019406 bytes
SHA1 (patch-aa) = c7e5aaff1c47d2e33df7692a412ef984c77ffcc0
SHA1 (patch-ab) = 6adfc53e325abe69582f1c7971f56144c697e9c1
SHA1 (patch-ac) = 76ddd3015d93b19cdd6000eaffc4f53cbd4965b5
@@ -13,6 +13,7 @@ SHA1 (patch-ah) = 25102dce1b9b22385353af23500636fb18e3bf64
SHA1 (patch-ai) = 0d6f536f7593e362ec216eafa73c718ad6bed8fc
SHA1 (patch-ao) = 4d7c40d107d4c13c63ef2908d9a02be319863657
SHA1 (patch-src_Makefile.shlib) = 72d6db917b7d6ba1dbf8037e03f83a7ce7c4d6c9
SHA1 (patch-src_backend_utils_adt_datetime.c) = 02ec83af9d06565e0607b0635364b2dc501f1d7c
SHA1 (patch-src_interfaces_ecpg_pgtypeslib_interval.c) = 2de11e149003e4a7205e44f58990afe8a24f80cb
SHA1 (patch-src_makefiles_Makefile.solaris) = 0168f5bc105ffc89d5db40907a08966d8465f5a0
SHA1 (patch-src_pl_plperl_plperl.h) = 8e2d954642cb68dc6c6fd08debd058d053566826
SHA1 (patch-src_pl_plpython_Makefile) = d70e0cf5e20479851df3ededa50776fd04846d49

View File

@@ -0,0 +1,14 @@
$NetBSD: patch-src_backend_utils_adt_datetime.c,v 1.1 2015/01/23 15:06:01 joerg Exp $
--- src/backend/utils/adt/datetime.c.orig 2014-07-21 19:16:01.000000000 +0000
+++ src/backend/utils/adt/datetime.c
@@ -29,6 +29,9 @@
#include "utils/memutils.h"
#include "utils/tzparser.h"
+#if defined(__NetBSD__)
+#define strtoi pg_strtoi
+#endif
static int DecodeNumber(int flen, char *field, bool haveTextMonth,
int fmask, int *tmask,

View File

@@ -0,0 +1,15 @@
$NetBSD: patch-src_interfaces_ecpg_pgtypeslib_interval.c,v 1.1 2015/01/23 15:06:01 joerg Exp $
--- src/interfaces/ecpg/pgtypeslib/interval.c.orig 2014-07-21 19:16:01.000000000 +0000
+++ src/interfaces/ecpg/pgtypeslib/interval.c
@@ -14,6 +14,10 @@
#include "pgtypes_error.h"
#include "pgtypes_interval.h"
+#if defined(__NetBSD__)
+#define strtoi pg_strtoi
+#endif
+
/* copy&pasted from .../src/backend/utils/adt/datetime.c */
static int
strtoi(const char *nptr, char **endptr, int base)

View File

@@ -1,15 +0,0 @@
$NetBSD: patch-src_pl_plpython_Makefile,v 1.1 2013/12/10 22:32:56 adam Exp $
Don't try to use Python framework.
--- src/pl/plpython/Makefile.orig 2013-12-10 21:48:07.000000000 +0000
+++ src/pl/plpython/Makefile
@@ -24,8 +24,6 @@ endif
# Darwin (OS X) has its own ideas about how to do this.
ifeq ($(PORTNAME), darwin)
shared_libpython = yes
-override python_libspec = -framework Python
-override python_additional_libs =
endif
# If we don't have a shared library and the platform doesn't allow it