Date: Thu, 28 Mar 2019 17:33:08 +0000 (UTC) From: Mathieu Arnold <mat@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r497037 - head/databases/postgresql11-server Message-ID: <201903281733.x2SHX8Mf082385@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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}
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201903281733.x2SHX8Mf082385>