View | Details | Raw Unified | Return to bug 239559
Collapse All | Expand All

(-)databases/Makefile (+1 lines)
Lines 577-582 Link Here
577
    SUBDIR += pg_citus
577
    SUBDIR += pg_citus
578
    SUBDIR += pg_dirtyread
578
    SUBDIR += pg_dirtyread
579
    SUBDIR += pg_partman
579
    SUBDIR += pg_partman
580
    SUBDIR += pg_probackup
580
    SUBDIR += pg_qualstats
581
    SUBDIR += pg_qualstats
581
    SUBDIR += pg_reorg
582
    SUBDIR += pg_reorg
582
    SUBDIR += pg_repack
583
    SUBDIR += pg_repack
(-)databases/pg_probackup/Makefile (+26 lines)
Line 0 Link Here
1
# $FreeBSD$
2
3
PORTNAME=	pg_probackup
4
PORTVERSION=	2.1.5
5
PG_VERSION=	11.4
6
CATEGORIES=	databases
7
MASTER_SITES+=	PGSQL/source/v${PG_VERSION}:pgsrc
8
DISTFILES+=	postgresql-${PG_VERSION}.tar.bz2:pgsrc
9
DIST_SUBDIR=	postgresql
10
11
MAINTAINER=	mizhka@freebsd.org
12
COMMENT=	PostgreSQL server backup manager
13
14
LICENSE=	PostgreSQL
15
LICENSE_FILE=	${WRKSRC}/LICENSE
16
17
USES=		gmake pgsql:11
18
19
USE_GITHUB=	yes
20
GH_ACCOUNT=	postgrespro
21
22
MAKE_ARGS+=	USE_PGXS=1 top_srcdir=${WRKDIR}/postgresql-${PG_VERSION}/
23
24
PLIST_FILES=	bin/${PORTNAME}
25
26
.include <bsd.port.mk>
(-)databases/pg_probackup/distinfo (+5 lines)
Line 0 Link Here
1
TIMESTAMP = 1564579120
2
SHA256 (postgresql/postgresql-11.4.tar.bz2) = 02802ddffd1590805beddd1e464dd28a46a41a5f1e1df04bab4f46663195cc8b
3
SIZE (postgresql/postgresql-11.4.tar.bz2) = 19759635
4
SHA256 (postgresql/postgrespro-pg_probackup-2.1.5_GH0.tar.gz) = 456a6c1ce8daf88d900180cc0808bf83297d9708044dc1e7345e7ffe381bc46b
5
SIZE (postgresql/postgrespro-pg_probackup-2.1.5_GH0.tar.gz) = 275253
(-)databases/pg_probackup/pkg-descr (+5 lines)
Line 0 Link Here
1
A utility to manage backup and recovery of PostgreSQL database clusters.
2
It is designed to perform periodic backups of the PostgreSQL instance
3
that enable you to restore the server in case of a failure.
4
5
WWW: https://github.com/postgrespro/pg_probackup

Return to bug 239559