From 35df2ae8b95b1e4620727cc3af57490776bab7f2 Mon Sep 17 00:00:00 2001 From: Fredrik Eriksson Date: Sat, 27 Jun 2026 13:46:05 +0200 Subject: [PATCH] add hdr10plus_tool --- media-video/hdr10plus_tool-bin/Manifest | 2 ++ .../hdr10plus_tool-bin-1.7.2.ebuild | 31 +++++++++++++++++++ 2 files changed, 33 insertions(+) create mode 100644 media-video/hdr10plus_tool-bin/Manifest create mode 100644 media-video/hdr10plus_tool-bin/hdr10plus_tool-bin-1.7.2.ebuild diff --git a/media-video/hdr10plus_tool-bin/Manifest b/media-video/hdr10plus_tool-bin/Manifest new file mode 100644 index 0000000..310d401 --- /dev/null +++ b/media-video/hdr10plus_tool-bin/Manifest @@ -0,0 +1,2 @@ +DIST hdr10plus_tool-1.7.2-x86_64-unknown-linux-musl.tar.gz 1409913 BLAKE2B ecf649132460361715ac9f5d653a622d735502fb4ad6c3d0bfaf4c7f9fb4d6f033880eca621fc74315a5d7dbb415016d6130d2da36ccd097af8a9113e5167f0c SHA512 0d7b91d54429252ca0add8baf6527ab918f0a8eb4aa4ed0d5ba218ed44d17423d2304cdf08ce191c2057683febde916d7f3b25a3eaf69dd1c3b8bf182643a4ce +EBUILD hdr10plus_tool-bin-1.7.2.ebuild 592 BLAKE2B 7c40103c2da37e2f93b9476c8bc6ec4d112d37369fd5c92a70a0519c907d07c7f7245173927fa2e4bb48d6c6831970476c7d7e830d4a7d2a6dd279abf9003988 SHA512 80f29b073a18c9890fabfb667c1b8bab12c001b251defb17c1c3037335037e75503c9ff548bb2bd080866f2f055897bb2195297e315de9d962858097dae56f8d diff --git a/media-video/hdr10plus_tool-bin/hdr10plus_tool-bin-1.7.2.ebuild b/media-video/hdr10plus_tool-bin/hdr10plus_tool-bin-1.7.2.ebuild new file mode 100644 index 0000000..d827f46 --- /dev/null +++ b/media-video/hdr10plus_tool-bin/hdr10plus_tool-bin-1.7.2.ebuild @@ -0,0 +1,31 @@ +# Copyright 2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="CLI utility to work with HDR10+ in HEVC files." +HOMEPAGE="https://github.com/quietvoid/hdr10plus_tool" +SRC_URI="https://github.com/quietvoid/hdr10plus_tool/releases/download/1.7.2/hdr10plus_tool-1.7.2-x86_64-unknown-linux-musl.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +DEPEND="" +RDEPEND="${DEPEND}" +BDEPEND="" + +RESTRICT="mirror test" + +QA_PREBUILT="/usr/bin/hdr10plus_tool" + +S="${WORKDIR}" + +src_unpack() { + unpack ${A} +} + +src_install() { + dobin hdr10plus_tool +} +