package/libqmi: bump version to 1.30.2
Drop patch from this release. Signed-off-by: Petr Vorel <petr.vorel@gmail.com> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
This commit is contained in:
parent
6977ee6e0e
commit
48bce93285
@ -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
|
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user