Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 30 Nov 2020 00:27:25 +0000 (UTC)
From:      Matthias Andree <mandree@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r556606 - head/graphics/openimageio
Message-ID:  <202011300027.0AU0RP2C060099@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@Shaneware.biz



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202011300027.0AU0RP2C060099>