diff mbox series

[meta-oe] vdpauinfo: add recipe

Message ID 20240822123031.1156755-1-thomas.perrot@bootlin.com
State Accepted
Headers show
Series [meta-oe] vdpauinfo: add recipe | expand

Commit Message

Thomas Perrot Aug. 22, 2024, 12:30 p.m. UTC
From: Thomas Perrot <thomas.perrot@bootlin.com>

vdpauinfo is a command-line tool that can query the capabilities
of the system's VDPAU implementation.

Signed-off-by: Thomas Perrot <thomas.perrot@bootlin.com>
---
 meta-oe/recipes-graphics/vdpau/vdpauinfo_1.5.bb | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)
 create mode 100644 meta-oe/recipes-graphics/vdpau/vdpauinfo_1.5.bb

Comments

Martin Jansa Aug. 27, 2024, 1:40 p.m. UTC | #1
As this depends on libvdpau and libvdpau has:
inherit features_check
REQUIRED_DISTRO_FEATURES = "x11"

the same restriction should be repeated here to avoid:
ERROR: Nothing PROVIDES 'libvdpau' (but
meta-oe/meta-oe/recipes-graphics/vdpau/vdpauinfo_1.5.bb DEPENDS on or
otherwise requires it)
libvdpau was skipped: missing required distro feature 'x11' (not in
DISTRO_FEATURES)

Will send the fix shortly.

On Thu, Aug 22, 2024 at 2:30 PM Thomas Perrot via
lists.openembedded.org
<thomas.perrot=bootlin.com@lists.openembedded.org> wrote:
>
> From: Thomas Perrot <thomas.perrot@bootlin.com>
>
> vdpauinfo is a command-line tool that can query the capabilities
> of the system's VDPAU implementation.
>
> Signed-off-by: Thomas Perrot <thomas.perrot@bootlin.com>
> ---
>  meta-oe/recipes-graphics/vdpau/vdpauinfo_1.5.bb | 16 ++++++++++++++++
>  1 file changed, 16 insertions(+)
>  create mode 100644 meta-oe/recipes-graphics/vdpau/vdpauinfo_1.5.bb
>
> diff --git a/meta-oe/recipes-graphics/vdpau/vdpauinfo_1.5.bb b/meta-oe/recipes-graphics/vdpau/vdpauinfo_1.5.bb
> new file mode 100644
> index 000000000000..99afe745079f
> --- /dev/null
> +++ b/meta-oe/recipes-graphics/vdpau/vdpauinfo_1.5.bb
> @@ -0,0 +1,16 @@
> +DESCRIPTION = "Tool to query the capabilities of a VDPAU implementation"
> +HOMEPAGE = "https://gitlab.freedesktop.org/vdpau/vdpauinfo"
> +
> +LICENSE = "MIT"
> +LIC_FILES_CHKSUM = "file://COPYING;md5=5b6e110c362fe46168199f3490e52c3c"
> +
> +DEPENDS = "libvdpau"
> +
> +RDEPENDS:${PN} = "libvdpau"
> +
> +SRCREV = "d3c5bd63bf8878d59b22d618d2bb5116db392d28"
> +SRC_URI = "git://anongit.freedesktop.org/vdpau/vdpauinfo;branch=master"
> +
> +S = "${WORKDIR}/git"
> +
> +inherit autotools pkgconfig
> --
> 2.46.0
>
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#111904): https://lists.openembedded.org/g/openembedded-devel/message/111904
> Mute This Topic: https://lists.openembedded.org/mt/108036779/3617156
> Group Owner: openembedded-devel+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub [martin.jansa@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>
diff mbox series

Patch

diff --git a/meta-oe/recipes-graphics/vdpau/vdpauinfo_1.5.bb b/meta-oe/recipes-graphics/vdpau/vdpauinfo_1.5.bb
new file mode 100644
index 000000000000..99afe745079f
--- /dev/null
+++ b/meta-oe/recipes-graphics/vdpau/vdpauinfo_1.5.bb
@@ -0,0 +1,16 @@ 
+DESCRIPTION = "Tool to query the capabilities of a VDPAU implementation"
+HOMEPAGE = "https://gitlab.freedesktop.org/vdpau/vdpauinfo"
+
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://COPYING;md5=5b6e110c362fe46168199f3490e52c3c"
+
+DEPENDS = "libvdpau"
+
+RDEPENDS:${PN} = "libvdpau"
+
+SRCREV = "d3c5bd63bf8878d59b22d618d2bb5116db392d28"
+SRC_URI = "git://anongit.freedesktop.org/vdpau/vdpauinfo;branch=master"
+
+S = "${WORKDIR}/git"
+
+inherit autotools pkgconfig