media-libs/libplacebo: update to 1.29.1
authorNiklas Haas <git@haasn.xyz>
Fri, 3 Jan 2020 09:01:45 +0000 (11:01 +0200)
committerJoonas Niilola <juippis@gentoo.org>
Fri, 3 Jan 2020 09:14:28 +0000 (11:14 +0200)
This is a minor bug fix release upstream, which also fixes some
gentoo-related issues. I also made a minor change to the ebuild, to
avoid having to hard-code the subslot version. (Upstream guarantees that
the .so version always matches the minor version)

Closes: https://bugs.gentoo.org/703570
Closes: https://bugs.gentoo.org/700766
Signed-off-by: Niklas Haas <git@haasn.xyz>
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
media-libs/libplacebo/Manifest
media-libs/libplacebo/libplacebo-1.29.1.ebuild [new file with mode: 0644]

index a40665a7bd4f99a1bfe2e66a5f3d7702dc2127c2..bf9dab3d0c4f5ad7126cf4619e3c4e2112be47af 100644 (file)
@@ -1,2 +1,3 @@
 DIST libplacebo-v1.21.0.tar.gz 326918 BLAKE2B fe9500de23487d7d5dfc51d9f94dd3d33d22bdac3005fc3334814c53a76a46cebd40655675b5172f058d02dd865385a993b3c52a863b9e9b32ac0bc4801e0126 SHA512 5de95b8cc48ba4ec9bc3afb8c8f2c4fae0d53ce6e69ffb53884c3a3ee2580998bae46b8934e462740b6c9c2e66e3c5d5f009f9b0f8ad2cb7b4fba829891cf333
 DIST libplacebo-v1.29.0.tar.gz 330474 BLAKE2B a3b183e4e1655cdf93b787d6f4962f6bdc185e729754df4c23d9052e8932991e6085286c93dcf623347f5e26371e3d56e6d9c433162ec04a0e91ef87eb46ac1c SHA512 1b0bb771a93ef68eb9a5dc4de3b31f936d45321edefc79f470005b5d7ab2f674831eea5595d2d6a009504e2df31a637d44b9103bca930a0870da78c3c9aa6fc7
+DIST libplacebo-v1.29.1.tar.gz 330673 BLAKE2B 3094f167afb45097ef6e494d7f6f6d61b7ee4ed00bab9f1d33bfd27b032020489eb43005a30a44934416dc52577eb7fc66baf367fdfda71652e97214d87023df SHA512 9f09560832a88e670d6c31e9f5b9cbc03de437bfb19ceb0985140307b5cdf20e2050a1dab5d07f18258dfa3e5429a51f1d3d54532099be4bfc6a0dafe3ffd516
diff --git a/media-libs/libplacebo/libplacebo-1.29.1.ebuild b/media-libs/libplacebo/libplacebo-1.29.1.ebuild
new file mode 100644 (file)
index 0000000..ee1709c
--- /dev/null
@@ -0,0 +1,55 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+if [[ "${PV}" == "9999" ]]; then
+       EGIT_REPO_URI="https://code.videolan.org/videolan/libplacebo.git"
+       inherit git-r3
+else
+       KEYWORDS="~amd64 ~x86"
+       SRC_URI="https://code.videolan.org/videolan/libplacebo/-/archive/v${PV}/libplacebo-v${PV}.tar.gz"
+       S="${WORKDIR}/${PN}-v${PV}"
+fi
+
+inherit meson multilib-minimal
+
+DESCRIPTION="Reusable library for GPU-accelerated image processing primitives"
+HOMEPAGE="https://github.com/haasn/libplacebo"
+
+LICENSE="LGPL-2.1+"
+SLOT="0/$(ver_cut 2)" # libplacebo.so version
+IUSE="glslang lcms +shaderc test +vulkan"
+REQUIRED_USE="vulkan? ( || ( glslang shaderc ) )"
+
+RDEPEND="glslang? ( dev-util/glslang[${MULTILIB_USEDEP}] )
+       lcms? ( media-libs/lcms:2[${MULTILIB_USEDEP}] )
+       shaderc? ( >=media-libs/shaderc-2017.2[${MULTILIB_USEDEP}] )
+       vulkan? ( media-libs/vulkan-loader[${MULTILIB_USEDEP}] )"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+RESTRICT="!test? ( test )"
+
+multilib_src_configure() {
+       local emesonargs=(
+               $(meson_feature glslang)
+               $(meson_feature lcms)
+               $(meson_feature shaderc)
+               $(meson_feature vulkan)
+               $(meson_use test tests)
+       )
+       meson_src_configure
+}
+
+multilib_src_compile() {
+       meson_src_compile
+}
+
+multilib_src_test() {
+       meson_src_test
+}
+
+multilib_src_install() {
+       meson_src_install
+}