diff options
author | Sam James <sam@gentoo.org> | 2022-02-12 03:35:25 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-02-12 03:55:35 +0000 |
commit | e9ffcaa3e6e45bafa379b3fae35ab9fbf087f6e9 (patch) | |
tree | e7d2f3dc4f29c0df19bba4e82d7ea6d78f9ac8eb /media-libs/osl | |
parent | media-libs/osl: stabilize 1.12.0.2-r3 for amd64 (diff) | |
download | gentoo-e9ffcaa3e6e45bafa379b3fae35ab9fbf087f6e9.tar.gz gentoo-e9ffcaa3e6e45bafa379b3fae35ab9fbf087f6e9.tar.bz2 gentoo-e9ffcaa3e6e45bafa379b3fae35ab9fbf087f6e9.zip |
media-libs/osl: drop 1.12.0.2
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'media-libs/osl')
-rw-r--r-- | media-libs/osl/osl-1.12.0.2.ebuild | 88 |
1 files changed, 0 insertions, 88 deletions
diff --git a/media-libs/osl/osl-1.12.0.2.ebuild b/media-libs/osl/osl-1.12.0.2.ebuild deleted file mode 100644 index 155cb0665f23..000000000000 --- a/media-libs/osl/osl-1.12.0.2.ebuild +++ /dev/null @@ -1,88 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit cmake llvm toolchain-funcs - -# check this on updates -LLVM_MAX_SLOT=12 - -DESCRIPTION="Advanced shading language for production GI renderers" -HOMEPAGE="http://opensource.imageworks.com/?p=osl" -SRC_URI="https://github.com/imageworks/OpenShadingLanguage/archive/Release-${PV}-dev.tar.gz -> ${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~x86" - -X86_CPU_FEATURES=( - sse2:sse2 sse3:sse3 ssse3:ssse3 sse4_1:sse4.1 sse4_2:sse4.2 - avx:avx avx2:avx2 avx512f:avx512f f16c:f16c -) -CPU_FEATURES=( ${X86_CPU_FEATURES[@]/#/cpu_flags_x86_} ) - -IUSE="doc partio qt5 test ${CPU_FEATURES[@]%:*}" - -RDEPEND=" - dev-libs/boost:= - dev-libs/pugixml - media-libs/openexr:= - media-libs/openimageio:= - <=sys-devel/clang-13:= - sys-libs/zlib:= - dev-python/pybind11 - partio? ( media-libs/partio ) - qt5? ( - dev-qt/qtcore:5 - dev-qt/qtgui:5 - dev-qt/qtwidgets:5 - ) -" - -DEPEND="${RDEPEND}" -BDEPEND=" - sys-devel/bison - sys-devel/flex - virtual/pkgconfig -" - -PATCHES=( - ${FILESDIR}/${P}-llvm-11.patch - ${FILESDIR}/${P}-llvm-12.patch -) - -# Restricting tests as Makefile handles them differently -RESTRICT="test" - -S="${WORKDIR}/OpenShadingLanguage-Release-${PV}-dev" - -llvm_check_deps() { - has_version -r "sys-devel/clang:${LLVM_SLOT}" -} - -src_configure() { - local cpufeature - local mysimd=() - for cpufeature in "${CPU_FEATURES[@]}"; do - use "${cpufeature%:*}" && mysimd+=("${cpufeature#*:}") - done - - # If no CPU SIMDs were used, completely disable them - [[ -z ${mysimd} ]] && mysimd=("0") - - local gcc=$(tc-getCC) - # LLVM needs CPP11. Do not disable. - local mycmakeargs=( - -DCMAKE_CXX_STANDARD=14 - -DCMAKE_INSTALL_DOCDIR="share/doc/${PF}" - -DINSTALL_DOCS=$(usex doc) - -DLLVM_STATIC=OFF - -DOSL_BUILD_TESTS=$(usex test) - -DSTOP_ON_WARNING=OFF - -DUSE_PARTIO=$(usex partio) - -DUSE_QT=$(usex qt5) - -DUSE_SIMD="$(IFS=","; echo "${mysimd[*]}")" - ) - - cmake_src_configure -} |