mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] [PATCH] v4l-utils: version bump 1.24.1 -> 1.26.0
@ 2023-11-27 15:49 Michael Tretter
  2023-11-28  8:37 ` [ptxdist] [APPLIED] " Michael Olbrich
  0 siblings, 1 reply; 2+ messages in thread
From: Michael Tretter @ 2023-11-27 15:49 UTC (permalink / raw)
  To: ptxdist; +Cc: mtr

- Switch to meson build system

- ir-keytable can be built without bpf support

- Release tarball has changed to tar.xz

Signed-off-by: Michael Tretter <m.tretter@pengutronix.de>
---
 rules/v4l-utils.in   |  1 +
 rules/v4l-utils.make | 63 ++++++++++++++++++++------------------------
 2 files changed, 30 insertions(+), 34 deletions(-)

diff --git a/rules/v4l-utils.in b/rules/v4l-utils.in
index d722aeb2531e..8b20fbc89d16 100644
--- a/rules/v4l-utils.in
+++ b/rules/v4l-utils.in
@@ -3,6 +3,7 @@
 menuconfig V4L_UTILS
 	tristate
 	prompt "v4l-utils                     "
+	select HOST_MESON
 	select UDEV		if V4L_UTILS_MEDIACTL
 	select UDEV_LIBUDEV	if V4L_UTILS_MEDIACTL
 	select LIBC_DL		if V4L_UTILS_LIBV4L2 || V4L_UTILS_MEDIACTL
diff --git a/rules/v4l-utils.make b/rules/v4l-utils.make
index 1f4c608b9a84..f991e8cb1117 100644
--- a/rules/v4l-utils.make
+++ b/rules/v4l-utils.make
@@ -14,10 +14,10 @@ PACKAGES-$(PTXCONF_V4L_UTILS) += v4l-utils
 #
 # Paths and names
 #
-V4L_UTILS_VERSION	:= 1.24.1
-V4L_UTILS_MD5		:= 8ba9c73c4319b6afab5fa4358edc43de
+V4L_UTILS_VERSION	:= 1.26.0
+V4L_UTILS_MD5		:= 0ccb2a18e1d3a3b2986591753a2b3a7f
 V4L_UTILS		:= v4l-utils-$(V4L_UTILS_VERSION)
-V4L_UTILS_SUFFIX	:= tar.bz2
+V4L_UTILS_SUFFIX	:= tar.xz
 V4L_UTILS_URL		:= http://linuxtv.org/downloads/v4l-utils/$(V4L_UTILS).$(V4L_UTILS_SUFFIX)
 V4L_UTILS_SOURCE	:= $(SRCDIR)/$(V4L_UTILS).$(V4L_UTILS_SUFFIX)
 V4L_UTILS_DIR		:= $(BUILDDIR)/$(V4L_UTILS)
@@ -31,38 +31,33 @@ V4L_UTILS_LICENSE_FILES	:= \
 # Prepare
 # ----------------------------------------------------------------------------
 
-V4L_UTILS_CONF_TOOL	:= autoconf
+V4L_UTILS_CONF_TOOL	:= meson
 V4L_UTILS_CONF_OPT	:= \
-	$(CROSS_AUTOCONF_USR) \
-	--disable-doxygen-doc \
-	--disable-doxygen-dot \
-	--disable-doxygen-man \
-	--disable-doxygen-rtf \
-	--disable-doxygen-xml \
-	--disable-doxygen-chm \
-	--disable-doxygen-chi \
-	--disable-doxygen-html \
-	--disable-doxygen-ps \
-	--disable-doxygen-pdf \
-	--disable-nls \
-	--disable-rpath \
-	--disable-libdvbv5 \
-	--enable-dyn-libv4l \
-	--enable-v4l-utils \
-	--enable-v4l2-compliance-libv4l \
-	--disable-v4l2-compliance-32 \
-	--$(call ptx/endis, PTXCONF_V4L_UTILS_TRACER)-v4l2-tracer \
-	--enable-v4l2-ctl-libv4l \
-	--enable-v4l2-ctl-stream-to \
-	--disable-v4l2-ctl-32 \
-	--disable-qv4l2 \
-	--disable-qvidcap \
-	--disable-gconv \
-	--$(call ptx/endis, PTXCONF_V4L_UTILS_IRKEYTABLE)-bpf \
-	--$(call ptx/wwo, PTXCONF_V4L_UTILS_LIBV4LCONVERT)-jpeg \
-	--$(call ptx/wwo, PTXCONF_V4L_UTILS_MEDIACTL)-libudev \
-	--with-udevdir=/usr/lib/udev \
-	--with-systemdsystemunitdir=/usr/lib/systemd/system
+	$(CROSS_MESON_USR) \
+	-Dbpf=disabled \
+	-Ddoxygen-doc=disabled \
+	-Ddoxygen-html=false \
+	-Ddoxygen-man=false \
+	-Dgconv=disabled \
+	-Dgconvsysdir= \
+	-Djpeg=$(call ptx/endis, PTXCONF_V4L_UTILS_LIBV4LCONVERT)d \
+	-Dlibdvbv5=disabled \
+	-Dlibv4l1subdir=libv4l \
+	-Dlibv4l2subdir=libv4l \
+	-Dlibv4lconvertsubdir=libv4l \
+	-Dqv4l2=disabled \
+	-Dqvidcap=disabled \
+	-Dsystemdsystemunitdir=/usr/lib/systemd/system \
+	-Dudevdir=/usr/lib/udev \
+	-Dv4l-plugins=true \
+	-Dv4l-utils=true \
+	-Dv4l-wrappers=true \
+	-Dv4l2-compliance-32=false \
+	-Dv4l2-compliance-libv4l=true \
+	-Dv4l2-ctl-32=false \
+	-Dv4l2-ctl-libv4l=true \
+	-Dv4l2-ctl-stream-to=true \
+	-Dv4l2-tracer=$(call ptx/endis, PTXCONF_V4L_UTILS_TRACER)d
 
 ifdef PTXCONF_KERNEL_HEADER
 V4L_UTILS_CPPFLAGS	:= \
-- 
2.39.2




^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [ptxdist] [APPLIED] v4l-utils: version bump 1.24.1 -> 1.26.0
  2023-11-27 15:49 [ptxdist] [PATCH] v4l-utils: version bump 1.24.1 -> 1.26.0 Michael Tretter
@ 2023-11-28  8:37 ` Michael Olbrich
  0 siblings, 0 replies; 2+ messages in thread
From: Michael Olbrich @ 2023-11-28  8:37 UTC (permalink / raw)
  To: ptxdist; +Cc: Michael Tretter

Thanks, applied as ae35af4f9543d8d85a04484932c652ea23cb66a8.

Michael

[sent from post-receive hook]

On Tue, 28 Nov 2023 09:37:01 +0100, Michael Tretter <m.tretter@pengutronix.de> wrote:
> - Switch to meson build system
> 
> - ir-keytable can be built without bpf support
> 
> - Release tarball has changed to tar.xz
> 
> Signed-off-by: Michael Tretter <m.tretter@pengutronix.de>
> Message-Id: <20231127154937.1621670-1-m.tretter@pengutronix.de>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/rules/v4l-utils.in b/rules/v4l-utils.in
> index 1394fbcd41c9..8bbd12f47166 100644
> --- a/rules/v4l-utils.in
> +++ b/rules/v4l-utils.in
> @@ -3,6 +3,7 @@
>  menuconfig V4L_UTILS
>  	tristate
>  	prompt "v4l-utils                     "
> +	select HOST_MESON
>  	select UDEV		if V4L_UTILS_MEDIACTL
>  	select UDEV_LIBUDEV	if V4L_UTILS_MEDIACTL
>  	select LIBC_DL		if V4L_UTILS_LIBV4L2 || V4L_UTILS_MEDIACTL
> diff --git a/rules/v4l-utils.make b/rules/v4l-utils.make
> index 1f4c608b9a84..f991e8cb1117 100644
> --- a/rules/v4l-utils.make
> +++ b/rules/v4l-utils.make
> @@ -14,10 +14,10 @@ PACKAGES-$(PTXCONF_V4L_UTILS) += v4l-utils
>  #
>  # Paths and names
>  #
> -V4L_UTILS_VERSION	:= 1.24.1
> -V4L_UTILS_MD5		:= 8ba9c73c4319b6afab5fa4358edc43de
> +V4L_UTILS_VERSION	:= 1.26.0
> +V4L_UTILS_MD5		:= 0ccb2a18e1d3a3b2986591753a2b3a7f
>  V4L_UTILS		:= v4l-utils-$(V4L_UTILS_VERSION)
> -V4L_UTILS_SUFFIX	:= tar.bz2
> +V4L_UTILS_SUFFIX	:= tar.xz
>  V4L_UTILS_URL		:= http://linuxtv.org/downloads/v4l-utils/$(V4L_UTILS).$(V4L_UTILS_SUFFIX)
>  V4L_UTILS_SOURCE	:= $(SRCDIR)/$(V4L_UTILS).$(V4L_UTILS_SUFFIX)
>  V4L_UTILS_DIR		:= $(BUILDDIR)/$(V4L_UTILS)
> @@ -31,38 +31,33 @@ V4L_UTILS_LICENSE_FILES	:= \
>  # Prepare
>  # ----------------------------------------------------------------------------
>  
> -V4L_UTILS_CONF_TOOL	:= autoconf
> +V4L_UTILS_CONF_TOOL	:= meson
>  V4L_UTILS_CONF_OPT	:= \
> -	$(CROSS_AUTOCONF_USR) \
> -	--disable-doxygen-doc \
> -	--disable-doxygen-dot \
> -	--disable-doxygen-man \
> -	--disable-doxygen-rtf \
> -	--disable-doxygen-xml \
> -	--disable-doxygen-chm \
> -	--disable-doxygen-chi \
> -	--disable-doxygen-html \
> -	--disable-doxygen-ps \
> -	--disable-doxygen-pdf \
> -	--disable-nls \
> -	--disable-rpath \
> -	--disable-libdvbv5 \
> -	--enable-dyn-libv4l \
> -	--enable-v4l-utils \
> -	--enable-v4l2-compliance-libv4l \
> -	--disable-v4l2-compliance-32 \
> -	--$(call ptx/endis, PTXCONF_V4L_UTILS_TRACER)-v4l2-tracer \
> -	--enable-v4l2-ctl-libv4l \
> -	--enable-v4l2-ctl-stream-to \
> -	--disable-v4l2-ctl-32 \
> -	--disable-qv4l2 \
> -	--disable-qvidcap \
> -	--disable-gconv \
> -	--$(call ptx/endis, PTXCONF_V4L_UTILS_IRKEYTABLE)-bpf \
> -	--$(call ptx/wwo, PTXCONF_V4L_UTILS_LIBV4LCONVERT)-jpeg \
> -	--$(call ptx/wwo, PTXCONF_V4L_UTILS_MEDIACTL)-libudev \
> -	--with-udevdir=/usr/lib/udev \
> -	--with-systemdsystemunitdir=/usr/lib/systemd/system
> +	$(CROSS_MESON_USR) \
> +	-Dbpf=disabled \
> +	-Ddoxygen-doc=disabled \
> +	-Ddoxygen-html=false \
> +	-Ddoxygen-man=false \
> +	-Dgconv=disabled \
> +	-Dgconvsysdir= \
> +	-Djpeg=$(call ptx/endis, PTXCONF_V4L_UTILS_LIBV4LCONVERT)d \
> +	-Dlibdvbv5=disabled \
> +	-Dlibv4l1subdir=libv4l \
> +	-Dlibv4l2subdir=libv4l \
> +	-Dlibv4lconvertsubdir=libv4l \
> +	-Dqv4l2=disabled \
> +	-Dqvidcap=disabled \
> +	-Dsystemdsystemunitdir=/usr/lib/systemd/system \
> +	-Dudevdir=/usr/lib/udev \
> +	-Dv4l-plugins=true \
> +	-Dv4l-utils=true \
> +	-Dv4l-wrappers=true \
> +	-Dv4l2-compliance-32=false \
> +	-Dv4l2-compliance-libv4l=true \
> +	-Dv4l2-ctl-32=false \
> +	-Dv4l2-ctl-libv4l=true \
> +	-Dv4l2-ctl-stream-to=true \
> +	-Dv4l2-tracer=$(call ptx/endis, PTXCONF_V4L_UTILS_TRACER)d
>  
>  ifdef PTXCONF_KERNEL_HEADER
>  V4L_UTILS_CPPFLAGS	:= \



^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2023-11-28  8:39 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-11-27 15:49 [ptxdist] [PATCH] v4l-utils: version bump 1.24.1 -> 1.26.0 Michael Tretter
2023-11-28  8:37 ` [ptxdist] [APPLIED] " Michael Olbrich

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox