All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] package/libqmi: bump to version 1.30.2
@ 2021-09-14 16:21 yegorslists--- via buildroot
  2021-09-18 19:54 ` Yann E. MORIN
  0 siblings, 1 reply; 2+ messages in thread
From: yegorslists--- via buildroot @ 2021-09-14 16:21 UTC (permalink / raw)
  To: buildroot; +Cc: Matt Weber, Aleksander Morgado

From: Yegor Yefremov <yegorslists@googlemail.com>

Remove the upstreamed patch.

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
---
 ...build-meson-fix-introspection-option.patch | 33 -------------------
 package/libqmi/libqmi.hash                    |  2 +-
 package/libqmi/libqmi.mk                      |  2 +-
 3 files changed, 2 insertions(+), 35 deletions(-)
 delete mode 100644 package/libqmi/0001-build-meson-fix-introspection-option.patch

diff --git a/package/libqmi/0001-build-meson-fix-introspection-option.patch b/package/libqmi/0001-build-meson-fix-introspection-option.patch
deleted file mode 100644
index 0528868025..0000000000
--- a/package/libqmi/0001-build-meson-fix-introspection-option.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-From bfb066419f288764edbade1e27e93a5dda59a5f4 Mon Sep 17 00:00:00 2001
-From: Aleksander Morgado <aleksander@aleksander.es>
-Date: Fri, 6 Aug 2021 10:32:22 +0200
-Subject: [PATCH] build,meson: fix introspection option
-
-Using -Dintrospection=false would actually not disable it. There is no
-longer an "auto" option for the introspection support, it will be
-either enabled or disabled depending on what the user asks
-for (default enabled).
-
-Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
----
- meson.build | 5 ++++-
- 1 file changed, 4 insertions(+), 1 deletion(-)
-
-diff --git a/meson.build b/meson.build
-index b25bca57..d28e5601 100644
---- a/meson.build
-+++ b/meson.build
-@@ -218,7 +218,10 @@ version_conf.set10('QMI_QRTR_SUPPORTED', enable_qrtr)
- version_conf.set10('QMI_RMNET_SUPPORTED', enable_rmnet)
-
- # introspection support
--enable_gir = dependency('gobject-introspection-1.0', version: '>= 0.9.6', required: get_option('introspection')).found()
-+enable_gir = get_option('introspection')
-+if enable_gir
-+  dependency('gobject-introspection-1.0', version: '>= 0.9.6')
-+endif
-
- random_number = qmi_minor_version + meson.version().split('.').get(1).to_int()
-
---
-2.17.0
diff --git a/package/libqmi/libqmi.hash b/package/libqmi/libqmi.hash
index 0373bb4e75..1f2da45ac0 100644
--- a/package/libqmi/libqmi.hash
+++ b/package/libqmi/libqmi.hash
@@ -1,4 +1,4 @@
 # Locally computed:
 sha256  8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643  COPYING
 sha256  dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551  COPYING.LIB
-sha256  c0421684c12697c448077dd5c0a66c6f745deab3558af578e3f10307c8a0c564  libqmi-1.30.0.tar.gz
+sha256  2eb7c7971b91a64ad830643b0170cff692a69bf0f093ca61d72d3f466a0272d4  libqmi-1.30.2.tar.gz
diff --git a/package/libqmi/libqmi.mk b/package/libqmi/libqmi.mk
index 05fd3ae9af..cd2c2719f9 100644
--- a/package/libqmi/libqmi.mk
+++ b/package/libqmi/libqmi.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-LIBQMI_VERSION = 1.30.0
+LIBQMI_VERSION = 1.30.2
 LIBQMI_SITE = https://gitlab.freedesktop.org/mobile-broadband/libqmi/-/archive/$(LIBQMI_VERSION)
 LIBQMI_LICENSE = LGPL-2.0+ (library), GPL-2.0+ (programs)
 LIBQMI_LICENSE_FILES = COPYING COPYING.LIB
-- 
2.17.0

_______________________________________________
buildroot mailing list
buildroot@lists.buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH] package/libqmi: bump to version 1.30.2
  2021-09-14 16:21 [Buildroot] [PATCH] package/libqmi: bump to version 1.30.2 yegorslists--- via buildroot
@ 2021-09-18 19:54 ` Yann E. MORIN
  0 siblings, 0 replies; 2+ messages in thread
From: Yann E. MORIN @ 2021-09-18 19:54 UTC (permalink / raw)
  To: yegorslists; +Cc: Matt Weber, Aleksander Morgado, buildroot

Yegor, All,

On 2021-09-14 18:21 +0200, yegorslists--- via buildroot spake thusly:
> From: Yegor Yefremov <yegorslists@googlemail.com>
> 
> Remove the upstreamed patch.
> 
> Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>

Sorry, I did not notice you had sent this bump before I applied Petr's
patch.

Regards,
Yann E. MORIN.

> ---
>  ...build-meson-fix-introspection-option.patch | 33 -------------------
>  package/libqmi/libqmi.hash                    |  2 +-
>  package/libqmi/libqmi.mk                      |  2 +-
>  3 files changed, 2 insertions(+), 35 deletions(-)
>  delete mode 100644 package/libqmi/0001-build-meson-fix-introspection-option.patch
> 
> diff --git a/package/libqmi/0001-build-meson-fix-introspection-option.patch b/package/libqmi/0001-build-meson-fix-introspection-option.patch
> deleted file mode 100644
> index 0528868025..0000000000
> --- a/package/libqmi/0001-build-meson-fix-introspection-option.patch
> +++ /dev/null
> @@ -1,33 +0,0 @@
> -From bfb066419f288764edbade1e27e93a5dda59a5f4 Mon Sep 17 00:00:00 2001
> -From: Aleksander Morgado <aleksander@aleksander.es>
> -Date: Fri, 6 Aug 2021 10:32:22 +0200
> -Subject: [PATCH] build,meson: fix introspection option
> -
> -Using -Dintrospection=false would actually not disable it. There is no
> -longer an "auto" option for the introspection support, it will be
> -either enabled or disabled depending on what the user asks
> -for (default enabled).
> -
> -Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
> ----
> - meson.build | 5 ++++-
> - 1 file changed, 4 insertions(+), 1 deletion(-)
> -
> -diff --git a/meson.build b/meson.build
> -index b25bca57..d28e5601 100644
> ---- a/meson.build
> -+++ b/meson.build
> -@@ -218,7 +218,10 @@ version_conf.set10('QMI_QRTR_SUPPORTED', enable_qrtr)
> - version_conf.set10('QMI_RMNET_SUPPORTED', enable_rmnet)
> -
> - # introspection support
> --enable_gir = dependency('gobject-introspection-1.0', version: '>= 0.9.6', required: get_option('introspection')).found()
> -+enable_gir = get_option('introspection')
> -+if enable_gir
> -+  dependency('gobject-introspection-1.0', version: '>= 0.9.6')
> -+endif
> -
> - random_number = qmi_minor_version + meson.version().split('.').get(1).to_int()
> -
> ---
> -2.17.0
> diff --git a/package/libqmi/libqmi.hash b/package/libqmi/libqmi.hash
> index 0373bb4e75..1f2da45ac0 100644
> --- a/package/libqmi/libqmi.hash
> +++ b/package/libqmi/libqmi.hash
> @@ -1,4 +1,4 @@
>  # Locally computed:
>  sha256  8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643  COPYING
>  sha256  dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551  COPYING.LIB
> -sha256  c0421684c12697c448077dd5c0a66c6f745deab3558af578e3f10307c8a0c564  libqmi-1.30.0.tar.gz
> +sha256  2eb7c7971b91a64ad830643b0170cff692a69bf0f093ca61d72d3f466a0272d4  libqmi-1.30.2.tar.gz
> diff --git a/package/libqmi/libqmi.mk b/package/libqmi/libqmi.mk
> index 05fd3ae9af..cd2c2719f9 100644
> --- a/package/libqmi/libqmi.mk
> +++ b/package/libqmi/libqmi.mk
> @@ -4,7 +4,7 @@
>  #
>  ################################################################################
>  
> -LIBQMI_VERSION = 1.30.0
> +LIBQMI_VERSION = 1.30.2
>  LIBQMI_SITE = https://gitlab.freedesktop.org/mobile-broadband/libqmi/-/archive/$(LIBQMI_VERSION)
>  LIBQMI_LICENSE = LGPL-2.0+ (library), GPL-2.0+ (programs)
>  LIBQMI_LICENSE_FILES = COPYING COPYING.LIB
> -- 
> 2.17.0
> 
> _______________________________________________
> buildroot mailing list
> buildroot@lists.buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 561 099 427 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
buildroot mailing list
buildroot@lists.buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

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

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-14 16:21 [Buildroot] [PATCH] package/libqmi: bump to version 1.30.2 yegorslists--- via buildroot
2021-09-18 19:54 ` Yann E. MORIN

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.