Date: Mon, 29 Feb 2016 11:00:06 +0000 (UTC) From: Raphael Kubo da Costa <rakuco@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r409805 - in head/databases: . pguri Message-ID: <201602291100.u1TB068P012764@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: rakuco Date: Mon Feb 29 11:00:06 2016 New Revision: 409805 URL: https://svnweb.freebsd.org/changeset/ports/409805 Log: New port: databases/pguri. URI datatype for PostgreSQL WWW: https://github.com/petere/pguri PR: 203949 Submitted by: Torsten Zühlsdorff <ports@toco-domains.de> Added: head/databases/pguri/ head/databases/pguri/Makefile (contents, props changed) head/databases/pguri/distinfo (contents, props changed) head/databases/pguri/pkg-descr (contents, props changed) head/databases/pguri/pkg-message (contents, props changed) Modified: head/databases/Makefile Modified: head/databases/Makefile ============================================================================== --- head/databases/Makefile Mon Feb 29 10:40:03 2016 (r409804) +++ head/databases/Makefile Mon Feb 29 11:00:06 2016 (r409805) @@ -576,6 +576,7 @@ SUBDIR += pgtcl SUBDIR += pgtop SUBDIR += pgtune + SUBDIR += pguri SUBDIR += pgworksheet SUBDIR += php-adodb-ext SUBDIR += php-mdcached Added: head/databases/pguri/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/pguri/Makefile Mon Feb 29 11:00:06 2016 (r409805) @@ -0,0 +1,27 @@ +# Created by: Torsten Zuehlsdorff <ports@toco-domains.de> +# $FreeBSD$ + +PORTNAME= pguri +PORTVERSION= 1.20151224 +CATEGORIES= databases + +MAINTAINER= ports@toco-domains.de +COMMENT= URI datatype for PostgreSQL + +BUILD_DEPENDS= uriparser>=0.8.0:${PORTSDIR}/net/uriparser +RUN_DEPENDS= uriparser>=0.8.0:${PORTSDIR}/net/uriparser + +USES= gmake pgsql pkgconfig + +USE_GITHUB= yes +GH_ACCOUNT= petere + +PLIST_FILES= lib/postgresql/uri.so share/postgresql/extension/uri--0.sql \ + share/postgresql/extension/uri--1.sql \ + share/postgresql/extension/uri--0--1.sql \ + share/postgresql/extension/uri.control + +post-install: + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/postgresql/uri.so + +.include <bsd.port.mk> Added: head/databases/pguri/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/pguri/distinfo Mon Feb 29 11:00:06 2016 (r409805) @@ -0,0 +1,2 @@ +SHA256 (petere-pguri-1.20151224_GH0.tar.gz) = 259dd485e901b2363342eacbc2b867783cc0da0f12d4bddc1040d0a46fe58c1b +SIZE (petere-pguri-1.20151224_GH0.tar.gz) = 9345 Added: head/databases/pguri/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/pguri/pkg-descr Mon Feb 29 11:00:06 2016 (r409805) @@ -0,0 +1,3 @@ +URI datatype for PostgreSQL + +WWW: https://github.com/petere/pguri Added: head/databases/pguri/pkg-message ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/pguri/pkg-message Mon Feb 29 11:00:06 2016 (r409805) @@ -0,0 +1,3 @@ +In order to use the extension within database execute the following command: + +CREATE EXTENSION uri;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201602291100.u1TB068P012764>