mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
From: Michael Olbrich <m.olbrich@pengutronix.de>
To: ptxdist@pengutronix.de
Cc: Michael Tretter <m.tretter@pengutronix.de>
Subject: Re: [ptxdist] [APPLIED] v4l-utils: version bump 1.24.1 -> 1.26.0
Date: Tue, 28 Nov 2023 09:37:01 +0100	[thread overview]
Message-ID: <20231128083701.1056151-1-m.olbrich@pengutronix.de> (raw)
In-Reply-To: <20231127154937.1621670-1-m.tretter@pengutronix.de>

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	:= \



      reply	other threads:[~2023-11-28  8:39 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-11-27 15:49 [ptxdist] [PATCH] " Michael Tretter
2023-11-28  8:37 ` Michael Olbrich [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20231128083701.1056151-1-m.olbrich@pengutronix.de \
    --to=m.olbrich@pengutronix.de \
    --cc=m.tretter@pengutronix.de \
    --cc=ptxdist@pengutronix.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox