svn commit: r497037 - head/databases/postgresql11-server

Mathieu Arnold mat at FreeBSD.org
Thu Mar 28 17:33:09 UTC 2019


Author: mat
Date: Thu Mar 28 17:33:07 2019
New Revision: 497037
URL: https://svnweb.freebsd.org/changeset/ports/497037

Log:
  In a master port, PORTREVISION must be overridable, otherwise, all hell
  breaks loose.

Modified:
  head/databases/postgresql11-server/Makefile   (contents, props changed)

Modified: head/databases/postgresql11-server/Makefile
==============================================================================
--- head/databases/postgresql11-server/Makefile	Thu Mar 28 17:33:06 2019	(r497036)
+++ head/databases/postgresql11-server/Makefile	Thu Mar 28 17:33:07 2019	(r497037)
@@ -3,7 +3,9 @@
 
 PORTNAME?=	postgresql
 DISTVERSION?=	11.2
-PORTREVISION=	1
+# PORTREVISION must be ?= otherwise, all other port get this PORTREVISION and
+# not their own.  Probably best to keep it at ?=0 when reset here too.
+PORTREVISION?=	1
 CATEGORIES?=	databases
 MASTER_SITES=	PGSQL/source/v${DISTVERSION}
 PKGNAMESUFFIX?= ${PORTVERSION:R}${COMPONENT}


More information about the svn-ports-all mailing list