svn commit: r568089 - in head/databases: . pg_hashids

Vanilla I. Shu vanilla at FreeBSD.org
Thu Mar 11 13:06:37 UTC 2021


Author: vanilla
Date: Thu Mar 11 13:06:35 2021
New Revision: 568089
URL: https://svnweb.freebsd.org/changeset/ports/568089

Log:
  Add pg_hashids 1.3, postgreSQL extension for generates short, unique,
  non-sequential ids from numbers.
  
  PR:		254180
  Submitted by:	dmitry.wagin at ya.ru

Added:
  head/databases/pg_hashids/
  head/databases/pg_hashids/Makefile   (contents, props changed)
  head/databases/pg_hashids/distinfo   (contents, props changed)
  head/databases/pg_hashids/pkg-descr   (contents, props changed)
Modified:
  head/databases/Makefile

Modified: head/databases/Makefile
==============================================================================
--- head/databases/Makefile	Thu Mar 11 12:41:20 2021	(r568088)
+++ head/databases/Makefile	Thu Mar 11 13:06:35 2021	(r568089)
@@ -567,6 +567,7 @@
     SUBDIR += pg_citus
     SUBDIR += pg_dirtyread
     SUBDIR += pg_ed25519
+    SUBDIR += pg_hashids
     SUBDIR += pg_partman
     SUBDIR += pg_qualstats
     SUBDIR += pg_reorg

Added: head/databases/pg_hashids/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/pg_hashids/Makefile	Thu Mar 11 13:06:35 2021	(r568089)
@@ -0,0 +1,32 @@
+# $FreeBSD$
+
+PORTNAME=	pg_hashids
+PORTVERSION=	1.3
+CATEGORIES=	databases
+
+MAINTAINER=	dmitry.wagin at ya.ru
+COMMENT=	PostgreSQL extension for generates short, unique, non-sequential ids from numbers
+
+LICENSE=	MIT
+
+USES=		gmake pgsql:9.6+
+WANT_PGSQL=	server
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	iCyberon
+GH_TAGNAME=	83398bcb
+
+LLD_UNSAFE=	yes
+
+PLIST_FILES=	lib/postgresql/${PORTNAME}.so \
+		share/postgresql/extension/${PORTNAME}--${PORTVERSION}.sql \
+		share/postgresql/extension/${PORTNAME}--1.0--1.1.sql \
+		share/postgresql/extension/${PORTNAME}--1.1--1.2.sql \
+		share/postgresql/extension/${PORTNAME}--1.2--${PORTVERSION}.sql \
+		share/postgresql/extension/${PORTNAME}--1.2.1--${PORTVERSION}.sql \
+		share/postgresql/extension/${PORTNAME}.control
+
+post-install:
+	${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/postgresql/${PORTNAME}.so
+
+.include <bsd.port.mk>

Added: head/databases/pg_hashids/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/pg_hashids/distinfo	Thu Mar 11 13:06:35 2021	(r568089)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1589651186
+SHA256 (iCyberon-pg_hashids-1.3-83398bcb_GH0.tar.gz) = c113cca19288a3b313ac3695140ac1b42b889aa9a62a436b374a4b87a7ac8fa1
+SIZE (iCyberon-pg_hashids-1.3-83398bcb_GH0.tar.gz) = 10956

Added: head/databases/pg_hashids/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/pg_hashids/pkg-descr	Thu Mar 11 13:06:35 2021	(r568089)
@@ -0,0 +1,4 @@
+PostgreSQL extension for generates short, unique,
+non-sequential ids from numbers.
+
+WWW: https://github.com/iCyberon/pg_hashids


More information about the svn-ports-head mailing list