From owner-dev-commits-ports-all@freebsd.org Sun Oct 3 19:41:30 2021 Return-Path: Delivered-To: dev-commits-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 BC4D466DAE7; Sun, 3 Oct 2021 19:41:30 +0000 (UTC) (envelope-from git@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 4HMvNp4lfWz4Rcm; Sun, 3 Oct 2021 19:41:30 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (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 did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 84090396D; Sun, 3 Oct 2021 19:41:30 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 193JfU4B064460; Sun, 3 Oct 2021 19:41:30 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 193JfUcs064459; Sun, 3 Oct 2021 19:41:30 GMT (envelope-from git) Date: Sun, 3 Oct 2021 19:41:30 GMT Message-Id: <202110031941.193JfUcs064459@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: =?utf-8?Q?Fernando Apestegu=C3=ADa?= Subject: git: 54cc4cc6eaed - main - */*: Remove more compiler:openmp instances MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: fernape X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 54cc4cc6eaed14e3d495ca3a3b6f86f3f429b991 Auto-Submitted: auto-generated X-BeenThere: dev-commits-ports-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for all branches of the ports repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Oct 2021 19:41:30 -0000 The branch main has been updated by fernape: URL: https://cgit.FreeBSD.org/ports/commit/?id=54cc4cc6eaed14e3d495ca3a3b6f86f3f429b991 commit 54cc4cc6eaed14e3d495ca3a3b6f86f3f429b991 Author: Fernando ApesteguĂ­a AuthorDate: 2021-10-03 19:35:43 +0000 Commit: Fernando ApesteguĂ­a CommitDate: 2021-10-03 19:41:19 +0000 */*: Remove more compiler:openmp instances Reported by: antoine@ Fixes: 07fb2d5e9d00 --- audio/libsoxr/Makefile | 3 +-- audio/soundtouch/Makefile | 2 +- graphics/colmap/Makefile | 3 +-- graphics/inkscape/Makefile | 3 +-- graphics/libmypaint/Makefile | 2 +- graphics/libraw/Makefile | 2 +- graphics/mypaint/Makefile | 4 +--- graphics/pfstools/Makefile | 4 +--- math/ceres-solver/Makefile | 3 +-- math/fftw3/Makefile | 3 +-- math/metis/Makefile | 3 +-- math/polymake/Makefile | 3 +-- sysutils/b2sum/Makefile | 2 +- 13 files changed, 13 insertions(+), 24 deletions(-) diff --git a/audio/libsoxr/Makefile b/audio/libsoxr/Makefile index c52bb728669b..9d49bbf81319 100644 --- a/audio/libsoxr/Makefile +++ b/audio/libsoxr/Makefile @@ -1,6 +1,6 @@ PORTNAME= libsoxr PORTVERSION= 0.1.3 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= audio MASTER_SITES= SF/soxr DISTNAME= soxr-${PORTVERSION}-Source @@ -36,7 +36,6 @@ SIMD_DFT_DESC= Choice of SIMD DFT library OPENMP_CMAKE_ON= -DWITH_OPENMP:BOOL=ON OPENMP_CMAKE_OFF= -DWITH_OPENMP:BOOL=OFF -OPENMP_USES= compiler:openmp SIMD_CMAKE_OFF= -DWITH_CR32S:BOOL=OFF \ -DWITH_CR64S:BOOL=OFF diff --git a/audio/soundtouch/Makefile b/audio/soundtouch/Makefile index e6b40184ba8b..70f0b6b3cf91 100644 --- a/audio/soundtouch/Makefile +++ b/audio/soundtouch/Makefile @@ -2,6 +2,7 @@ PORTNAME= soundtouch DISTVERSION= 2.2 +PORTREVISION= 1 CATEGORIES= audio MAINTAINER= crees@FreeBSD.org @@ -26,7 +27,6 @@ OPTIONS_DEFAULT_i386= ${MACHINE_CPU:tu:MSSE} INTEGER_SAMPLES_DESC= Use integer sample format INTEGER_SAMPLES_CONFIGURE_ENABLE= integer-samples OPENMP_CONFIGURE_ENABLE=openmp -OPENMP_USES= compiler:openmp SSE_CONFIGURE_ENABLE= x86-optimizations SSE_USES= compiler:c++11-lang diff --git a/graphics/colmap/Makefile b/graphics/colmap/Makefile index 6c828a725960..77e82760f5fe 100644 --- a/graphics/colmap/Makefile +++ b/graphics/colmap/Makefile @@ -1,6 +1,6 @@ PORTNAME= colmap DISTVERSION= 3.6 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= graphics MAINTAINER= ports@FreeBSD.org @@ -45,7 +45,6 @@ DOCS_BUILD_DEPENDS= gmake:devel/gmake \ ${NONEXISTENT}:textproc/py-sphinx_rtd_theme DOCS_PORTDOCS= * -OPENMP_USES= compiler:openmp OPENMP_CMAKE_BOOL= OPENMP_ENABLED .if !exists(/usr/include/omp.h) # XXX ports/199603: LLVM openmp in base doesn't support armv6, armv7 yet diff --git a/graphics/inkscape/Makefile b/graphics/inkscape/Makefile index b1df4cf6ca45..99e9cb531ef5 100644 --- a/graphics/inkscape/Makefile +++ b/graphics/inkscape/Makefile @@ -2,7 +2,7 @@ PORTNAME= inkscape DISTVERSION= 1.1 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= graphics gnome MASTER_SITES= https://inkscape.org/gallery/item/26932/ @@ -77,7 +77,6 @@ DBUS_LIB_DEPENDS= libdbus-glib-1.so:devel/dbus-glib \ GVFS_USE= GNOME=gvfs -OPENMP_USES= compiler:openmp OPENMP_CMAKE_BOOL= WITH_OPENMP POPPLER_DESC= PDF preview rendering diff --git a/graphics/libmypaint/Makefile b/graphics/libmypaint/Makefile index 2823180baf19..15a6abcce2d8 100644 --- a/graphics/libmypaint/Makefile +++ b/graphics/libmypaint/Makefile @@ -1,5 +1,6 @@ PORTNAME= libmypaint DISTVERSION= 1.6.1 +PORTREVISION= 1 CATEGORIES= graphics MASTER_SITES= https://github.com/mypaint/libmypaint/releases/download/v${PORTVERSION}/ @@ -28,6 +29,5 @@ NLS_USE= GNOME=intltool NLS_CONFIGURE_ENABLE= nls i18n OPENMP_CONFIGURE_ENABLE= openmp -OPENMP_USES= compiler:openmp .include diff --git a/graphics/libraw/Makefile b/graphics/libraw/Makefile index 4a78cde5e4ac..a069769d1b24 100644 --- a/graphics/libraw/Makefile +++ b/graphics/libraw/Makefile @@ -2,6 +2,7 @@ PORTNAME= libraw PORTVERSION= 0.20.2 +PORTREVISION= 1 CATEGORIES= graphics MASTER_SITES= http://www.libraw.org/data/ DISTNAME= LibRaw-${PORTVERSION} @@ -37,7 +38,6 @@ LCMS2_LIB_DEPENDS= liblcms2.so:graphics/lcms2 OPENMP_DESC= OpenMP support (implies GCC) OPENMP_CONFIGURE_ENABLE= openmp -OPENMP_USES= compiler:openmp RPIRAW_DESC= Raspberry Pi RAW+JPEG support RPIRAW_CPPFLAGS= -DUSE_6BY9RPI diff --git a/graphics/mypaint/Makefile b/graphics/mypaint/Makefile index 4c764904d93c..1c46580eaa73 100644 --- a/graphics/mypaint/Makefile +++ b/graphics/mypaint/Makefile @@ -3,7 +3,7 @@ PORTNAME= mypaint DISTVERSIONPREFIX=v DISTVERSION= 2.0.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= graphics PATCH_SITES= https://github.com/garynthompson/${PORTNAME}/commit/ @@ -40,8 +40,6 @@ INSTALLS_ICONS= yes OPTIONS_DEFINE= OPENMP OPTIONS_DEFAULT_amd64= OPENMP -OPENMP_USES= compiler:openmp - post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/mypaint/lib/_mypaintlib*.so diff --git a/graphics/pfstools/Makefile b/graphics/pfstools/Makefile index 18993c1fbbfd..b3b29a9530ed 100644 --- a/graphics/pfstools/Makefile +++ b/graphics/pfstools/Makefile @@ -2,7 +2,7 @@ PORTNAME= pfstools DISTVERSION= 2.1.0 -PORTREVISION= 11 +PORTREVISION= 12 CATEGORIES= graphics MASTER_SITES= SF @@ -89,8 +89,6 @@ VIEW_CMAKE_BOOL= WITH_QT VIEW_USES= gl qt:5 VIEW_USE= GL=glut GL=gl,glu QT=core,gui,widgets,buildtools_build,qmake_build -OPENMP_USES= compiler:openmp - .include .if ${PORT_OPTIONS:MIMAGEMAGICK} && !${PORT_OPTIONS:MOPENMP} diff --git a/math/ceres-solver/Makefile b/math/ceres-solver/Makefile index 866e71d8bf1c..af23f75a9712 100644 --- a/math/ceres-solver/Makefile +++ b/math/ceres-solver/Makefile @@ -1,6 +1,6 @@ PORTNAME= ceres-solver DISTVERSION= 2.0.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= math MAINTAINER= ports@FreeBSD.org @@ -49,7 +49,6 @@ GFLAGS_DESC= Google Flags support GFLAGS_LIB_DEPENDS= libgflags.so:devel/gflags GFLAGS_CMAKE_BOOL= GFLAGS -OPENMP_USES= compiler:openmp OPENMP_CMAKE_ON= -DCERES_THREADING_MODEL:STRING="OPENMP" .if !exists(/usr/include/omp.h) # XXX ports/199603: LLVM openmp in base doesn't support armv6, armv7 yet diff --git a/math/fftw3/Makefile b/math/fftw3/Makefile index f1af20256df1..b314c7ac222f 100644 --- a/math/fftw3/Makefile +++ b/math/fftw3/Makefile @@ -2,7 +2,7 @@ PORTNAME= fftw3 DISTVERSION= 3.3.9 -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES= math MASTER_SITES= http://www.fftw.org/ \ ftp://ftp.fftw.org/pub/fftw/ @@ -48,7 +48,6 @@ OPTIONS_SUB= yes G77_WRAPPERS_DESC= Alter Fortran wrappers for use with g77 OPENMP_DESC= Build OpenMP multithreaded libraries -OPENMP_USES= compiler:openmp OPENMP_USES_OFF= compiler:env OPENMP_CONFIGURE_ENABLE= openmp OPENMP_EXTRA_PATCHES= ${FILESDIR}/extrapatch-tests_fftw-bench.c diff --git a/math/metis/Makefile b/math/metis/Makefile index 410a0520e4d3..bca9c8949282 100644 --- a/math/metis/Makefile +++ b/math/metis/Makefile @@ -2,7 +2,7 @@ PORTNAME= metis PORTVERSION= 5.1.0 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= math MASTER_SITES= http://glaros.dtc.umn.edu/gkhome/fetch/sw/metis/ @@ -29,7 +29,6 @@ SHARED_DESC= shared library and dynamically-linked executables STATIC_DESC= libmetis archive OPENMP_CMAKE_BOOL= OPENMP -OPENMP_USES= compiler:openmp SHARED_USE= LDCONFIG=yes diff --git a/math/polymake/Makefile b/math/polymake/Makefile index 36b3127b7bc1..4fe296db40e9 100644 --- a/math/polymake/Makefile +++ b/math/polymake/Makefile @@ -2,7 +2,7 @@ PORTNAME= polymake DISTVERSION= 4.4 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= math MASTER_SITES= https://polymake.org/lib/exe/fetch.php/download/ DISTNAME= ${PORTNAME}-${DISTVERSION}-minimal @@ -111,7 +111,6 @@ NORMALIZ_CONFIGURE_ON= --with-libnormaliz=${LOCALBASE} NORMALIZ_CONFIGURE_OFF= --without-libnormaliz NORMALIZ_LIB_DEPENDS= libnormaliz.so:math/libnormaliz -OPENMP_USES= compiler:openmp OPENMP_CONFIGURE_OFF= --without-openmp PPL_CONFIGURE_ON= --with-ppl=${LOCALBASE} diff --git a/sysutils/b2sum/Makefile b/sysutils/b2sum/Makefile index 2c31a692ea7b..af4af174cdcc 100644 --- a/sysutils/b2sum/Makefile +++ b/sysutils/b2sum/Makefile @@ -1,5 +1,6 @@ PORTNAME= b2sum PORTVERSION= 20190724 +PORTREVISION= 1 CATEGORIES= sysutils security MAINTAINER= sunpoet@FreeBSD.org @@ -23,7 +24,6 @@ OPTIONS_DEFINE= OPENMP OPTIMIZED_CFLAGS SSE OPTIONS_DEFAULT_amd64= SSE SSE_DESC= Use SSE2, SSSE3, SSE4.1, AVX or XOP instructions -OPENMP_USES+= compiler:openmp OPENMP_CFLAGS+= -fopenmp .include