svn commit: r464989 - in head/databases: . py-pum

Yuri Victorovich yuri at FreeBSD.org
Mon Mar 19 06:51:50 UTC 2018


Author: yuri
Date: Mon Mar 19 06:51:48 2018
New Revision: 464989
URL: https://svnweb.freebsd.org/changeset/ports/464989

Log:
  New port: databases/py-pum: Postgres upgrade manager
  
  PR:		225756
  Submitted by:	lbartoletti at tuxfamily.org

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

Modified: head/databases/Makefile
==============================================================================
--- head/databases/Makefile	Mon Mar 19 06:47:05 2018	(r464988)
+++ head/databases/Makefile	Mon Mar 19 06:51:48 2018	(r464989)
@@ -811,6 +811,7 @@
     SUBDIR += py-psycogreen
     SUBDIR += py-psycopg2
     SUBDIR += py-psycopg2cffi
+    SUBDIR += py-pum
     SUBDIR += py-pyPgSQL
     SUBDIR += py-pyhs
     SUBDIR += py-pylibmc

Added: head/databases/py-pum/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/py-pum/Makefile	Mon Mar 19 06:51:48 2018	(r464989)
@@ -0,0 +1,21 @@
+# $FreeBSD$
+
+PORTNAME=	pum
+DISTVERSION=	0.5.11
+CATEGORIES=	databases python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	lbartoletti at tuxfamily.org
+COMMENT=	Postgres upgrade manager
+
+LICENSE=	GPLv2
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}psycopg2>=2.7.3:databases/py-psycopg2@${FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}yaml>0:devel/py-yaml@${FLAVOR}
+
+USES=		python:3.4+
+USE_PYTHON=	distutils concurrent autoplist
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/databases/py-pum/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/py-pum/distinfo	Mon Mar 19 06:51:48 2018	(r464989)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1521441704
+SHA256 (pum-0.5.11.tar.gz) = db5f1b9904b1ab59453daa6bc8eb14bcca0c58086af4b26175883b4202839e8e
+SIZE (pum-0.5.11.tar.gz) = 15943

Added: head/databases/py-pum/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/py-pum/pkg-descr	Mon Mar 19 06:51:48 2018	(r464989)
@@ -0,0 +1,17 @@
+Acronym stands for "Postgres Upgrades Manager". It is a database migration
+management tool very similar to flyway-db or Liquibase, based on metadata
+tables.
+
+Pum is python program that can be used via command line or directly from
+another python program.
+
+Pum permits the followings operations on Postgres databases:
+
+  - check the differences between two databases
+  - create a backup (dump file) of a database
+  - restore a database from a backup
+  - upgrade a database applying delta files
+
+and some other useful operations.
+
+WWW: https://github.com/opengisch/pum


More information about the svn-ports-all mailing list