From owner-svn-ports-head@freebsd.org Mon Nov 30 00:27:26 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 30AA8469A1E; Mon, 30 Nov 2020 00:27:26 +0000 (UTC) (envelope-from mandree@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CkmJt0xpJz3rQc; Mon, 30 Nov 2020 00:27:26 +0000 (UTC) (envelope-from mandree@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 0EE551A90E; Mon, 30 Nov 2020 00:27:26 +0000 (UTC) (envelope-from mandree@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0AU0RPwZ060100; Mon, 30 Nov 2020 00:27:25 GMT (envelope-from mandree@FreeBSD.org) Received: (from mandree@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0AU0RP2C060099; Mon, 30 Nov 2020 00:27:25 GMT (envelope-from mandree@FreeBSD.org) Message-Id: <202011300027.0AU0RP2C060099@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mandree set sender to mandree@FreeBSD.org using -f From: Matthias Andree Date: Mon, 30 Nov 2020 00:27:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r556606 - head/graphics/openimageio X-SVN-Group: ports-head X-SVN-Commit-Author: mandree X-SVN-Commit-Paths: head/graphics/openimageio X-SVN-Commit-Revision: 556606 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2020 00:27:26 -0000 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