mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] [PATCH] usbutils: Version bump. 017 -> 018
@ 2024-11-11 21:31 Christian Melki
  2024-11-13 13:19 ` [ptxdist] [APPLIED] " Michael Olbrich
  0 siblings, 1 reply; 2+ messages in thread
From: Christian Melki @ 2024-11-11 21:31 UTC (permalink / raw)
  To: ptxdist

Various bugfixes, build system changed to meson.
https://github.com/gregkh/usbutils/blob/v018/NEWS

* Convert to meson, add meson to the dependencies.

Signed-off-by: Christian Melki <christian.melki@t2data.com>
---
 rules/usbutils.in   |  1 +
 rules/usbutils.make | 11 +++++------
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/rules/usbutils.in b/rules/usbutils.in
index 105bb078a..1d4d35c8f 100644
--- a/rules/usbutils.in
+++ b/rules/usbutils.in
@@ -1,6 +1,7 @@
 ## SECTION=shell_and_console
 
 menuconfig USBUTILS
+	select HOST_MESON
 	select LIBUSB
 	select UDEV
 	select UDEV_LIBUDEV
diff --git a/rules/usbutils.make b/rules/usbutils.make
index 1dac53823..3fb627c31 100644
--- a/rules/usbutils.make
+++ b/rules/usbutils.make
@@ -15,8 +15,8 @@ PACKAGES-$(PTXCONF_USBUTILS) += usbutils
 #
 # Paths and names
 #
-USBUTILS_VERSION	:= 017
-USBUTILS_MD5		:= 8ff21441faf2e8128e4810b3d6e49059
+USBUTILS_VERSION	:= 018
+USBUTILS_MD5		:= 0a351e2241c50a1f026a455dccf24d73
 USBUTILS		:= usbutils-$(USBUTILS_VERSION)
 USBUTILS_SUFFIX		:= tar.xz
 USBUTILS_URL		:= $(call ptx/mirror, KERNEL, utils/usb/usbutils/$(USBUTILS).$(USBUTILS_SUFFIX))
@@ -29,12 +29,11 @@ USBUTILS_LICENSE	:= GPL-2.0-only
 # ----------------------------------------------------------------------------
 
 #
-# autoconf
+# meson
 #
-USBUTILS_CONF_TOOL	:= autoconf
+USBUTILS_CONF_TOOL	:= meson
 USBUTILS_CONF_OPT	:= \
-	$(CROSS_AUTOCONF_USR) \
-	$(GLOBAL_LARGE_FILE_OPTION)
+	$(CROSS_MESON_USR)
 
 # ----------------------------------------------------------------------------
 # Target-Install
-- 
2.34.1




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

* Re: [ptxdist] [APPLIED] usbutils: Version bump. 017 -> 018
  2024-11-11 21:31 [ptxdist] [PATCH] usbutils: Version bump. 017 -> 018 Christian Melki
@ 2024-11-13 13:19 ` Michael Olbrich
  0 siblings, 0 replies; 2+ messages in thread
From: Michael Olbrich @ 2024-11-13 13:19 UTC (permalink / raw)
  To: ptxdist; +Cc: Christian Melki

Thanks, applied as 7777ec5038929cd839ea0e6a47e34ba3d2d09fc7.

Michael

[sent from post-receive hook]

On Wed, 13 Nov 2024 14:19:54 +0100, Christian Melki <christian.melki@t2data.com> wrote:
> Various bugfixes, build system changed to meson.
> https://github.com/gregkh/usbutils/blob/v018/NEWS
> 
> * Convert to meson, add meson to the dependencies.
> 
> Signed-off-by: Christian Melki <christian.melki@t2data.com>
> Message-Id: <20241111213100.420-1-christian.melki@t2data.com>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/rules/usbutils.in b/rules/usbutils.in
> index 105bb078af58..1d4d35c8f4e2 100644
> --- a/rules/usbutils.in
> +++ b/rules/usbutils.in
> @@ -1,6 +1,7 @@
>  ## SECTION=shell_and_console
>  
>  menuconfig USBUTILS
> +	select HOST_MESON
>  	select LIBUSB
>  	select UDEV
>  	select UDEV_LIBUDEV
> diff --git a/rules/usbutils.make b/rules/usbutils.make
> index 1dac53823fc8..3fb627c3176c 100644
> --- a/rules/usbutils.make
> +++ b/rules/usbutils.make
> @@ -15,8 +15,8 @@ PACKAGES-$(PTXCONF_USBUTILS) += usbutils
>  #
>  # Paths and names
>  #
> -USBUTILS_VERSION	:= 017
> -USBUTILS_MD5		:= 8ff21441faf2e8128e4810b3d6e49059
> +USBUTILS_VERSION	:= 018
> +USBUTILS_MD5		:= 0a351e2241c50a1f026a455dccf24d73
>  USBUTILS		:= usbutils-$(USBUTILS_VERSION)
>  USBUTILS_SUFFIX		:= tar.xz
>  USBUTILS_URL		:= $(call ptx/mirror, KERNEL, utils/usb/usbutils/$(USBUTILS).$(USBUTILS_SUFFIX))
> @@ -29,12 +29,11 @@ USBUTILS_LICENSE	:= GPL-2.0-only
>  # ----------------------------------------------------------------------------
>  
>  #
> -# autoconf
> +# meson
>  #
> -USBUTILS_CONF_TOOL	:= autoconf
> +USBUTILS_CONF_TOOL	:= meson
>  USBUTILS_CONF_OPT	:= \
> -	$(CROSS_AUTOCONF_USR) \
> -	$(GLOBAL_LARGE_FILE_OPTION)
> +	$(CROSS_MESON_USR)
>  
>  # ----------------------------------------------------------------------------
>  # Target-Install



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

end of thread, other threads:[~2024-11-13 13:20 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-11-11 21:31 [ptxdist] [PATCH] usbutils: Version bump. 017 -> 018 Christian Melki
2024-11-13 13:19 ` [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