svn commit: r556606 - head/graphics/openimageio
Matthias Andree
mandree at FreeBSD.org
Mon Nov 30 00:27:26 UTC 2020
Author: mandree
Date: Mon Nov 30 00:27:25 2020
New Revision: 556606
URL: https://svnweb.freebsd.org/changeset/ports/556606
Log:
openimageio: fix py-openimageio's version going backwards
When yuri@'s commit http://svnweb.freebsd.org/changeset/ports/555420
bumped openimageio's version, the Makefile was seeing PORTREVISION=1,
but there is a derived port, py-openimageio, which also .include-s
openimageio's Makefile.
Change this main port to set its PORTREVISION with ?= and add a
comment to remind editors.
Approved by: portmgr@ (blanket, trivial regression fix)
Modified:
head/graphics/openimageio/Makefile
Modified: head/graphics/openimageio/Makefile
==============================================================================
--- head/graphics/openimageio/Makefile Sun Nov 29 23:58:56 2020 (r556605)
+++ head/graphics/openimageio/Makefile Mon Nov 30 00:27:25 2020 (r556606)
@@ -4,7 +4,11 @@
PORTNAME= openimageio
DISTVERSIONPREFIX= Release-
DISTVERSION= 2.2.6.1
-PORTREVISION= 1
+# PORTREVISION must be set with ?= so as not to stomp over
+# py-openimageio's PORTREVISION.
+# Also, just to be on the safe side, when resetting,
+# best keep PORTREVISION?= 0.
+PORTREVISION?= 1
CATEGORIES?= graphics multimedia
MAINTAINER?= FreeBSD at Shaneware.biz
More information about the svn-ports-head
mailing list