public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Andreas Sturmlechner" <asturm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/embree/
Date: Mon, 26 Dec 2022 19:19:39 +0000 (UTC)	[thread overview]
Message-ID: <1672082200.8f7c2a576b8f1c5a3ea8ff16bafbc3483b7570d3.asturm@gentoo> (raw)

commit:     8f7c2a576b8f1c5a3ea8ff16bafbc3483b7570d3
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 26 07:48:44 2022 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Mon Dec 26 19:16:40 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f7c2a57

media-libs/embree: drop 3.13.0-r2, 3.13.2, 3.13.3

Closes: https://bugs.gentoo.org/887549
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 media-libs/embree/Manifest                |   3 -
 media-libs/embree/embree-3.13.0-r2.ebuild | 113 -------------------------
 media-libs/embree/embree-3.13.2.ebuild    | 132 ------------------------------
 media-libs/embree/embree-3.13.3.ebuild    | 132 ------------------------------
 4 files changed, 380 deletions(-)

diff --git a/media-libs/embree/Manifest b/media-libs/embree/Manifest
index cf510251420e..a056b4c9a819 100644
--- a/media-libs/embree/Manifest
+++ b/media-libs/embree/Manifest
@@ -1,4 +1 @@
-DIST embree-3.13.0.tar.gz 13708421 BLAKE2B bace1866d9d6907308d38370347d23b4edb3fe287d093acf35367be1d4548d1df064ed9d46ef928f17af99e335d5fcd7b7285a2bd95707361440547544782080 SHA512 3fc4f00151cb9558810c643bf77f3135465d65c4523e08d5289a0fdcb18d4c63a8e805647e4ce208556c4679d44373d817761c1003b1e9dc65a39d5ebf17926f
-DIST embree-3.13.2.tar.gz 13716621 BLAKE2B 8fd770ea9984a9f5b532f114c7901a67105f95c98a1bad45ed9dc2e312062e22aee26d54bd54ac3c9593fed14d34b03903ac186516682890cfaf9e0714743cce SHA512 9e4912f52c503d8d1fe0c3c81bf8108f1af044bf08d76111e4c1ab434c6a38d33bae9aacfd60c874da76bcc2f909ad1f3f171d458adb7973644cdbfd3693dc0f
-DIST embree-3.13.3.tar.gz 13712462 BLAKE2B 02edef26b4c4f3676e792c06490e5947d3a2cedd4ce1bbf4731e60feea0b3714bf4bbf9d859d464f179674e4e0c9462d1565869713c5612705df273baa41923f SHA512 eef8d9101f0bf95d6706a495a9aa628c10749862aeb2baa6bba2f82fcc3a96467a28ca1f522d672eb5aa7b29824363674feda25832724da361b3334334a218cd
 DIST embree-3.13.4.tar.gz 13733908 BLAKE2B 4c6c24f62ee88a09149bd930716c71e91d54563eea5cc103c0346d3808c693e8470fc7ea98651e0df9e4423bda565d7ab1a23e16c9d0441c79e9ec9c8571b0fa SHA512 685c3935fabe1bfa7260ef148df26b686b085b75011d72011461471cbcef786a5ce7a0e85c57b2df05798489a2d4e80a8d3ee5df986029edad7df7511d99c0ca

diff --git a/media-libs/embree/embree-3.13.0-r2.ebuild b/media-libs/embree/embree-3.13.0-r2.ebuild
deleted file mode 100644
index f72392a0812c..000000000000
--- a/media-libs/embree/embree-3.13.0-r2.ebuild
+++ /dev/null
@@ -1,113 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake flag-o-matic linux-info toolchain-funcs
-
-DESCRIPTION="Collection of high-performance ray tracing kernels"
-HOMEPAGE="https://github.com/embree/embree"
-SRC_URI="https://github.com/embree/embree/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="3"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~x86"
-X86_CPU_FLAGS=( sse2:sse2 sse4_2:sse4_2 avx:avx avx2:avx2 avx512dq:avx512dq )
-CPU_FLAGS=( ${X86_CPU_FLAGS[@]/#/cpu_flags_x86_} )
-IUSE="+compact-polys ispc +raymask ssp +tbb tutorial ${CPU_FLAGS[@]%:*}"
-RESTRICT="mirror"
-
-BDEPEND="
-	virtual/pkgconfig
-"
-RDEPEND="
-	>=media-libs/glfw-3.2.1
-	virtual/opengl
-	ispc? ( dev-lang/ispc )
-	tbb? ( dev-cpp/tbb:= )
-	tutorial? (
-		>=media-libs/libpng-1.6.34:0=
-		>=media-libs/openimageio-1.8.7:0=
-		virtual/jpeg:0
-	)
-"
-DEPEND="${RDEPEND}"
-
-DOCS=( CHANGELOG.md README.md readme.pdf )
-
-pkg_setup() {
-	CONFIG_CHECK="~TRANSPARENT_HUGEPAGE"
-	WARNING_TRANSPARENT_HUGEPAGE="Not enabling Transparent Hugepages (CONFIG_TRANSPARENT_HUGEPAGE) will impact rendering performance."
-	linux-info_pkg_setup
-
-	if ! ( cat /proc/cpuinfo | grep sse2 > /dev/null ) ; then
-		die "You need a CPU with at least sse2 support"
-	fi
-}
-
-src_prepare() {
-	cmake_src_prepare
-
-	# disable RPM package building
-	sed -e 's|CPACK_RPM_PACKAGE_RELEASE 1|CPACK_RPM_PACKAGE_RELEASE 0|' \
-		-i CMakeLists.txt || die
-}
-
-src_configure() {
-	# NOTE: You can make embree accept custom CXXFLAGS by turning off
-	# EMBREE_IGNORE_CMAKE_CXX_FLAGS. However, the linking will fail if you use
-	# any "m*" compile flags. This is because embree builds modules for the
-	# different supported ISAs and picks the correct one at runtime.
-	# "m*" will pull in cpu instructions that shouldn't be in specific modules
-	# and it fails to link properly.
-	# https://github.com/embree/embree/issues/115
-
-	filter-flags -m*
-
-	local mycmakeargs=(
-		# Currently Intel only host their test files on their internal network.
-		# So it seems like users can't easily get a hold of these and do
-		# regression testing on their own.
-		-DBUILD_TESTING:BOOL=OFF
-		-DCMAKE_SKIP_INSTALL_RPATH:BOOL=ON
-		-DEMBREE_BACKFACE_CULLING=OFF	   	# default
-		-DEMBREE_COMPACT_POLYS=$(usex compact-polys)
-		-DEMBREE_FILTER_FUNCTION=ON			# default
-		-DEMBREE_GEOMETRY_CURVE=ON			# default
-		-DEMBREE_GEOMETRY_GRID=ON			# default
-		-DEMBREE_GEOMETRY_INSTANCE=ON	   	# default
-		-DEMBREE_GEOMETRY_POINT=ON			# default
-		-DEMBREE_GEOMETRY_QUAD=ON			# default
-		-DEMBREE_GEOMETRY_SUBDIVISION=ON	# default
-		-DEMBREE_GEOMETRY_TRIANGLE=ON		# default
-		-DEMBREE_GEOMETRY_USER=ON			# default
-		-DEMBREE_IGNORE_CMAKE_CXX_FLAGS=OFF
-		-DEMBREE_IGNORE_INVALID_RAYS=OFF	# default
-		-DEMBREE_MAX_ISA:STRING="NONE"		# Set to NONE so we can manually switch on ISAs below
-		-DEMBREE_ISA_AVX=$(usex cpu_flags_x86_avx)
-		-DEMBREE_ISA_AVX2=$(usex cpu_flags_x86_avx2)
-		-DEMBREE_ISA_AVX512=$(usex cpu_flags_x86_avx512dq)
-		-DEMBREE_ISA_SSE2=$(usex cpu_flags_x86_sse2)
-		-DEMBREE_ISA_SSE42=$(usex cpu_flags_x86_sse4_2)
-		-DEMBREE_ISPC_SUPPORT=$(usex ispc)
-		-DEMBREE_RAY_MASK=$(usex raymask)
-		-DEMBREE_RAY_PACKETS=ON				# default
-		-DEMBREE_STACK_PROTECTOR=$(usex ssp)
-		-DEMBREE_STATIC_LIB=OFF
-		-DEMBREE_STAT_COUNTERS=OFF
-		-DEMBREE_TASKING_SYSTEM:STRING=$(usex tbb "TBB" "INTERNAL")
-		-DEMBREE_TUTORIALS=$(usex tutorial) )
-
-	# Disable asserts
-	append-cppflags -DNDEBUG
-
-	if use tutorial; then
-		mycmakeargs+=(
-			-DEMBREE_ISPC_ADDRESSING:STRING="64"
-			-DEMBREE_TUTORIALS_LIBJPEG=ON
-			-DEMBREE_TUTORIALS_LIBPNG=ON
-			-DEMBREE_TUTORIALS_OPENIMAGEIO=ON )
-	fi
-
-	cmake_src_configure
-}

diff --git a/media-libs/embree/embree-3.13.2.ebuild b/media-libs/embree/embree-3.13.2.ebuild
deleted file mode 100644
index 40002cff3ac1..000000000000
--- a/media-libs/embree/embree-3.13.2.ebuild
+++ /dev/null
@@ -1,132 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake flag-o-matic linux-info toolchain-funcs
-
-DESCRIPTION="Collection of high-performance ray tracing kernels"
-HOMEPAGE="https://github.com/embree/embree"
-SRC_URI="https://github.com/embree/embree/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="3"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
-X86_CPU_FLAGS=( sse2:sse2 sse4_2:sse4_2 avx:avx avx2:avx2 avx512dq:avx512dq )
-CPU_FLAGS=( cpu_flags_arm_neon ${X86_CPU_FLAGS[@]/#/cpu_flags_x86_} )
-IUSE="+compact-polys ispc +raymask ssp +tbb tutorial ${CPU_FLAGS[@]%:*}"
-# Let's be explicit here even though we could simplify it.
-REQUIRED_USE="amd64? ( cpu_flags_x86_sse2 ) x86? ( cpu_flags_x86_sse2 )"
-
-RESTRICT="mirror"
-
-BDEPEND="
-	virtual/pkgconfig
-"
-RDEPEND="
-	>=media-libs/glfw-3.2.1
-	virtual/opengl
-	ispc? ( dev-lang/ispc )
-	tbb? ( dev-cpp/tbb:= )
-	tutorial? (
-		>=media-libs/libpng-1.6.34:0=
-		>=media-libs/openimageio-1.8.7:0=
-		virtual/jpeg:0
-	)
-"
-DEPEND="${RDEPEND}"
-
-DOCS=( CHANGELOG.md README.md readme.pdf )
-
-pkg_setup() {
-	CONFIG_CHECK="~TRANSPARENT_HUGEPAGE"
-	WARNING_TRANSPARENT_HUGEPAGE="Not enabling Transparent Hugepages (CONFIG_TRANSPARENT_HUGEPAGE) will impact rendering performance."
-
-	linux-info_pkg_setup
-}
-
-src_prepare() {
-	cmake_src_prepare
-
-	# disable RPM package building
-	sed -e 's|CPACK_RPM_PACKAGE_RELEASE 1|CPACK_RPM_PACKAGE_RELEASE 0|' \
-		-i CMakeLists.txt || die
-}
-
-src_configure() {
-	# NOTE: You can make embree accept custom CXXFLAGS by turning off
-	# EMBREE_IGNORE_CMAKE_CXX_FLAGS. However, the linking will fail if you use
-	# any "m*" compile flags. This is because embree builds modules for the
-	# different supported ISAs and picks the correct one at runtime.
-	# "m*" will pull in cpu instructions that shouldn't be in specific modules
-	# and it fails to link properly.
-	# https://github.com/embree/embree/issues/115
-
-	filter-flags -m*
-
-	local mycmakeargs=(
-		# Currently Intel only host their test files on their internal network.
-		# So it seems like users can't easily get a hold of these and do
-		# regression testing on their own.
-		-DBUILD_TESTING:BOOL=OFF
-		-DCMAKE_SKIP_INSTALL_RPATH:BOOL=ON
-
-		# default
-		-DEMBREE_BACKFACE_CULLING=OFF
-		-DEMBREE_COMPACT_POLYS=$(usex compact-polys)
-
-		# default
-		-DEMBREE_FILTER_FUNCTION=ON
-		# default
-		-DEMBREE_GEOMETRY_CURVE=ON
-		# default
-		-DEMBREE_GEOMETRY_GRID=ON
-		# default
-		-DEMBREE_GEOMETRY_INSTANCE=ON
-		# default
-		-DEMBREE_GEOMETRY_POINT=ON
-		# default
-		-DEMBREE_GEOMETRY_QUAD=ON
-		# default
-		-DEMBREE_GEOMETRY_SUBDIVISION=ON
-		# default
-		-DEMBREE_GEOMETRY_TRIANGLE=ON
-		# default
-		-DEMBREE_GEOMETRY_USER=ON
-		# default
-		-DEMBREE_IGNORE_CMAKE_CXX_FLAGS=OFF
-		# default
-		-DEMBREE_IGNORE_INVALID_RAYS=OFF
-
-		# Set to NONE so we can manually switch on ISAs below
-		-DEMBREE_MAX_ISA:STRING="NONE"
-		-DEMBREE_ISA_AVX=$(usex cpu_flags_x86_avx)
-		-DEMBREE_ISA_AVX2=$(usex cpu_flags_x86_avx2)
-		-DEMBREE_ISA_AVX512=$(usex cpu_flags_x86_avx512dq)
-		-DEMBREE_ISA_NEON=$(usex cpu_flags_arm_neon)
-		-DEMBREE_ISA_SSE2=$(usex cpu_flags_x86_sse2)
-		-DEMBREE_ISA_SSE42=$(usex cpu_flags_x86_sse4_2)
-		-DEMBREE_ISPC_SUPPORT=$(usex ispc)
-		-DEMBREE_RAY_MASK=$(usex raymask)
-		# default
-		-DEMBREE_RAY_PACKETS=ON
-		-DEMBREE_STACK_PROTECTOR=$(usex ssp)
-		-DEMBREE_STATIC_LIB=OFF
-		-DEMBREE_STAT_COUNTERS=OFF
-		-DEMBREE_TASKING_SYSTEM:STRING=$(usex tbb "TBB" "INTERNAL")
-		-DEMBREE_TUTORIALS=$(usex tutorial))
-
-	# Disable asserts
-	append-cppflags -DNDEBUG
-
-	if use tutorial; then
-		mycmakeargs+=(
-			-DEMBREE_ISPC_ADDRESSING:STRING="64"
-			-DEMBREE_TUTORIALS_LIBJPEG=ON
-			-DEMBREE_TUTORIALS_LIBPNG=ON
-			-DEMBREE_TUTORIALS_OPENIMAGEIO=ON
-		)
-	fi
-
-	cmake_src_configure
-}

diff --git a/media-libs/embree/embree-3.13.3.ebuild b/media-libs/embree/embree-3.13.3.ebuild
deleted file mode 100644
index 40002cff3ac1..000000000000
--- a/media-libs/embree/embree-3.13.3.ebuild
+++ /dev/null
@@ -1,132 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake flag-o-matic linux-info toolchain-funcs
-
-DESCRIPTION="Collection of high-performance ray tracing kernels"
-HOMEPAGE="https://github.com/embree/embree"
-SRC_URI="https://github.com/embree/embree/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="3"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
-X86_CPU_FLAGS=( sse2:sse2 sse4_2:sse4_2 avx:avx avx2:avx2 avx512dq:avx512dq )
-CPU_FLAGS=( cpu_flags_arm_neon ${X86_CPU_FLAGS[@]/#/cpu_flags_x86_} )
-IUSE="+compact-polys ispc +raymask ssp +tbb tutorial ${CPU_FLAGS[@]%:*}"
-# Let's be explicit here even though we could simplify it.
-REQUIRED_USE="amd64? ( cpu_flags_x86_sse2 ) x86? ( cpu_flags_x86_sse2 )"
-
-RESTRICT="mirror"
-
-BDEPEND="
-	virtual/pkgconfig
-"
-RDEPEND="
-	>=media-libs/glfw-3.2.1
-	virtual/opengl
-	ispc? ( dev-lang/ispc )
-	tbb? ( dev-cpp/tbb:= )
-	tutorial? (
-		>=media-libs/libpng-1.6.34:0=
-		>=media-libs/openimageio-1.8.7:0=
-		virtual/jpeg:0
-	)
-"
-DEPEND="${RDEPEND}"
-
-DOCS=( CHANGELOG.md README.md readme.pdf )
-
-pkg_setup() {
-	CONFIG_CHECK="~TRANSPARENT_HUGEPAGE"
-	WARNING_TRANSPARENT_HUGEPAGE="Not enabling Transparent Hugepages (CONFIG_TRANSPARENT_HUGEPAGE) will impact rendering performance."
-
-	linux-info_pkg_setup
-}
-
-src_prepare() {
-	cmake_src_prepare
-
-	# disable RPM package building
-	sed -e 's|CPACK_RPM_PACKAGE_RELEASE 1|CPACK_RPM_PACKAGE_RELEASE 0|' \
-		-i CMakeLists.txt || die
-}
-
-src_configure() {
-	# NOTE: You can make embree accept custom CXXFLAGS by turning off
-	# EMBREE_IGNORE_CMAKE_CXX_FLAGS. However, the linking will fail if you use
-	# any "m*" compile flags. This is because embree builds modules for the
-	# different supported ISAs and picks the correct one at runtime.
-	# "m*" will pull in cpu instructions that shouldn't be in specific modules
-	# and it fails to link properly.
-	# https://github.com/embree/embree/issues/115
-
-	filter-flags -m*
-
-	local mycmakeargs=(
-		# Currently Intel only host their test files on their internal network.
-		# So it seems like users can't easily get a hold of these and do
-		# regression testing on their own.
-		-DBUILD_TESTING:BOOL=OFF
-		-DCMAKE_SKIP_INSTALL_RPATH:BOOL=ON
-
-		# default
-		-DEMBREE_BACKFACE_CULLING=OFF
-		-DEMBREE_COMPACT_POLYS=$(usex compact-polys)
-
-		# default
-		-DEMBREE_FILTER_FUNCTION=ON
-		# default
-		-DEMBREE_GEOMETRY_CURVE=ON
-		# default
-		-DEMBREE_GEOMETRY_GRID=ON
-		# default
-		-DEMBREE_GEOMETRY_INSTANCE=ON
-		# default
-		-DEMBREE_GEOMETRY_POINT=ON
-		# default
-		-DEMBREE_GEOMETRY_QUAD=ON
-		# default
-		-DEMBREE_GEOMETRY_SUBDIVISION=ON
-		# default
-		-DEMBREE_GEOMETRY_TRIANGLE=ON
-		# default
-		-DEMBREE_GEOMETRY_USER=ON
-		# default
-		-DEMBREE_IGNORE_CMAKE_CXX_FLAGS=OFF
-		# default
-		-DEMBREE_IGNORE_INVALID_RAYS=OFF
-
-		# Set to NONE so we can manually switch on ISAs below
-		-DEMBREE_MAX_ISA:STRING="NONE"
-		-DEMBREE_ISA_AVX=$(usex cpu_flags_x86_avx)
-		-DEMBREE_ISA_AVX2=$(usex cpu_flags_x86_avx2)
-		-DEMBREE_ISA_AVX512=$(usex cpu_flags_x86_avx512dq)
-		-DEMBREE_ISA_NEON=$(usex cpu_flags_arm_neon)
-		-DEMBREE_ISA_SSE2=$(usex cpu_flags_x86_sse2)
-		-DEMBREE_ISA_SSE42=$(usex cpu_flags_x86_sse4_2)
-		-DEMBREE_ISPC_SUPPORT=$(usex ispc)
-		-DEMBREE_RAY_MASK=$(usex raymask)
-		# default
-		-DEMBREE_RAY_PACKETS=ON
-		-DEMBREE_STACK_PROTECTOR=$(usex ssp)
-		-DEMBREE_STATIC_LIB=OFF
-		-DEMBREE_STAT_COUNTERS=OFF
-		-DEMBREE_TASKING_SYSTEM:STRING=$(usex tbb "TBB" "INTERNAL")
-		-DEMBREE_TUTORIALS=$(usex tutorial))
-
-	# Disable asserts
-	append-cppflags -DNDEBUG
-
-	if use tutorial; then
-		mycmakeargs+=(
-			-DEMBREE_ISPC_ADDRESSING:STRING="64"
-			-DEMBREE_TUTORIALS_LIBJPEG=ON
-			-DEMBREE_TUTORIALS_LIBPNG=ON
-			-DEMBREE_TUTORIALS_OPENIMAGEIO=ON
-		)
-	fi
-
-	cmake_src_configure
-}


             reply	other threads:[~2022-12-26 19:19 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-12-26 19:19 Andreas Sturmlechner [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-06-22 17:58 [gentoo-commits] repo/gentoo:master commit in: media-libs/embree/ Arthur Zamarin
2025-05-08  6:29 Sam James
2025-04-28 14:01 Sam James
2025-01-04 23:06 Sam James
2024-08-14 14:26 Sam James
2024-03-26 12:31 Sam James
2024-03-25 18:57 Sam James
2023-07-26  8:00 Joonas Niilola
2023-06-10 20:47 Andreas Sturmlechner
2022-12-26  3:20 Sam James
2022-08-11  7:33 Joonas Niilola
2022-08-11  7:33 Joonas Niilola
2021-11-23 21:36 Sam James
2021-10-31  5:53 Sam James
2021-10-29 22:23 Sam James
2021-09-19  3:30 Sam James
2021-09-19  3:09 Sam James
2021-09-19  3:09 Sam James
2021-08-04  2:58 Sam James
2021-08-04  2:15 Sam James
2021-06-10 17:54 Sam James
2021-06-10  0:51 Sam James
2017-06-20 12:53 Pacho Ramos
2016-02-12 22:43 Kacper Kowalik

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1672082200.8f7c2a576b8f1c5a3ea8ff16bafbc3483b7570d3.asturm@gentoo \
    --to=asturm@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox