New port:

pgespresso is an extension to postgresql that adds functions and views
to be used by Barman, the disaster recovery tool

WWW: https://github.com/2ndquadrant-it/pgespresso
This commit is contained in:
Matthew Seaman 2014-12-02 15:37:29 +00:00
parent 8ddd1948e6
commit 0f1c879e37
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=373767
4 changed files with 40 additions and 0 deletions

View file

@ -538,6 +538,7 @@
SUBDIR += pgbadger
SUBDIR += pgbouncer
SUBDIR += pgdbf
SUBDIR += pgespresso
SUBDIR += pgfouine
SUBDIR += pglesslog
SUBDIR += pgloader

View file

@ -0,0 +1,33 @@
# Created by: MAtthew Seaman
# $FreeBSD$
PORTNAME= pgespresso
PORTVERSION= 1.0
CATEGORIES= databases
MAINTAINER= matthew@FreeBSD.org
COMMENT= Optional extension to Barman backup and recovery manager
LICENSE= PostgreSQL
USE_GITHUB= yes
GH_ACCOUNT= 2ndquadrant-it
GH_COMMIT= 5715bb9
USES= gmake pgsql:9.2+
WANT_PGSQL= server
PLIST_FILES= lib/postgresql/pgespresso.so \
share/postgresql/extension/pgespresso--1.0.sql \
share/postgresql/extension/pgespresso.control
PORTDOCS= README.asciidoc
INSTALL_TARGET= install-strip
MAKE_ARGS= INSTALL="${INSTALL} -c"
post-install:
${MKDIR} ${STAGEDIR}${DOCSDIR}/
${INSTALL_MAN} ${WRKSRC}/${PORTDOCS} ${STAGEDIR}${DOCSDIR}/
.include <bsd.port.mk>

View file

@ -0,0 +1,2 @@
SHA256 (pgespresso-1.0.tar.gz) = 45766b7d82962ea9f74f75eb2cf235252c21e0ae842cb81363600c7823fab03d
SIZE (pgespresso-1.0.tar.gz) = 9471

View file

@ -0,0 +1,4 @@
pgespresso is an extension to postgresql that adds functions and views
to be used by Barman, the disaster recovery tool
WWW: https://github.com/2ndquadrant-it/pgespresso