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, 3 Jul 2023 04:49:23 +0000 (UTC) [thread overview]
Message-ID: <1688359656.5dc967dfd98e43d905c4ebf018e8eb9c91679f7b.ionen@gentoo> (raw)
commit: 5dc967dfd98e43d905c4ebf018e8eb9c91679f7b
Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 3 04:17:22 2023 +0000
Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Mon Jul 3 04:47:36 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5dc967df
media-libs/libplacebo: add 6.287.0_rc1 (unkeyworded)
mpv-9999 now depends on >=5.266 (with USE=libplacebo) which is
unreleased bare this release candidate. Add to offer the option
to skip tracking libplacebo-9999 as well and prepare version
bounds given this seems incompatible with old mpv.
Note may not punctually bump further _rc if they are released,
please file a bug if you want one.
Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
media-libs/libplacebo/Manifest | 1 +
.../libplacebo/libplacebo-6.287.0_rc1.ebuild | 98 ++++++++++++++++++++++
2 files changed, 99 insertions(+)
diff --git a/media-libs/libplacebo/Manifest b/media-libs/libplacebo/Manifest
index 4e1009f5c1b8..08494341626b 100644
--- a/media-libs/libplacebo/Manifest
+++ b/media-libs/libplacebo/Manifest
@@ -1,2 +1,3 @@
DIST libplacebo-glad-2.0.4.tar.gz 599932 BLAKE2B 788d2b70222fd09eea02515bdf3cbc147540631bf35fe39f12aa21fdbabf3d229f4234a430217dfaf3363934b8be12dd6a19871049a7b117deb8260ec69f8c67 SHA512 328d0dbe33e69f846d1c54226c6675694404f41e53c4762e6013c7bfe76b0700f0b28f4117a2018a09c9c23ccb6ad94d7b20882fefc2513941a4515686c9b9e7
DIST libplacebo-v5.264.1.tar.gz 725394 BLAKE2B 421de50ef5e2270e3ba32dd85d92d816a374257442b535face6cb8501d565652aae530b86a7d717c9352c6a82ca665ff7d91c2d9768365780cbbe4f48d1d3276 SHA512 305f43b71f078f4113def43c444df667dfbdd2a6a34d3b457b15da0b3499ca97ec9a8acbd151d58c8e1a593ace3d8aa61067b32556c6bae451efbb217d60a731
+DIST libplacebo-v6.287.0-rc1.tar.bz2 615586 BLAKE2B 0c3cea0345cd535dcf3220789748840769c42842cb3d86ac0989e6f4ba03002be7bdc0b50ceb24e3b94065582a48cda128d198e6a569cd6d3c7be36e4f81f1f3 SHA512 9c0bc369f2885415f78c0d1b36a758e56acdf3f7ef34c41bd8153f8f643d4e29ff41ba1ca6fd10b39d1daa96dff9d22dd9affc37d599825f9f9b01480530294d
diff --git a/media-libs/libplacebo/libplacebo-6.287.0_rc1.ebuild b/media-libs/libplacebo/libplacebo-6.287.0_rc1.ebuild
new file mode 100644
index 000000000000..65e9c82a4358
--- /dev/null
+++ b/media-libs/libplacebo/libplacebo-6.287.0_rc1.ebuild
@@ -0,0 +1,98 @@
+# Copyright 1999-2023 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
+ MY_PV=${PV/_/-}
+ GLAD_PV=2.0.4
+ SRC_URI="
+ https://code.videolan.org/videolan/libplacebo/-/archive/v${MY_PV}/libplacebo-v${MY_PV}.tar.bz2
+ opengl? ( https://github.com/Dav1dde/glad/archive/refs/tags/v${GLAD_PV}.tar.gz -> ${PN}-glad-${GLAD_PV}.tar.gz )"
+ S="${WORKDIR}/${PN}-v${MY_PV}"
+ # unkeyworded _rc for use with mpv-9999 if not using libplacebo-9999
+ #KEYWORDS="~amd64 ~ppc64 ~x86"
+fi
+
+DESCRIPTION="Reusable library for GPU-accelerated image processing primitives"
+HOMEPAGE="https://code.videolan.org/videolan/libplacebo/"
+
+LICENSE="LGPL-2.1+ opengl? ( MIT )"
+SLOT="0/$(ver_cut 2 ${PV}.9999)" # soname
+IUSE="glslang lcms llvm-libunwind +opengl +shaderc test unwind +vulkan"
+RESTRICT="!test? ( test )"
+REQUIRED_USE="vulkan? ( || ( glslang shaderc ) )"
+
+# libglvnd is used with dlopen() through glad (inc. egl/gles)
+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 (bug #882065)
+DEPEND="
+ ${RDEPEND}
+ dev-util/vulkan-headers"
+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=( $(usev opengl 3rdparty/glad) )
+ git-r3_src_unpack
+ else
+ default
+ 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_src_configure
+}
next reply other threads:[~2023-07-03 4:49 UTC|newest]
Thread overview: 127+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-07-03 4:49 Ionen Wolkens [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-09-03 12:31 [gentoo-commits] repo/gentoo:master commit in: media-libs/libplacebo/ 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-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-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=1688359656.5dc967dfd98e43d905c4ebf018e8eb9c91679f7b.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