public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Ionen Wolkens" <ionen@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libplacebo/
Date: Mon, 22 Jan 2024 18:38:42 +0000 (UTC)	[thread overview]
Message-ID: <1705948606.6173fdd919863dae07e11da584e5455f5cc8245e.ionen@gentoo> (raw)

commit:     6173fdd919863dae07e11da584e5455f5cc8245e
Author:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 22 18:33:53 2024 +0000
Commit:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Mon Jan 22 18:36:46 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6173fdd9

media-libs/libplacebo: add 6.338.2

Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>

 media-libs/libplacebo/Manifest                  |   1 +
 media-libs/libplacebo/libplacebo-6.338.2.ebuild | 122 ++++++++++++++++++++++++
 2 files changed, 123 insertions(+)

diff --git a/media-libs/libplacebo/Manifest b/media-libs/libplacebo/Manifest
index ad964e340d65..d96b2f12a1f3 100644
--- a/media-libs/libplacebo/Manifest
+++ b/media-libs/libplacebo/Manifest
@@ -1,3 +1,4 @@
 DIST fast_float-5.2.0.tar.gz 84800 BLAKE2B 39133eda20acd5f1f049e8040815a67aee588ab93be4953bde3b9227fb691e099581ef79b12b740437b78a9b4c9007762b44d9726ca07505ad5cb51394d8e3fd SHA512 c703c7cba3c69775317c66a62ce145646fd7d3d063124501e3d6a7deebb8c62c14a2ccdffed18de2d73d9d3a8ba2061ef1d34cc780ee0b6d607935d5f1b1de81
 DIST libplacebo-glad-2.0.4.tar.gz 599932 BLAKE2B 788d2b70222fd09eea02515bdf3cbc147540631bf35fe39f12aa21fdbabf3d229f4234a430217dfaf3363934b8be12dd6a19871049a7b117deb8260ec69f8c67 SHA512 328d0dbe33e69f846d1c54226c6675694404f41e53c4762e6013c7bfe76b0700f0b28f4117a2018a09c9c23ccb6ad94d7b20882fefc2513941a4515686c9b9e7
 DIST libplacebo-v6.338.1.tar.bz2 696577 BLAKE2B c4b1a9830ba91127c78fca30deabbc90c157b0bd9220216c6452866312374b9415f00c6f0c3b573070d4bf26a0c25df96462365d0929dcd022ef5ab84b909e17 SHA512 79e9f800791dcc856ead965f2b0b463ede3313186f248be85e3cf9ec62901043dad72b639f426f858e1fff0bbd9bdcdea48d01a5d3d2218b79e263fa0432bc5b
+DIST libplacebo-v6.338.2.tar.bz2 697450 BLAKE2B 538785bea0003ff49a14b75f26fcd255259ed3b809b4b40be4000ec715808d6603d0139fe872ff2cf4ec13851a03fe63b251d019ef163fbbbfa74a012e0efbe6 SHA512 6577d19590b4d186d721238bd4c6bf940d1e766fe58053673fb5efb4c2c0a4408f29e7a1477328689a30b22eeac8c27548b82c11bfa0bc527d16f691849479c7

diff --git a/media-libs/libplacebo/libplacebo-6.338.2.ebuild b/media-libs/libplacebo/libplacebo-6.338.2.ebuild
new file mode 100644
index 000000000000..af53410bee94
--- /dev/null
+++ b/media-libs/libplacebo/libplacebo-6.338.2.ebuild
@@ -0,0 +1,122 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..12} )
+inherit meson-multilib python-any-r1
+
+if [[ ${PV} == 9999 ]]; then
+	EGIT_REPO_URI="https://code.videolan.org/videolan/libplacebo.git"
+	inherit git-r3
+else
+	GLAD_PV=2.0.4
+	FASTFLOAT_PV=5.2.0
+	SRC_URI="
+		https://code.videolan.org/videolan/libplacebo/-/archive/v${PV}/libplacebo-v${PV}.tar.bz2
+		https://github.com/fastfloat/fast_float/archive/refs/tags/v${FASTFLOAT_PV}.tar.gz
+			-> fast_float-${FASTFLOAT_PV}.tar.gz
+		opengl? (
+			https://github.com/Dav1dde/glad/archive/refs/tags/v${GLAD_PV}.tar.gz
+				-> ${PN}-glad-${GLAD_PV}.tar.gz
+		)
+	"
+	S="${WORKDIR}/${PN}-v${PV}"
+	KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~x86"
+fi
+
+DESCRIPTION="Reusable library for GPU-accelerated image processing primitives"
+HOMEPAGE="
+	https://libplacebo.org/
+	https://code.videolan.org/videolan/libplacebo/
+"
+
+LICENSE="
+	LGPL-2.1+
+	|| ( Apache-2.0 Boost-1.0 MIT )
+	opengl? ( MIT )
+"
+SLOT="0/$(ver_cut 2 ${PV}.9999)" # soname
+IUSE="glslang +lcms llvm-libunwind +opengl +shaderc test unwind +vulkan +xxhash"
+RESTRICT="!test? ( test )"
+REQUIRED_USE="vulkan? ( || ( glslang shaderc ) )"
+
+# dlopen: libglvnd (glad)
+RDEPEND="
+	lcms? ( media-libs/lcms:2[${MULTILIB_USEDEP}] )
+	opengl? ( media-libs/libglvnd[${MULTILIB_USEDEP}] )
+	shaderc? ( media-libs/shaderc[${MULTILIB_USEDEP}] )
+	!shaderc? ( glslang? ( dev-util/glslang:=[${MULTILIB_USEDEP}] ) )
+	unwind? (
+		llvm-libunwind? ( sys-libs/llvm-libunwind[${MULTILIB_USEDEP}] )
+		!llvm-libunwind? ( sys-libs/libunwind:=[${MULTILIB_USEDEP}] )
+	)
+	vulkan? ( media-libs/vulkan-loader[${MULTILIB_USEDEP}] )
+"
+# vulkan-headers is required even with USE=-vulkan for the stub (bug #882065)
+DEPEND="
+	${RDEPEND}
+	dev-util/vulkan-headers
+	xxhash? ( dev-libs/xxhash[${MULTILIB_USEDEP}] )
+"
+BDEPEND="
+	$(python_gen_any_dep 'dev-python/jinja[${PYTHON_USEDEP}]')
+	virtual/pkgconfig
+"
+
+PATCHES=(
+	"${FILESDIR}"/${PN}-5.229.1-llvm-libunwind.patch
+	"${FILESDIR}"/${PN}-5.229.1-python-executable.patch
+)
+
+python_check_deps() {
+	python_has_version "dev-python/jinja[${PYTHON_USEDEP}]"
+}
+
+src_unpack() {
+	if [[ ${PV} == 9999 ]]; then
+		local EGIT_SUBMODULES=(
+			3rdparty/fast_float
+			$(usev opengl 3rdparty/glad)
+		)
+		git-r3_src_unpack
+	else
+		default
+
+		rmdir "${S}"/3rdparty/fast_float || die
+		mv fast_float-${FASTFLOAT_PV} "${S}"/3rdparty/fast_float || die
+
+		if use opengl; then
+			rmdir "${S}"/3rdparty/glad || die
+			mv glad-${GLAD_PV} "${S}"/3rdparty/glad || die
+		fi
+	fi
+}
+
+src_prepare() {
+	default
+
+	# typically auto-skipped, but may assume usable opengl/vulkan then hang
+	sed -i "/tests += 'opengl_surfaceless.c'/d" src/opengl/meson.build || die
+	sed -i "/tests += 'vulkan.c'/d" src/vulkan/meson.build || die
+}
+
+multilib_src_configure() {
+	local emesonargs=(
+		-Ddemos=false #851927
+		$(meson_use test tests)
+		$(meson_feature lcms)
+		-Dlibdovi=disabled # TODO: package libdovi, ask if you need this
+		$(meson_feature opengl)
+		$(meson_feature opengl gl-proc-addr)
+		$(meson_feature shaderc)
+		$(usex shaderc -Dglslang=disabled $(meson_feature glslang))
+		$(meson_feature unwind)
+		$(meson_feature vulkan)
+		$(meson_feature vulkan vk-proc-addr)
+		-Dvulkan-registry="${ESYSROOT}"/usr/share/vulkan/registry/vk.xml
+		$(meson_feature xxhash)
+	)
+
+	meson_src_configure
+}


             reply	other threads:[~2024-01-22 18:38 UTC|newest]

Thread overview: 129+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-01-22 18:38 Ionen Wolkens [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-03-11 23:07 [gentoo-commits] repo/gentoo:master commit in: media-libs/libplacebo/ Ionen Wolkens
2025-02-22  3:07 Ionen Wolkens
2024-09-03 12:31 Ionen Wolkens
2024-09-03 12:31 Ionen Wolkens
2024-07-22 15:50 Sam James
2024-07-22 10:29 Jakov Smolić
2024-07-22 10:29 Jakov Smolić
2024-07-22  6:57 Sam James
2024-07-22  6:57 Sam James
2024-07-02 16:19 Ionen Wolkens
2024-02-22  6:16 Ionen Wolkens
2024-02-03  6:56 Sam James
2024-02-02 18:44 Jakov Smolić
2024-02-02 18:44 Jakov Smolić
2024-02-02 17:51 Arthur Zamarin
2024-02-02 13:53 Arthur Zamarin
2024-01-22 18:38 Ionen Wolkens
2024-01-13 13:11 Ionen Wolkens
2023-12-21  7:50 Arthur Zamarin
2023-12-12 16:55 Arthur Zamarin
2023-12-06 17:57 Ionen Wolkens
2023-12-05 11:03 Ionen Wolkens
2023-12-02  9:24 Arthur Zamarin
2023-11-09 15:49 Ionen Wolkens
2023-10-29 20:21 Sam James
2023-10-29 20:21 Sam James
2023-10-29  8:06 Arthur Zamarin
2023-10-25  7:58 Ionen Wolkens
2023-10-17 16:10 Ionen Wolkens
2023-10-17 16:10 Ionen Wolkens
2023-10-10  6:13 Yixun Lan
2023-10-10  1:10 WANG Xuerui
2023-10-10  1:10 WANG Xuerui
2023-10-10  1:10 WANG Xuerui
2023-10-09 21:45 Sam James
2023-10-09 21:45 Sam James
2023-09-26 15:16 Ionen Wolkens
2023-09-19 12:31 Ionen Wolkens
2023-09-13 21:05 Ionen Wolkens
2023-09-13 21:05 Ionen Wolkens
2023-09-13 21:05 Ionen Wolkens
2023-09-07 10:03 Ionen Wolkens
2023-09-06 19:10 Ionen Wolkens
2023-09-06 19:10 Ionen Wolkens
2023-08-27 17:18 Sam James
2023-08-27  1:54 Sam James
2023-08-27  1:26 Sam James
2023-08-27  0:13 Ionen Wolkens
2023-08-04  1:29 Ionen Wolkens
2023-08-04  1:29 Ionen Wolkens
2023-07-07  6:19 Ionen Wolkens
2023-07-07  6:19 Ionen Wolkens
2023-07-03  4:49 Ionen Wolkens
2023-07-03  4:49 Ionen Wolkens
2023-05-23 17:15 Ionen Wolkens
2023-05-23  2:52 Sam James
2023-04-17 21:16 Sam James
2023-04-17 21:16 Sam James
2023-04-17 21:16 Sam James
2023-04-17 20:45 Ionen Wolkens
2023-03-23 17:35 Ionen Wolkens
2023-03-13 16:13 Ionen Wolkens
2023-03-13 16:13 Ionen Wolkens
2023-01-30 19:11 Ionen Wolkens
2023-01-14 14:42 Ionen Wolkens
2023-01-14 14:42 Ionen Wolkens
2023-01-14 14:42 Ionen Wolkens
2023-01-14 12:07 Ionen Wolkens
2023-01-13  4:40 Sam James
2023-01-11 11:26 Ionen Wolkens
2023-01-05 16:37 Ionen Wolkens
2023-01-05  2:42 Ionen Wolkens
2022-12-29 20:29 Ionen Wolkens
2022-12-29 20:29 Ionen Wolkens
2022-11-20  1:30 Ionen Wolkens
2022-11-20  1:30 Ionen Wolkens
2022-11-19 13:01 Ionen Wolkens
2022-11-19 12:31 Ionen Wolkens
2022-11-07 19:30 Ionen Wolkens
2022-11-06  9:23 Ionen Wolkens
2022-11-06  9:23 Ionen Wolkens
2022-10-01  9:43 Matthew Smith
2022-09-07  7:52 Michał Górny
2022-05-17 12:39 Agostino Sarubbo
2022-05-17  6:53 Jakov Smolić
2022-05-17  5:36 Sam James
2022-03-16 23:10 Sam James
2022-03-16 23:10 Sam James
2022-01-15  9:31 Joonas Niilola
2021-11-14  0:44 Vadim Misbakh-Soloviov
2021-06-04  1:14 Matt Turner
2021-05-29 15:53 Sam James
2021-05-18 20:40 Ulrich Müller
2021-05-18 20:05 Ulrich Müller
2021-05-18 17:16 Sam James
2021-05-16 18:33 Georgy Yakovlev
2021-05-11 20:35 Sam James
2021-01-18 16:33 Joonas Niilola
2021-01-18 16:27 Joonas Niilola
2021-01-18 16:27 Joonas Niilola
2021-01-18 16:27 Joonas Niilola
2021-01-18 14:10 Luca Barbato
2020-11-18 15:24 Joonas Niilola
2020-07-19 16:41 Andreas Sturmlechner
2020-07-02  6:36 Agostino Sarubbo
2020-06-21 16:54 Agostino Sarubbo
2020-06-18 15:44 Andreas Sturmlechner
2020-06-18 15:44 Andreas Sturmlechner
2020-06-18 15:44 Andreas Sturmlechner
2020-04-23 17:07 Georgy Yakovlev
2020-02-27  4:05 Georgy Yakovlev
2020-02-27  4:05 Georgy Yakovlev
2020-01-05 18:54 Mikle Kolyada
2020-01-03  9:15 Joonas Niilola
2020-01-03  9:15 Joonas Niilola
2019-12-23 19:56 Lars Wendler
2019-12-22 16:59 Joonas Niilola
2019-11-20 12:59 Andreas Sturmlechner
2019-11-20 12:22 Andreas Sturmlechner
2019-11-20 12:22 Andreas Sturmlechner
2019-11-20 12:22 Andreas Sturmlechner
2019-10-22  4:49 Joonas Niilola
2019-06-18 18:24 Thomas Deutschmann
2019-06-09 17:24 Andreas Sturmlechner
2019-05-09 19:16 Georgy Yakovlev
2019-05-09 19:16 Georgy Yakovlev
2019-05-09 19:16 Georgy Yakovlev
2019-04-03  7:54 Michał Górny

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=1705948606.6173fdd919863dae07e11da584e5455f5cc8245e.ionen@gentoo \
    --to=ionen@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