svn commit: r505361 - in head/databases: postgresql95-plperl postgresql95-plpython postgresql96-pltcl
Mathieu Arnold
mat at FreeBSD.org
Sat Jun 29 17:35:24 UTC 2019
Author: mat
Date: Sat Jun 29 17:35:22 2019
New Revision: 505361
URL: https://svnweb.freebsd.org/changeset/ports/505361
Log:
Make sure we don't clobber slave ports' PORTREVISION.
Modified:
head/databases/postgresql95-plperl/Makefile (contents, props changed)
head/databases/postgresql95-plpython/Makefile (contents, props changed)
head/databases/postgresql96-pltcl/Makefile (contents, props changed)
Modified: head/databases/postgresql95-plperl/Makefile
==============================================================================
--- head/databases/postgresql95-plperl/Makefile Sat Jun 29 16:25:14 2019 (r505360)
+++ head/databases/postgresql95-plperl/Makefile Sat Jun 29 17:35:22 2019 (r505361)
@@ -2,7 +2,8 @@
# $FreeBSD$
PORTNAME= postgresql
-PORTREVISION= 0
+# Keep the ?=, this port is used as master by the other plperl.
+PORTREVISION?= 0
CATEGORIES= databases perl5
PKGNAMESUFFIX?= ${WANT_PGSQL_VER:S/.//}${COMPONENT}
Modified: head/databases/postgresql95-plpython/Makefile
==============================================================================
--- head/databases/postgresql95-plpython/Makefile Sat Jun 29 16:25:14 2019 (r505360)
+++ head/databases/postgresql95-plpython/Makefile Sat Jun 29 17:35:22 2019 (r505361)
@@ -2,7 +2,8 @@
PORTNAME= postgresql
CATEGORIES= databases python
-PORTREVISION= 0
+# Keep the ?=, it is used as master by the other plpython ports.
+PORTREVISION?= 0
PKGNAMESUFFIX?= ${WANT_PGSQL_VER:S/.//}${COMPONENT}
MAINTAINER= pgsql at FreeBSD.org
Modified: head/databases/postgresql96-pltcl/Makefile
==============================================================================
--- head/databases/postgresql96-pltcl/Makefile Sat Jun 29 16:25:14 2019 (r505360)
+++ head/databases/postgresql96-pltcl/Makefile Sat Jun 29 17:35:22 2019 (r505361)
@@ -2,7 +2,8 @@
# $FreeBSD$
PORTNAME= postgresql
-PORTREVISION= 0
+# Keep the ?=, it is used by the other pltcl ports.
+PORTREVISION?= 0
CATEGORIES= databases tcl
PKGNAMESUFFIX?= ${WANT_PGSQL_VER:S/.//}${COMPONENT}
More information about the svn-ports-all
mailing list