commit: 64d3315710ceddcc86702c04fb693c989d0120ae
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 17 19:28:36 2025 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Thu Apr 17 19:28:58 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64d33157
sys-apps/edid-decode: add 0_pre20241119
This is the latest stand-alone release. All future releases will be
included by the v4l-utils project. This is provided by
media-libs/libv4l, but currently no release with included edid-decode
yet exist. This will be in future the case.
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
sys-apps/edid-decode/Manifest | 1 +
.../edid-decode/edid-decode-0_pre20241119.ebuild | 34 ++++++++++++++++++++++
2 files changed, 35 insertions(+)
diff --git a/sys-apps/edid-decode/Manifest b/sys-apps/edid-decode/Manifest
index d6afbf64e9e0..208d07b1a26e 100644
--- a/sys-apps/edid-decode/Manifest
+++ b/sys-apps/edid-decode/Manifest
@@ -1 +1,2 @@
DIST edid-decode-0_pre20230131.tar.gz 147392 BLAKE2B
8a08ca44bbdb61b0264a24b911b082d264eb1ef281d98a93dc12d62f5d233cc898cf1ad06647e680f8ab49b047721f31c80572582a2dd5dc8fec93ff70227b03
SHA512
53619eb79e456d4bf3566506019ad77a8f8dacb4211106cdf21164c26d0d026383bedd8a8ba2a7050d4d0657e1bbca51fb89978cfd066f1130f888a4537dd19b
+DIST edid-decode-0_pre20241119.tar.gz 166103 BLAKE2B
365059aa4de92a645943b46c26aaba6a10125972c0092329cd624393bfe1ad489b5ac52921dac0302cf6bb2f0b52bf1072722f40f75514e096847614947a1711
SHA512
12e2a9844926be1176251e488fe42b1e36c285657a9963b3ab0a287661fcfa71fd3ca7215429c55d42d2c60d648921a1b0adc3c9de6ebf1f031a87f4102e6b2c
diff --git a/sys-apps/edid-decode/edid-decode-0_pre20241119.ebuild
b/sys-apps/edid-decode/edid-decode-0_pre20241119.ebuild
new file mode 100644
index 000000000000..d9c9fdc66a9d
--- /dev/null
+++ b/sys-apps/edid-decode/edid-decode-0_pre20241119.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit meson toolchain-funcs
+
+EGIT_COMMIT="5332a3b76080e17137db15fd31e2d3949cef5f84"
+MY_P="${PN}-${EGIT_COMMIT}"
+
+DESCRIPTION="Decode EDID data in a human-readable format"
+HOMEPAGE="https://git.linuxtv.org/edid-decode.git/"
+SRC_URI="https://dev.gentoo.org/~conikost/distfiles/${P}.tar.gz"
+S="${WORKDIR}/${MY_P}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86"
+IUSE="examples"
+
+src_compile() {
+ tc-export CXX
+ meson_src_compile
+}
+
+src_install() {
+ meson_src_install
+ einstalldocs
+
+ if use examples; then
+ insinto /usr/share/edid-decode/examples
+ doins data/*
+ fi
+}