public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: sci-libs/oce/
@ 2018-09-07  3:03 Virgil Dupras
  0 siblings, 0 replies; 8+ messages in thread
From: Virgil Dupras @ 2018-09-07  3:03 UTC (permalink / raw
  To: gentoo-commits

commit:     9ba46ea66636e99b46879d180922113a194aed20
Author:     Zoltan Puskas <zoltan <AT> sinustrom <DOT> info>
AuthorDate: Wed Aug  1 05:22:48 2018 +0000
Commit:     Virgil Dupras <vdupras <AT> gentoo <DOT> org>
CommitDate: Fri Sep  7 00:55:58 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ba46ea6

sci-libs/oce: Add OCE-0.18.3 ebuild to tree to satisfy KiCAD-5.0.0 dependency

Bug: https://bugs.gentoo.org/661350

 sci-libs/oce/Manifest          |  1 +
 sci-libs/oce/metadata.xml      | 22 ++++++++++++
 sci-libs/oce/oce-0.18.3.ebuild | 76 ++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 99 insertions(+)

diff --git a/sci-libs/oce/Manifest b/sci-libs/oce/Manifest
new file mode 100644
index 00000000000..07ffde282d2
--- /dev/null
+++ b/sci-libs/oce/Manifest
@@ -0,0 +1 @@
+DIST OCE-0.18.3.tar.gz 24633768 BLAKE2B c1923fb6310ea30318251fedac371655a575bf4dfcc4c38e7c748d316416e08c33a3f27bd5db7f5b437265cf2f518651d69a6920f9f487dc7e0065a6406c653f SHA512 6fdeb6ca4ce25361379872ccc465799d4a43407974c4f626b32df695e582b9e553cce17af6a6a7ff46ebed9b813d910ad23eb308a5356dabb9b9bbd4f42a8636

diff --git a/sci-libs/oce/metadata.xml b/sci-libs/oce/metadata.xml
new file mode 100644
index 00000000000..fe5bc3187c0
--- /dev/null
+++ b/sci-libs/oce/metadata.xml
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>zoltan@sinustrom.info</email>
+		<name>Zoltan Puskas</name>
+	</maintainer>
+	<maintainer type="project">
+		<email>proxy-maint@gentoo.org</email>
+		<name>Proxy Maintainers</name>
+	</maintainer>
+	<longdescription lang="en">
+		oce is a C++ 3D modeling library. It can be used to develop CAD/CAM 
+		softwares. oce stands for opencascade community edition. This project
+		aims at gathering patches/ changes/ improvements from the OCC community.
+	</longdescription>
+<use>
+	<flag name="freeimage">Enable support for image i/o via media-libs/freeimage</flag>
+	<flag name="gl2ps">Use gl2ps PostScript printing library</flag>
+	<flag name="tbb">Enable parallel meshing</flag>
+	<flag name="vtk">Enable Virtualisation Toolkit</flag></use>
+</pkgmetadata>

diff --git a/sci-libs/oce/oce-0.18.3.ebuild b/sci-libs/oce/oce-0.18.3.ebuild
new file mode 100644
index 00000000000..90829fcdfbb
--- /dev/null
+++ b/sci-libs/oce/oce-0.18.3.ebuild
@@ -0,0 +1,76 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit cmake-utils eutils check-reqs multilib java-pkg-opt-2
+
+DESCRIPTION="Development platform for CAD/CAE, 3D surface/solid modeling and data exchange"
+HOMEPAGE="https://github.com/tpaviot/oce"
+SRC_URI="https://github.com/tpaviot/oce/archive/OCE-$PV.tar.gz"
+
+LICENSE="|| ( Open-CASCADE-LGPL-2.1-Exception-1.0 LGPL-2.1 )"
+SLOT="${PV}"
+KEYWORDS="~amd64"
+IUSE="examples freeimage gl2ps +openmp tbb vtk"
+REQUIRED_USE="?? ( openmp tbb )"
+
+MY_P="oce-OCE-${PV}"
+S="${WORKDIR}/${MY_P}"
+DEPEND="
+	dev-lang/tcl:0=
+	dev-lang/tk:0=
+	dev-tcltk/itcl
+	dev-tcltk/itk
+	dev-tcltk/tix
+	media-libs/ftgl
+	media-libs/freetype
+	virtual/glu
+	virtual/opengl
+	x11-libs/libXmu
+	freeimage? ( media-libs/freeimage )
+	gl2ps? ( x11-libs/gl2ps )
+	tbb? ( dev-cpp/tbb )
+	vtk? ( =sci-libs/vtk-8.1*[boost,imaging,qt5,python,rendering,views,xdmf2] )"
+RDEPEND="${DEPEND}"
+
+CHECKREQS_MEMORY="256M"
+CHECKREQS_DISK_BUILD="3584M"
+
+pkg_setup() {
+	check-reqs_pkg_setup
+}
+
+src_prepare() {
+	cmake-utils_src_prepare
+}
+
+src_configure() {
+	# From BUILD.Unix.md
+	local mycmakeargs=(
+		-DOCE_INSTALL_PREFIX="/usr"
+		-DOCE_ENABLE_DEB_FLAG=off
+		-DOCE_COPY_HEADERS_BUILD=yes
+		-DOCE_DRAW=yes
+		-DOCE_WITH_FREEIMAGE=$(usex freeimage)
+		-DOCE_WITH_GL2PS=$(usex gl2ps)
+		-DOCE_WITH_VTK=$(usex vtk)
+	)
+	# Mutual exclusion of tbb and openmp flags is guaranteed by REQUIRED_USE.
+	use tbb && mycmakeargs+=(
+		-DOCE_MULTITHREAD_LIBRARY="TBB"
+	)
+	use openmp && mycmakeargs+=(
+		-DOCE_MULTITHREAD_LIBRARY="OPENMP"
+	)
+	cmake-utils_src_configure
+}
+
+src_install() {
+	cmake-utils_src_install
+
+	# If user asked for samples let's copy them to the docs folder
+	if use examples ; then
+		dodoc -r samples
+	fi
+}


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sci-libs/oce/
@ 2018-09-12 14:39 Thomas Deutschmann
  0 siblings, 0 replies; 8+ messages in thread
From: Thomas Deutschmann @ 2018-09-12 14:39 UTC (permalink / raw
  To: gentoo-commits

commit:     5b4503d02548ea695ca02edeeb4d63f533b9d8b4
Author:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 12 14:39:30 2018 +0000
Commit:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Wed Sep 12 14:39:30 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b4503d0

sci-libs/oce: x86 keyworded (bug #665432)

Package-Manager: Portage-2.3.49, Repoman-2.3.10

 sci-libs/oce/oce-0.18.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-libs/oce/oce-0.18.3.ebuild b/sci-libs/oce/oce-0.18.3.ebuild
index 90829fcdfbb..69c85c7057f 100644
--- a/sci-libs/oce/oce-0.18.3.ebuild
+++ b/sci-libs/oce/oce-0.18.3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/tpaviot/oce/archive/OCE-$PV.tar.gz"
 
 LICENSE="|| ( Open-CASCADE-LGPL-2.1-Exception-1.0 LGPL-2.1 )"
 SLOT="${PV}"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~x86"
 IUSE="examples freeimage gl2ps +openmp tbb vtk"
 REQUIRED_USE="?? ( openmp tbb )"
 


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sci-libs/oce/
@ 2020-06-06 13:17 Andreas Sturmlechner
  0 siblings, 0 replies; 8+ messages in thread
From: Andreas Sturmlechner @ 2020-06-06 13:17 UTC (permalink / raw
  To: gentoo-commits

commit:     df6ef388f73ffe6d1d89e4f64d1b689da5c675eb
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sat Jun  6 12:47:45 2020 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Jun  6 13:17:01 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df6ef388

sci-libs/oce: Use cmake.eclass, EAPI-7, unused eclass, unrestrict VTK

Package-Manager: Portage-2.3.100, Repoman-2.3.22
RepoMan-Options: --force
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 sci-libs/oce/oce-0.18.3-r2.ebuild | 78 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 78 insertions(+)

diff --git a/sci-libs/oce/oce-0.18.3-r2.ebuild b/sci-libs/oce/oce-0.18.3-r2.ebuild
new file mode 100644
index 00000000000..1ff4e66c4a6
--- /dev/null
+++ b/sci-libs/oce/oce-0.18.3-r2.ebuild
@@ -0,0 +1,78 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake check-reqs java-pkg-opt-2
+
+DESCRIPTION="Development platform for CAD/CAE, 3D surface/solid modeling and data exchange"
+HOMEPAGE="https://github.com/tpaviot/oce"
+SRC_URI="https://github.com/tpaviot/oce/archive/OCE-$PV.tar.gz"
+
+LICENSE="|| ( Open-CASCADE-LGPL-2.1-Exception-1.0 LGPL-2.1 )"
+SLOT="${PV}"
+KEYWORDS="~amd64 ~x86"
+IUSE="examples freeimage gl2ps +openmp tbb vtk"
+REQUIRED_USE="?? ( openmp tbb )"
+
+DEPEND="
+	dev-lang/tcl:0=
+	dev-lang/tk:0=
+	dev-tcltk/itcl
+	dev-tcltk/itk
+	dev-tcltk/tix
+	media-libs/ftgl
+	media-libs/freetype
+	virtual/glu
+	virtual/opengl
+	x11-libs/libXmu
+	freeimage? ( media-libs/freeimage )
+	gl2ps? ( x11-libs/gl2ps )
+	tbb? ( dev-cpp/tbb )
+	vtk? ( =sci-libs/vtk-8*[boost,imaging,qt5,python,rendering,views,xdmf2] )"
+RDEPEND="${DEPEND}"
+
+CHECKREQS_MEMORY="256M"
+CHECKREQS_DISK_BUILD="3584M"
+
+PATCHES=( "${FILESDIR}"/"${P}-test-fix.patch" )
+
+S="${WORKDIR}/oce-OCE-${PV}"
+
+pkg_setup() {
+	check-reqs_pkg_setup
+}
+
+src_prepare() {
+	cmake_src_prepare
+}
+
+src_configure() {
+	# From BUILD.Unix.md
+	local mycmakeargs=(
+		-DOCE_INSTALL_PREFIX="/usr"
+		-DOCE_ENABLE_DEB_FLAG=off
+		-DOCE_COPY_HEADERS_BUILD=yes
+		-DOCE_DRAW=yes
+		-DOCE_WITH_FREEIMAGE=$(usex freeimage)
+		-DOCE_WITH_GL2PS=$(usex gl2ps)
+		-DOCE_WITH_VTK=$(usex vtk)
+	)
+	# Mutual exclusion of tbb and openmp flags is guaranteed by REQUIRED_USE.
+	use tbb && mycmakeargs+=(
+		-DOCE_MULTITHREAD_LIBRARY="TBB"
+	)
+	use openmp && mycmakeargs+=(
+		-DOCE_MULTITHREAD_LIBRARY="OPENMP"
+	)
+	cmake_src_configure
+}
+
+src_install() {
+	cmake_src_install
+
+	# If user asked for samples let's copy them to the docs folder
+	if use examples ; then
+		dodoc -r samples
+	fi
+}


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sci-libs/oce/
@ 2020-06-06 13:17 Andreas Sturmlechner
  0 siblings, 0 replies; 8+ messages in thread
From: Andreas Sturmlechner @ 2020-06-06 13:17 UTC (permalink / raw
  To: gentoo-commits

commit:     cfd87a58e6946e4626b3cfaf5a7218a3c943f8b9
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sat Jun  6 12:48:18 2020 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Jun  6 13:17:01 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cfd87a58

sci-libs/oce: Drop 0.18.3-r1

Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 sci-libs/oce/oce-0.18.3-r1.ebuild | 78 ---------------------------------------
 1 file changed, 78 deletions(-)

diff --git a/sci-libs/oce/oce-0.18.3-r1.ebuild b/sci-libs/oce/oce-0.18.3-r1.ebuild
deleted file mode 100644
index 0835a64d2bf..00000000000
--- a/sci-libs/oce/oce-0.18.3-r1.ebuild
+++ /dev/null
@@ -1,78 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit cmake-utils eutils check-reqs multilib java-pkg-opt-2
-
-DESCRIPTION="Development platform for CAD/CAE, 3D surface/solid modeling and data exchange"
-HOMEPAGE="https://github.com/tpaviot/oce"
-SRC_URI="https://github.com/tpaviot/oce/archive/OCE-$PV.tar.gz"
-
-LICENSE="|| ( Open-CASCADE-LGPL-2.1-Exception-1.0 LGPL-2.1 )"
-SLOT="${PV}"
-KEYWORDS="~amd64 ~x86"
-IUSE="examples freeimage gl2ps +openmp tbb vtk"
-REQUIRED_USE="?? ( openmp tbb )"
-
-MY_P="oce-OCE-${PV}"
-S="${WORKDIR}/${MY_P}"
-DEPEND="
-	dev-lang/tcl:0=
-	dev-lang/tk:0=
-	dev-tcltk/itcl
-	dev-tcltk/itk
-	dev-tcltk/tix
-	media-libs/ftgl
-	media-libs/freetype
-	virtual/glu
-	virtual/opengl
-	x11-libs/libXmu
-	freeimage? ( media-libs/freeimage )
-	gl2ps? ( x11-libs/gl2ps )
-	tbb? ( dev-cpp/tbb )
-	vtk? ( =sci-libs/vtk-8.1*[boost,imaging,qt5,python,rendering,views,xdmf2] )"
-RDEPEND="${DEPEND}"
-
-CHECKREQS_MEMORY="256M"
-CHECKREQS_DISK_BUILD="3584M"
-
-PATCHES=( "${FILESDIR}"/"${P}-test-fix.patch" )
-
-pkg_setup() {
-	check-reqs_pkg_setup
-}
-
-src_prepare() {
-	cmake-utils_src_prepare
-}
-
-src_configure() {
-	# From BUILD.Unix.md
-	local mycmakeargs=(
-		-DOCE_INSTALL_PREFIX="/usr"
-		-DOCE_ENABLE_DEB_FLAG=off
-		-DOCE_COPY_HEADERS_BUILD=yes
-		-DOCE_DRAW=yes
-		-DOCE_WITH_FREEIMAGE=$(usex freeimage)
-		-DOCE_WITH_GL2PS=$(usex gl2ps)
-		-DOCE_WITH_VTK=$(usex vtk)
-	)
-	# Mutual exclusion of tbb and openmp flags is guaranteed by REQUIRED_USE.
-	use tbb && mycmakeargs+=(
-		-DOCE_MULTITHREAD_LIBRARY="TBB"
-	)
-	use openmp && mycmakeargs+=(
-		-DOCE_MULTITHREAD_LIBRARY="OPENMP"
-	)
-	cmake-utils_src_configure
-}
-
-src_install() {
-	cmake-utils_src_install
-
-	# If user asked for samples let's copy them to the docs folder
-	if use examples ; then
-		dodoc -r samples
-	fi
-}


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sci-libs/oce/
@ 2021-02-22 18:57 Sam James
  0 siblings, 0 replies; 8+ messages in thread
From: Sam James @ 2021-02-22 18:57 UTC (permalink / raw
  To: gentoo-commits

commit:     fb3929baa616d55a0b6c12f5e4d3a12f4cfd92fe
Author:     Roy Bamford <neddyseagoon <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 15 15:07:51 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Feb 22 18:55:37 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb3929ba

sci-libs/oce: added ~arm64

Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Roy Bamford <neddyseagoon <AT> gentoo.org>
Signed-off-by: Sam James <sam <AT> gentoo.org>

 sci-libs/oce/oce-0.18.3-r2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sci-libs/oce/oce-0.18.3-r2.ebuild b/sci-libs/oce/oce-0.18.3-r2.ebuild
index 1ff4e66c4a6..11a072de0d6 100644
--- a/sci-libs/oce/oce-0.18.3-r2.ebuild
+++ b/sci-libs/oce/oce-0.18.3-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/tpaviot/oce/archive/OCE-$PV.tar.gz"
 
 LICENSE="|| ( Open-CASCADE-LGPL-2.1-Exception-1.0 LGPL-2.1 )"
 SLOT="${PV}"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~x86"
 IUSE="examples freeimage gl2ps +openmp tbb vtk"
 REQUIRED_USE="?? ( openmp tbb )"
 


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sci-libs/oce/
@ 2021-04-03 15:44 Sam James
  0 siblings, 0 replies; 8+ messages in thread
From: Sam James @ 2021-04-03 15:44 UTC (permalink / raw
  To: gentoo-commits

commit:     756b5f2daed4f3e421e74e57e2aa7e1d2e7b5db0
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Apr  2 09:53:02 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Apr  3 15:43:46 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=756b5f2d

sci-libs/oce: fix variable references

Package-Manager: Portage-3.0.14-prefix, Repoman-3.0.2
Signed-off-by: Sam James <sam <AT> gentoo.org>

 sci-libs/oce/oce-0.18.3-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-libs/oce/oce-0.18.3-r2.ebuild b/sci-libs/oce/oce-0.18.3-r2.ebuild
index 11a072de0d6..9a331c5771e 100644
--- a/sci-libs/oce/oce-0.18.3-r2.ebuild
+++ b/sci-libs/oce/oce-0.18.3-r2.ebuild
@@ -7,7 +7,7 @@ inherit cmake check-reqs java-pkg-opt-2
 
 DESCRIPTION="Development platform for CAD/CAE, 3D surface/solid modeling and data exchange"
 HOMEPAGE="https://github.com/tpaviot/oce"
-SRC_URI="https://github.com/tpaviot/oce/archive/OCE-$PV.tar.gz"
+SRC_URI="https://github.com/tpaviot/oce/archive/OCE-${PV}.tar.gz"
 
 LICENSE="|| ( Open-CASCADE-LGPL-2.1-Exception-1.0 LGPL-2.1 )"
 SLOT="${PV}"


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sci-libs/oce/
@ 2021-06-10  3:38 Sam James
  0 siblings, 0 replies; 8+ messages in thread
From: Sam James @ 2021-06-10  3:38 UTC (permalink / raw
  To: gentoo-commits

commit:     c304d3308ecaab8c80726d4c6c4c5b17a4bcf188
Author:     Bernd Waibel <waebbl-gentoo <AT> posteo <DOT> net>
AuthorDate: Fri Jun  4 06:03:38 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Jun 10 03:37:45 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c304d330

sci-libs/oce: adjust dependency on sci-libs/vtk

The xdmf2 USE flag has been removed in latest vtk-8, as well as in vtk-9. Also
it's not needed for proper building of the package.

Package-Manager: Portage-3.0.19, Repoman-3.0.3
Signed-off-by: Bernd Waibel <waebbl-gentoo <AT> posteo.net>
Closes: https://github.com/gentoo/gentoo/pull/21110
Signed-off-by: Sam James <sam <AT> gentoo.org>

 sci-libs/oce/oce-0.18.3-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-libs/oce/oce-0.18.3-r2.ebuild b/sci-libs/oce/oce-0.18.3-r2.ebuild
index 9a331c5771e..d9c1053179f 100644
--- a/sci-libs/oce/oce-0.18.3-r2.ebuild
+++ b/sci-libs/oce/oce-0.18.3-r2.ebuild
@@ -29,7 +29,7 @@ DEPEND="
 	freeimage? ( media-libs/freeimage )
 	gl2ps? ( x11-libs/gl2ps )
 	tbb? ( dev-cpp/tbb )
-	vtk? ( =sci-libs/vtk-8*[boost,imaging,qt5,python,rendering,views,xdmf2] )"
+	vtk? ( =sci-libs/vtk-8*[boost,imaging,qt5,python,rendering,views] )"
 RDEPEND="${DEPEND}"
 
 CHECKREQS_MEMORY="256M"


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sci-libs/oce/
@ 2021-10-29 22:23 Sam James
  0 siblings, 0 replies; 8+ messages in thread
From: Sam James @ 2021-10-29 22:23 UTC (permalink / raw
  To: gentoo-commits

commit:     bcb7597e32ea3a8dbe82dbcebca387b6133ad916
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 29 22:17:30 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Oct 29 22:22:44 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bcb7597e

sci-libs/oce: add tbb subslot operator

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sci-libs/oce/{oce-0.18.3-r2.ebuild => oce-0.18.3-r3.ebuild} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-libs/oce/oce-0.18.3-r2.ebuild b/sci-libs/oce/oce-0.18.3-r3.ebuild
similarity index 98%
rename from sci-libs/oce/oce-0.18.3-r2.ebuild
rename to sci-libs/oce/oce-0.18.3-r3.ebuild
index d9c1053179f..532ed8f8dd5 100644
--- a/sci-libs/oce/oce-0.18.3-r2.ebuild
+++ b/sci-libs/oce/oce-0.18.3-r3.ebuild
@@ -28,7 +28,7 @@ DEPEND="
 	x11-libs/libXmu
 	freeimage? ( media-libs/freeimage )
 	gl2ps? ( x11-libs/gl2ps )
-	tbb? ( dev-cpp/tbb )
+	tbb? ( dev-cpp/tbb:= )
 	vtk? ( =sci-libs/vtk-8*[boost,imaging,qt5,python,rendering,views] )"
 RDEPEND="${DEPEND}"
 


^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2021-10-29 22:23 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-02-22 18:57 [gentoo-commits] repo/gentoo:master commit in: sci-libs/oce/ Sam James
  -- strict thread matches above, loose matches on Subject: below --
2021-10-29 22:23 Sam James
2021-06-10  3:38 Sam James
2021-04-03 15:44 Sam James
2020-06-06 13:17 Andreas Sturmlechner
2020-06-06 13:17 Andreas Sturmlechner
2018-09-12 14:39 Thomas Deutschmann
2018-09-07  3:03 Virgil Dupras

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox