summaryrefslogtreecommitdiff
path: root/databases
diff options
context:
space:
mode:
authorjoerg <joerg@pkgsrc.org>2014-10-01 19:25:35 +0000
committerjoerg <joerg@pkgsrc.org>2014-10-01 19:25:35 +0000
commitd0e4760b94bfafad38fde667838f38283f09d4d3 (patch)
tree5b6c4a0f0c6cfcd7553fa2bebca11d27410eb4a4 /databases
parent294dbfab0ff5d4936f0aaafaef8ff5cef3126e67 (diff)
downloadpkgsrc-d0e4760b94bfafad38fde667838f38283f09d4d3.tar.gz
Include btree-gist module, useful e.g. for range exclusions.
Diffstat (limited to 'databases')
-rw-r--r--databases/postgresql90-datatypes/DESCR3
-rw-r--r--databases/postgresql90-datatypes/Makefile4
-rw-r--r--databases/postgresql90-datatypes/PLIST5
-rw-r--r--databases/postgresql91-datatypes/DESCR6
-rw-r--r--databases/postgresql91-datatypes/Makefile4
-rw-r--r--databases/postgresql91-datatypes/PLIST6
-rw-r--r--databases/postgresql92-datatypes/DESCR6
-rw-r--r--databases/postgresql92-datatypes/Makefile4
-rw-r--r--databases/postgresql92-datatypes/PLIST6
-rw-r--r--databases/postgresql93-datatypes/DESCR6
-rw-r--r--databases/postgresql93-datatypes/Makefile4
-rw-r--r--databases/postgresql93-datatypes/PLIST6
12 files changed, 46 insertions, 14 deletions
diff --git a/databases/postgresql90-datatypes/DESCR b/databases/postgresql90-datatypes/DESCR
index 0fd1fb2d6cd..386634b3f11 100644
--- a/databases/postgresql90-datatypes/DESCR
+++ b/databases/postgresql90-datatypes/DESCR
@@ -1,4 +1,5 @@
This package provides the following PostgreSQL modules:
+ - btree_gist
- citext
- hstore
- intarray
@@ -8,6 +9,8 @@ This package provides the following PostgreSQL modules:
- uuid-ossp
- unaccent
+The "btree_gist" module provides GIST operator classes for scalar data types.
+
The "citext" module provides a case-insensitive character string type,
citext. Essentially, it internally calls lower when comparing values.
Otherwise, it behaves almost exactly like text.
diff --git a/databases/postgresql90-datatypes/Makefile b/databases/postgresql90-datatypes/Makefile
index 87b2acee562..725866a2443 100644
--- a/databases/postgresql90-datatypes/Makefile
+++ b/databases/postgresql90-datatypes/Makefile
@@ -1,6 +1,7 @@
-# $NetBSD: Makefile,v 1.14 2014/02/23 11:25:51 adam Exp $
+# $NetBSD: Makefile,v 1.15 2014/10/01 19:25:35 joerg Exp $
PKGNAME= ${DISTNAME:C/-/90-datatypes-/}
+PKGREVISION= 1
COMMENT= PostgreSQL data types support modules
DEPENDS+= postgresql90-server>=${PKGVERSION_NOREV}:../../databases/postgresql90-server
@@ -19,6 +20,7 @@ BUILD_DIRS+= contrib/uuid-ossp
.endif
BUILD_MAKE_FLAGS= PGXS=1
+BUILD_DIRS+= contrib/btree_gist
BUILD_DIRS+= contrib/citext
BUILD_DIRS+= contrib/hstore
BUILD_DIRS+= contrib/intarray
diff --git a/databases/postgresql90-datatypes/PLIST b/databases/postgresql90-datatypes/PLIST
index 4875bcc47db..7a088e7c173 100644
--- a/databases/postgresql90-datatypes/PLIST
+++ b/databases/postgresql90-datatypes/PLIST
@@ -1,5 +1,6 @@
-@comment $NetBSD: PLIST,v 1.6 2013/12/10 22:32:56 adam Exp $
+@comment $NetBSD: PLIST,v 1.7 2014/10/01 19:25:35 joerg Exp $
lib/postgresql/_int.so
+lib/postgresql/btree_gist.so
lib/postgresql/citext.so
lib/postgresql/hstore.so
lib/postgresql/isn.so
@@ -8,6 +9,7 @@ lib/postgresql/ltree.so
lib/postgresql/unaccent.so
${PLIST.uuid}lib/postgresql/uuid-ossp.so
share/postgresql/contrib/_int.sql
+share/postgresql/contrib/btree_gist.sql
share/postgresql/contrib/citext.sql
share/postgresql/contrib/hstore.sql
share/postgresql/contrib/isn.sql
@@ -15,6 +17,7 @@ share/postgresql/contrib/lo.sql
share/postgresql/contrib/ltree.sql
share/postgresql/contrib/unaccent.sql
share/postgresql/contrib/uninstall__int.sql
+share/postgresql/contrib/uninstall_btree_gist.sql
share/postgresql/contrib/uninstall_citext.sql
share/postgresql/contrib/uninstall_hstore.sql
share/postgresql/contrib/uninstall_isn.sql
diff --git a/databases/postgresql91-datatypes/DESCR b/databases/postgresql91-datatypes/DESCR
index 81d686b929f..a0a848aca0f 100644
--- a/databases/postgresql91-datatypes/DESCR
+++ b/databases/postgresql91-datatypes/DESCR
@@ -1,5 +1,7 @@
-This package provides the following PostgreSQL modules: citext, hstore,
-intarray, isn, ltree, lo, uuid-ossp, unaccent.
+This package provides the following PostgreSQL modules: btree_gist,
+citext, hstore, intarray, isn, ltree, lo, uuid-ossp, unaccent.
+
+The "btree_gist" module provides GIST operator classes for scalar data types.
The "citext" module provides a case-insensitive character string type,
citext. Essentially, it internally calls lower when comparing values.
diff --git a/databases/postgresql91-datatypes/Makefile b/databases/postgresql91-datatypes/Makefile
index 30bea5c8235..d4641f4e92d 100644
--- a/databases/postgresql91-datatypes/Makefile
+++ b/databases/postgresql91-datatypes/Makefile
@@ -1,6 +1,7 @@
-# $NetBSD: Makefile,v 1.11 2014/02/23 11:25:52 adam Exp $
+# $NetBSD: Makefile,v 1.12 2014/10/01 19:25:35 joerg Exp $
PKGNAME= ${DISTNAME:C/-/91-datatypes-/}
+PKGREVISION= 1
COMMENT= PostgreSQL data types support modules
DEPENDS+= postgresql91-server>=${PKGVERSION_NOREV}:../../databases/postgresql91-server
@@ -18,6 +19,7 @@ BUILD_DIRS+= contrib/uuid-ossp
. include "../../devel/ossp-uuid/buildlink3.mk"
.endif
+BUILD_DIRS+= contrib/btree_gist
BUILD_DIRS+= contrib/citext
BUILD_DIRS+= contrib/hstore
BUILD_DIRS+= contrib/intarray
diff --git a/databases/postgresql91-datatypes/PLIST b/databases/postgresql91-datatypes/PLIST
index 533d01d4739..c9271e89d4a 100644
--- a/databases/postgresql91-datatypes/PLIST
+++ b/databases/postgresql91-datatypes/PLIST
@@ -1,5 +1,6 @@
-@comment $NetBSD: PLIST,v 1.2 2013/12/10 22:32:57 adam Exp $
+@comment $NetBSD: PLIST,v 1.3 2014/10/01 19:25:35 joerg Exp $
lib/postgresql/_int.so
+lib/postgresql/btree_gist.so
lib/postgresql/citext.so
lib/postgresql/hstore.so
lib/postgresql/isn.so
@@ -7,6 +8,9 @@ lib/postgresql/lo.so
lib/postgresql/ltree.so
lib/postgresql/unaccent.so
${PLIST.uuid}lib/postgresql/uuid-ossp.so
+share/postgresql/extension/btree_gist--1.0.sql
+share/postgresql/extension/btree_gist--unpackaged--1.0.sql
+share/postgresql/extension/btree_gist.control
share/postgresql/extension/citext--1.0.sql
share/postgresql/extension/citext--unpackaged--1.0.sql
share/postgresql/extension/citext.control
diff --git a/databases/postgresql92-datatypes/DESCR b/databases/postgresql92-datatypes/DESCR
index 81d686b929f..a0a848aca0f 100644
--- a/databases/postgresql92-datatypes/DESCR
+++ b/databases/postgresql92-datatypes/DESCR
@@ -1,5 +1,7 @@
-This package provides the following PostgreSQL modules: citext, hstore,
-intarray, isn, ltree, lo, uuid-ossp, unaccent.
+This package provides the following PostgreSQL modules: btree_gist,
+citext, hstore, intarray, isn, ltree, lo, uuid-ossp, unaccent.
+
+The "btree_gist" module provides GIST operator classes for scalar data types.
The "citext" module provides a case-insensitive character string type,
citext. Essentially, it internally calls lower when comparing values.
diff --git a/databases/postgresql92-datatypes/Makefile b/databases/postgresql92-datatypes/Makefile
index 27535cab073..258855c7177 100644
--- a/databases/postgresql92-datatypes/Makefile
+++ b/databases/postgresql92-datatypes/Makefile
@@ -1,6 +1,7 @@
-# $NetBSD: Makefile,v 1.8 2014/02/23 11:25:53 adam Exp $
+# $NetBSD: Makefile,v 1.9 2014/10/01 19:25:35 joerg Exp $
PKGNAME= ${DISTNAME:C/-/92-datatypes-/}
+PKGREVISION= 1
COMMENT= PostgreSQL data types support modules
DEPENDS+= postgresql92-server>=${PKGVERSION_NOREV}:../../databases/postgresql92-server
@@ -18,6 +19,7 @@ BUILD_DIRS+= contrib/uuid-ossp
. include "../../devel/ossp-uuid/buildlink3.mk"
.endif
+BUILD_DIRS+= contrib/btree_gist
BUILD_DIRS+= contrib/citext
BUILD_DIRS+= contrib/hstore
BUILD_DIRS+= contrib/intarray
diff --git a/databases/postgresql92-datatypes/PLIST b/databases/postgresql92-datatypes/PLIST
index 5e46c7f651e..53d9d41dc99 100644
--- a/databases/postgresql92-datatypes/PLIST
+++ b/databases/postgresql92-datatypes/PLIST
@@ -1,5 +1,6 @@
-@comment $NetBSD: PLIST,v 1.2 2013/12/10 22:32:57 adam Exp $
+@comment $NetBSD: PLIST,v 1.3 2014/10/01 19:25:35 joerg Exp $
lib/postgresql/_int.so
+lib/postgresql/btree_gist.so
lib/postgresql/citext.so
lib/postgresql/hstore.so
lib/postgresql/isn.so
@@ -7,6 +8,9 @@ lib/postgresql/lo.so
lib/postgresql/ltree.so
lib/postgresql/unaccent.so
${PLIST.uuid}lib/postgresql/uuid-ossp.so
+share/postgresql/extension/btree_gist--1.0.sql
+share/postgresql/extension/btree_gist--unpackaged--1.0.sql
+share/postgresql/extension/btree_gist.control
share/postgresql/extension/citext--1.0.sql
share/postgresql/extension/citext--unpackaged--1.0.sql
share/postgresql/extension/citext.control
diff --git a/databases/postgresql93-datatypes/DESCR b/databases/postgresql93-datatypes/DESCR
index 81d686b929f..a0a848aca0f 100644
--- a/databases/postgresql93-datatypes/DESCR
+++ b/databases/postgresql93-datatypes/DESCR
@@ -1,5 +1,7 @@
-This package provides the following PostgreSQL modules: citext, hstore,
-intarray, isn, ltree, lo, uuid-ossp, unaccent.
+This package provides the following PostgreSQL modules: btree_gist,
+citext, hstore, intarray, isn, ltree, lo, uuid-ossp, unaccent.
+
+The "btree_gist" module provides GIST operator classes for scalar data types.
The "citext" module provides a case-insensitive character string type,
citext. Essentially, it internally calls lower when comparing values.
diff --git a/databases/postgresql93-datatypes/Makefile b/databases/postgresql93-datatypes/Makefile
index 029abe12234..4beb6e856dd 100644
--- a/databases/postgresql93-datatypes/Makefile
+++ b/databases/postgresql93-datatypes/Makefile
@@ -1,6 +1,7 @@
-# $NetBSD: Makefile,v 1.5 2014/02/23 11:25:54 adam Exp $
+# $NetBSD: Makefile,v 1.6 2014/10/01 19:25:35 joerg Exp $
PKGNAME= ${DISTNAME:C/-/93-datatypes-/}
+PKGREVISION= 1
COMMENT= PostgreSQL data types support modules
DEPENDS+= postgresql93-server>=${PKGVERSION_NOREV}:../../databases/postgresql93-server
@@ -18,6 +19,7 @@ BUILD_DIRS+= contrib/uuid-ossp
. include "../../devel/ossp-uuid/buildlink3.mk"
.endif
+BUILD_DIRS+= contrib/btree_gist
BUILD_DIRS+= contrib/citext
BUILD_DIRS+= contrib/hstore
BUILD_DIRS+= contrib/intarray
diff --git a/databases/postgresql93-datatypes/PLIST b/databases/postgresql93-datatypes/PLIST
index 2e9ec98bead..49a481f5192 100644
--- a/databases/postgresql93-datatypes/PLIST
+++ b/databases/postgresql93-datatypes/PLIST
@@ -1,5 +1,6 @@
-@comment $NetBSD: PLIST,v 1.3 2013/12/10 22:32:57 adam Exp $
+@comment $NetBSD: PLIST,v 1.4 2014/10/01 19:25:35 joerg Exp $
lib/postgresql/_int.so
+lib/postgresql/btree_gist.so
lib/postgresql/citext.so
lib/postgresql/hstore.so
lib/postgresql/isn.so
@@ -7,6 +8,9 @@ lib/postgresql/lo.so
lib/postgresql/ltree.so
lib/postgresql/unaccent.so
${PLIST.uuid}lib/postgresql/uuid-ossp.so
+share/postgresql/extension/btree_gist--1.0.sql
+share/postgresql/extension/btree_gist--unpackaged--1.0.sql
+share/postgresql/extension/btree_gist.control
share/postgresql/extension/citext--1.0.sql
share/postgresql/extension/citext--unpackaged--1.0.sql
share/postgresql/extension/citext.control