pkgsrc-Users archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

Include btree_gist in databases/postgresql*-dbtypes



Hi Adam,
the attached patch includes the btree_gist extension in the datatypes
package. I think it fits naturally with the rest of that package.

Joerg
Index: postgresql90-datatypes/DESCR
===================================================================
RCS file: /home/joerg/repo/netbsd/pkgsrc/databases/postgresql90-datatypes/DESCR,v
retrieving revision 1.3
diff -u -p -r1.3 DESCR
--- postgresql90-datatypes/DESCR	8 Apr 2013 18:29:40 -0000	1.3
+++ postgresql90-datatypes/DESCR	22 Sep 2014 12:04:35 -0000
@@ -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 Post
   - 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.
Index: postgresql90-datatypes/Makefile
===================================================================
RCS file: /home/joerg/repo/netbsd/pkgsrc/databases/postgresql90-datatypes/Makefile,v
retrieving revision 1.14
diff -u -p -r1.14 Makefile
--- postgresql90-datatypes/Makefile	23 Feb 2014 11:25:51 -0000	1.14
+++ postgresql90-datatypes/Makefile	22 Sep 2014 12:03:40 -0000
@@ -1,6 +1,7 @@
 # $NetBSD: Makefile,v 1.14 2014/02/23 11:25:51 adam 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
Index: postgresql90-datatypes/PLIST
===================================================================
RCS file: /home/joerg/repo/netbsd/pkgsrc/databases/postgresql90-datatypes/PLIST,v
retrieving revision 1.6
diff -u -p -r1.6 PLIST
--- postgresql90-datatypes/PLIST	10 Dec 2013 22:32:56 -0000	1.6
+++ postgresql90-datatypes/PLIST	22 Sep 2014 12:03:40 -0000
@@ -1,5 +1,6 @@
 @comment $NetBSD: PLIST,v 1.6 2013/12/10 22:32:56 adam 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
Index: postgresql91-datatypes/DESCR
===================================================================
RCS file: /home/joerg/repo/netbsd/pkgsrc/databases/postgresql91-datatypes/DESCR,v
retrieving revision 1.4
diff -u -p -r1.4 DESCR
--- postgresql91-datatypes/DESCR	10 Dec 2013 22:32:57 -0000	1.4
+++ postgresql91-datatypes/DESCR	22 Sep 2014 12:03:40 -0000
@@ -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.
Index: postgresql91-datatypes/Makefile
===================================================================
RCS file: /home/joerg/repo/netbsd/pkgsrc/databases/postgresql91-datatypes/Makefile,v
retrieving revision 1.11
diff -u -p -r1.11 Makefile
--- postgresql91-datatypes/Makefile	23 Feb 2014 11:25:52 -0000	1.11
+++ postgresql91-datatypes/Makefile	22 Sep 2014 12:03:40 -0000
@@ -1,6 +1,7 @@
 # $NetBSD: Makefile,v 1.11 2014/02/23 11:25:52 adam 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
Index: postgresql91-datatypes/PLIST
===================================================================
RCS file: /home/joerg/repo/netbsd/pkgsrc/databases/postgresql91-datatypes/PLIST,v
retrieving revision 1.2
diff -u -p -r1.2 PLIST
--- postgresql91-datatypes/PLIST	10 Dec 2013 22:32:57 -0000	1.2
+++ postgresql91-datatypes/PLIST	22 Sep 2014 12:03:40 -0000
@@ -1,5 +1,6 @@
 @comment $NetBSD: PLIST,v 1.2 2013/12/10 22:32:57 adam 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
Index: postgresql92-datatypes/DESCR
===================================================================
RCS file: /home/joerg/repo/netbsd/pkgsrc/databases/postgresql92-datatypes/DESCR,v
retrieving revision 1.4
diff -u -p -r1.4 DESCR
--- postgresql92-datatypes/DESCR	10 Dec 2013 22:32:57 -0000	1.4
+++ postgresql92-datatypes/DESCR	22 Sep 2014 12:03:40 -0000
@@ -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.
Index: postgresql92-datatypes/Makefile
===================================================================
RCS file: /home/joerg/repo/netbsd/pkgsrc/databases/postgresql92-datatypes/Makefile,v
retrieving revision 1.8
diff -u -p -r1.8 Makefile
--- postgresql92-datatypes/Makefile	23 Feb 2014 11:25:53 -0000	1.8
+++ postgresql92-datatypes/Makefile	22 Sep 2014 12:03:40 -0000
@@ -1,6 +1,7 @@
 # $NetBSD: Makefile,v 1.8 2014/02/23 11:25:53 adam 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
Index: postgresql92-datatypes/PLIST
===================================================================
RCS file: /home/joerg/repo/netbsd/pkgsrc/databases/postgresql92-datatypes/PLIST,v
retrieving revision 1.2
diff -u -p -r1.2 PLIST
--- postgresql92-datatypes/PLIST	10 Dec 2013 22:32:57 -0000	1.2
+++ postgresql92-datatypes/PLIST	22 Sep 2014 12:03:40 -0000
@@ -1,5 +1,6 @@
 @comment $NetBSD: PLIST,v 1.2 2013/12/10 22:32:57 adam 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
Index: postgresql93-datatypes/DESCR
===================================================================
RCS file: /home/joerg/repo/netbsd/pkgsrc/databases/postgresql93-datatypes/DESCR,v
retrieving revision 1.2
diff -u -p -r1.2 DESCR
--- postgresql93-datatypes/DESCR	10 Dec 2013 22:32:57 -0000	1.2
+++ postgresql93-datatypes/DESCR	22 Sep 2014 12:03:40 -0000
@@ -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.
Index: postgresql93-datatypes/Makefile
===================================================================
RCS file: /home/joerg/repo/netbsd/pkgsrc/databases/postgresql93-datatypes/Makefile,v
retrieving revision 1.5
diff -u -p -r1.5 Makefile
--- postgresql93-datatypes/Makefile	23 Feb 2014 11:25:54 -0000	1.5
+++ postgresql93-datatypes/Makefile	22 Sep 2014 12:03:40 -0000
@@ -1,6 +1,7 @@
 # $NetBSD: Makefile,v 1.5 2014/02/23 11:25:54 adam 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
Index: postgresql93-datatypes/PLIST
===================================================================
RCS file: /home/joerg/repo/netbsd/pkgsrc/databases/postgresql93-datatypes/PLIST,v
retrieving revision 1.3
diff -u -p -r1.3 PLIST
--- postgresql93-datatypes/PLIST	10 Dec 2013 22:32:57 -0000	1.3
+++ postgresql93-datatypes/PLIST	22 Sep 2014 12:03:40 -0000
@@ -1,5 +1,6 @@
 @comment $NetBSD: PLIST,v 1.3 2013/12/10 22:32:57 adam 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


Home | Main Index | Thread Index | Old Index