All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] package/libmbim: bump to version 1.26.0
@ 2021-07-28  7:45 yegorslists--- via buildroot
  2021-07-28 10:21 ` Aleksander Morgado
  2021-07-28 19:13 ` Thomas Petazzoni
  0 siblings, 2 replies; 3+ messages in thread
From: yegorslists--- via buildroot @ 2021-07-28  7:45 UTC (permalink / raw)
  To: buildroot; +Cc: Eric Le Bihan, Aleksander Morgado

From: Yegor Yefremov <yegorslists@googlemail.com>

This release introduces meson build system support that fixes
gobject-intorspection issue with autotools.

As meson files are only available in git, switch the location to
https://gitlab.freedesktop.org.

Since 1.26.0 libgudev is not required anymore so drop this dependency.

Add support for bash-completion.

Fixes:
http://autobuild.buildroot.net/results/f8a81aad0e262a567a2b31712575472ae92e5518

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
---
 package/libmbim/libmbim.hash |  2 +-
 package/libmbim/libmbim.mk   | 23 ++++++++++++++---------
 2 files changed, 15 insertions(+), 10 deletions(-)

diff --git a/package/libmbim/libmbim.hash b/package/libmbim/libmbim.hash
index 2779be1e96..07cfd69163 100644
--- a/package/libmbim/libmbim.hash
+++ b/package/libmbim/libmbim.hash
@@ -1,4 +1,4 @@
 # Locally computed
-sha256  02590736163fff10e5732191fccc1b9920969616ddc59613a003052a116a3c25  libmbim-1.24.8.tar.xz
+sha256  63b53db0196dadea673f04524b0683ce40282f25bfd513d398e2a10b992cac01  libmbim-1.26.0.tar.gz
 sha256  8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643  COPYING
 sha256  dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551  COPYING.LIB
diff --git a/package/libmbim/libmbim.mk b/package/libmbim/libmbim.mk
index b343dec238..cdc3fabedb 100644
--- a/package/libmbim/libmbim.mk
+++ b/package/libmbim/libmbim.mk
@@ -4,9 +4,8 @@
 #
 ################################################################################
 
-LIBMBIM_VERSION = 1.24.8
-LIBMBIM_SITE = https://www.freedesktop.org/software/libmbim
-LIBMBIM_SOURCE = libmbim-$(LIBMBIM_VERSION).tar.xz
+LIBMBIM_VERSION = 1.26.0
+LIBMBIM_SITE = https://gitlab.freedesktop.org/mobile-broadband/libmbim/-/archive/$(LIBMBIM_VERSION)
 LIBMBIM_LICENSE = LGPL-2.0+ (library), GPL-2.0+ (programs)
 LIBMBIM_LICENSE_FILES = COPYING COPYING.LIB
 LIBMBIM_CPE_ID_VENDOR = freedesktop
@@ -14,12 +13,18 @@ LIBMBIM_INSTALL_STAGING = YES
 
 LIBMBIM_DEPENDENCIES = libglib2
 
-# if libgudev available, request udev support
-ifeq ($(BR2_PACKAGE_LIBGUDEV),y)
-LIBMBIM_DEPENDENCIES += libgudev
-LIBMBIM_CONF_OPTS += --with-udev
+ifeq ($(BR2_PACKAGE_GOBJECT_INTROSPECTION),y)
+LIBMBIM_DEPENDENCIES += gobject-introspection
+LIBMBIM_CONF_OPTS += -Dintrospection=true
 else
-LIBMBIM_CONF_OPTS += --without-udev
+LIBMBIM_CONF_OPTS += -Dintrospection=false
 endif
 
-$(eval $(autotools-package))
+ifeq ($(BR2_PACKAGE_BASH_COMPLETION),y)
+LIBMBIM_DEPENDENCIES += bash-completion
+LIBMBIM_CONF_OPTS += -Dbash_completion=true
+else
+LIBMBIM_CONF_OPTS += -Dbash_completion=false
+endif
+
+$(eval $(meson-package))
-- 
2.17.0

_______________________________________________
buildroot mailing list
buildroot@busybox.net
http://lists.busybox.net/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH] package/libmbim: bump to version 1.26.0
  2021-07-28  7:45 [Buildroot] [PATCH] package/libmbim: bump to version 1.26.0 yegorslists--- via buildroot
@ 2021-07-28 10:21 ` Aleksander Morgado
  2021-07-28 19:13 ` Thomas Petazzoni
  1 sibling, 0 replies; 3+ messages in thread
From: Aleksander Morgado @ 2021-07-28 10:21 UTC (permalink / raw)
  To: Yegor Yefremov; +Cc: Eric Le Bihan, buildroot

On Wed, Jul 28, 2021 at 9:45 AM <yegorslists@googlemail.com> wrote:
>
> From: Yegor Yefremov <yegorslists@googlemail.com>
>
> This release introduces meson build system support that fixes
> gobject-intorspection issue with autotools.
>
> As meson files are only available in git, switch the location to
> https://gitlab.freedesktop.org.
>
> Since 1.26.0 libgudev is not required anymore so drop this dependency.
>
> Add support for bash-completion.
>
> Fixes:
> http://autobuild.buildroot.net/results/f8a81aad0e262a567a2b31712575472ae92e5518
>
> Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>

Acked-by: Aleksander Morgado <aleksander@aleksander.es>

> ---
>  package/libmbim/libmbim.hash |  2 +-
>  package/libmbim/libmbim.mk   | 23 ++++++++++++++---------
>  2 files changed, 15 insertions(+), 10 deletions(-)
>
> diff --git a/package/libmbim/libmbim.hash b/package/libmbim/libmbim.hash
> index 2779be1e96..07cfd69163 100644
> --- a/package/libmbim/libmbim.hash
> +++ b/package/libmbim/libmbim.hash
> @@ -1,4 +1,4 @@
>  # Locally computed
> -sha256  02590736163fff10e5732191fccc1b9920969616ddc59613a003052a116a3c25  libmbim-1.24.8.tar.xz
> +sha256  63b53db0196dadea673f04524b0683ce40282f25bfd513d398e2a10b992cac01  libmbim-1.26.0.tar.gz
>  sha256  8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643  COPYING
>  sha256  dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551  COPYING.LIB
> diff --git a/package/libmbim/libmbim.mk b/package/libmbim/libmbim.mk
> index b343dec238..cdc3fabedb 100644
> --- a/package/libmbim/libmbim.mk
> +++ b/package/libmbim/libmbim.mk
> @@ -4,9 +4,8 @@
>  #
>  ################################################################################
>
> -LIBMBIM_VERSION = 1.24.8
> -LIBMBIM_SITE = https://www.freedesktop.org/software/libmbim
> -LIBMBIM_SOURCE = libmbim-$(LIBMBIM_VERSION).tar.xz
> +LIBMBIM_VERSION = 1.26.0
> +LIBMBIM_SITE = https://gitlab.freedesktop.org/mobile-broadband/libmbim/-/archive/$(LIBMBIM_VERSION)
>  LIBMBIM_LICENSE = LGPL-2.0+ (library), GPL-2.0+ (programs)
>  LIBMBIM_LICENSE_FILES = COPYING COPYING.LIB
>  LIBMBIM_CPE_ID_VENDOR = freedesktop
> @@ -14,12 +13,18 @@ LIBMBIM_INSTALL_STAGING = YES
>
>  LIBMBIM_DEPENDENCIES = libglib2
>
> -# if libgudev available, request udev support
> -ifeq ($(BR2_PACKAGE_LIBGUDEV),y)
> -LIBMBIM_DEPENDENCIES += libgudev
> -LIBMBIM_CONF_OPTS += --with-udev
> +ifeq ($(BR2_PACKAGE_GOBJECT_INTROSPECTION),y)
> +LIBMBIM_DEPENDENCIES += gobject-introspection
> +LIBMBIM_CONF_OPTS += -Dintrospection=true
>  else
> -LIBMBIM_CONF_OPTS += --without-udev
> +LIBMBIM_CONF_OPTS += -Dintrospection=false
>  endif
>
> -$(eval $(autotools-package))
> +ifeq ($(BR2_PACKAGE_BASH_COMPLETION),y)
> +LIBMBIM_DEPENDENCIES += bash-completion
> +LIBMBIM_CONF_OPTS += -Dbash_completion=true
> +else
> +LIBMBIM_CONF_OPTS += -Dbash_completion=false
> +endif
> +
> +$(eval $(meson-package))
> --
> 2.17.0
>


-- 
Aleksander
https://aleksander.es
_______________________________________________
buildroot mailing list
buildroot@busybox.net
http://lists.busybox.net/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH] package/libmbim: bump to version 1.26.0
  2021-07-28  7:45 [Buildroot] [PATCH] package/libmbim: bump to version 1.26.0 yegorslists--- via buildroot
  2021-07-28 10:21 ` Aleksander Morgado
@ 2021-07-28 19:13 ` Thomas Petazzoni
  1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni @ 2021-07-28 19:13 UTC (permalink / raw)
  To: yegorslists--- via buildroot; +Cc: Eric Le Bihan, buildroot, Aleksander Morgado

On Wed, 28 Jul 2021 09:45:50 +0200
yegorslists--- via buildroot <buildroot@busybox.net> wrote:

> From: Yegor Yefremov <yegorslists@googlemail.com>
> 
> This release introduces meson build system support that fixes
> gobject-intorspection issue with autotools.
> 
> As meson files are only available in git, switch the location to
> https://gitlab.freedesktop.org.
> 
> Since 1.26.0 libgudev is not required anymore so drop this dependency.
> 
> Add support for bash-completion.
> 
> Fixes:
> http://autobuild.buildroot.net/results/f8a81aad0e262a567a2b31712575472ae92e5518
> 
> Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
> ---
>  package/libmbim/libmbim.hash |  2 +-
>  package/libmbim/libmbim.mk   | 23 ++++++++++++++---------
>  2 files changed, 15 insertions(+), 10 deletions(-)

Applied to master, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@busybox.net
http://lists.busybox.net/mailman/listinfo/buildroot

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

end of thread, other threads:[~2021-07-28 19:18 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-28  7:45 [Buildroot] [PATCH] package/libmbim: bump to version 1.26.0 yegorslists--- via buildroot
2021-07-28 10:21 ` Aleksander Morgado
2021-07-28 19:13 ` Thomas Petazzoni

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.