1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-28 05:29:48 +00:00

Add databases/pg_ed25519, PostgreSQL extension for ed25519 sign and verify

PR:		239708
Submitted by:	Dmitry Wagin <dmitry.wagin@ya.ru>
This commit is contained in:
Li-Wen Hsu 2020-06-03 03:51:30 +00:00
parent b6c421350e
commit 5183301e80
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=537591
4 changed files with 34 additions and 0 deletions

View File

@ -555,6 +555,7 @@
SUBDIR += pg_activity
SUBDIR += pg_citus
SUBDIR += pg_dirtyread
SUBDIR += pg_ed25519
SUBDIR += pg_partman
SUBDIR += pg_qualstats
SUBDIR += pg_reorg

View File

@ -0,0 +1,27 @@
# $FreeBSD$
PORTNAME= pg_ed25519
PORTVERSION= 0.2
CATEGORIES= databases
MAINTAINER= dmitry.wagin@ya.ru
COMMENT= PostgreSQL extension for ed25519 sign and verify
LICENSE= MIT
USES= gmake pgsql:9.4+
LLD_UNSAFE= yes
WANT_PGSQL= server
USE_GITLAB= yes
GL_ACCOUNT= dwagin
GL_COMMIT= 203944dbd3444257490eb30d2f6363e391a23a6b
PLIST_FILES= lib/postgresql/pg_ed25519.so \
share/postgresql/extension/pg_ed25519--${PORTVERSION}.sql \
share/postgresql/extension/pg_ed25519.control
post-install:
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/postgresql/pg_ed25519.so
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1564654456
SHA256 (dwagin-pg_ed25519-203944dbd3444257490eb30d2f6363e391a23a6b_GL0.tar.gz) = b8d98ffd621e95a22a6095d365a26c6c2ee7ebc3ae8d18d35cf19b6d56dccf71
SIZE (dwagin-pg_ed25519-203944dbd3444257490eb30d2f6363e391a23a6b_GL0.tar.gz) = 63934

View File

@ -0,0 +1,3 @@
PostgreSQL extension for ed25519 sign and verify.
WWW: https://gitlab.com/dwagin/pg_ed25519