From owner-svn-ports-all@freebsd.org Fri Jan 22 11:27:44 2021 Return-Path: Delivered-To: svn-ports-all@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 7D81B4F16CE; Fri, 22 Jan 2021 11:27:44 +0000 (UTC) (envelope-from martymac@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 "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4DMcSJ36nLz4ktP; Fri, 22 Jan 2021 11:27:44 +0000 (UTC) (envelope-from martymac@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 534AE1D95E; Fri, 22 Jan 2021 11:27:44 +0000 (UTC) (envelope-from martymac@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 10MBRi1i087708; Fri, 22 Jan 2021 11:27:44 GMT (envelope-from martymac@FreeBSD.org) Received: (from martymac@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 10MBRhV8087705; Fri, 22 Jan 2021 11:27:43 GMT (envelope-from martymac@FreeBSD.org) Message-Id: <202101221127.10MBRhV8087705@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: martymac set sender to martymac@FreeBSD.org using -f From: Ganael LAPLANCHE Date: Fri, 22 Jan 2021 11:27:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r562296 - in head/graphics: opencv opencv-core opencv-java py-opencv X-SVN-Group: ports-head X-SVN-Commit-Author: martymac X-SVN-Commit-Paths: in head/graphics: opencv opencv-core opencv-java py-opencv X-SVN-Commit-Revision: 562296 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Jan 2021 11:27:44 -0000 Author: martymac Date: Fri Jan 22 11:27:43 2021 New Revision: 562296 URL: https://svnweb.freebsd.org/changeset/ports/562296 Log: Opencv ports: remove TBB option to facilitate oneTbb transition PR: 252785 Submitted by: martymac Approved by: tcberner (maintainer) Modified: head/graphics/opencv-core/Makefile head/graphics/opencv-java/Makefile head/graphics/opencv/Makefile head/graphics/py-opencv/Makefile Modified: head/graphics/opencv-core/Makefile ============================================================================== --- head/graphics/opencv-core/Makefile Fri Jan 22 11:13:59 2021 (r562295) +++ head/graphics/opencv-core/Makefile Fri Jan 22 11:27:43 2021 (r562296) @@ -1,7 +1,7 @@ # Created by: Martin Matuska # $FreeBSD$ -PORTREVISION= 3 +PORTREVISION= 4 PKGNAMESUFFIX= -${OCV_SLAVE} COMMENT= OpenCV core libraries Modified: head/graphics/opencv-java/Makefile ============================================================================== --- head/graphics/opencv-java/Makefile Fri Jan 22 11:13:59 2021 (r562295) +++ head/graphics/opencv-java/Makefile Fri Jan 22 11:27:43 2021 (r562296) @@ -1,6 +1,6 @@ # $FreeBSD$ -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= graphics java PKGNAMESUFFIX= -${OCV_SLAVE} Modified: head/graphics/opencv/Makefile ============================================================================== --- head/graphics/opencv/Makefile Fri Jan 22 11:13:59 2021 (r562295) +++ head/graphics/opencv/Makefile Fri Jan 22 11:27:43 2021 (r562296) @@ -3,7 +3,7 @@ PORTNAME= opencv PORTVERSION= 3.4.1 -PORTREVISION= 38 +PORTREVISION= 39 CATEGORIES= graphics MAINTAINER= tcberner@FreeBSD.org @@ -155,7 +155,7 @@ OCV_PYTHON_MODS= python${PYTHON_MAJOR_VER} OPTIONS_DEFINE= EXAMPLES EXTRA_MODULES OPENGL GTK2 OPTIONS_GROUP= PERFORMANCE IMAGE VIDEO -OPTIONS_GROUP_PERFORMANCE= EIGEN3 OPENCL TBB +OPTIONS_GROUP_PERFORMANCE= EIGEN3 OPENCL # TBB OPTIONS_GROUP_IMAGE= GDAL GDCM JASPER JPEG OPENEXR PNG TIFF WEBP OPTIONS_GROUP_VIDEO= ARAVIS DC1394 FFMPEG GPHOTO2 GSTREAMER MFX V4L XINE # EXTRA_MODULES required for libopencv_dnn which is required by py-opencv @@ -190,6 +190,7 @@ OPENCL_CMAKE_BOOL= WITH_OPENCL TBB_DESC= TBB support TBB_LIB_DEPENDS= libtbb.so:devel/tbb TBB_CMAKE_BOOL= WITH_TBB +TBB_BROKEN= Not oneTBB-compatible IMAGE_DESC= Image format support Modified: head/graphics/py-opencv/Makefile ============================================================================== --- head/graphics/py-opencv/Makefile Fri Jan 22 11:13:59 2021 (r562295) +++ head/graphics/py-opencv/Makefile Fri Jan 22 11:27:43 2021 (r562296) @@ -1,7 +1,7 @@ # Created by: Martin Matuska # $FreeBSD$ -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= graphics python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}