unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Zheng Junjie <zhengjunjie@iscas.ac.cn>
To: 73981@debbugs.gnu.org
Subject: [bug#73981] [PATCH v2 3/4] gnu: libqmi: Update to 1.34.0.
Date: Tue, 12 Nov 2024 11:46:31 +0800	[thread overview]
Message-ID: <8db675763609f4eab9d31d246f070e86c3623a7c.1731382968.git.zhengjunjie@iscas.ac.cn> (raw)
In-Reply-To: <cover.1731382968.git.zhengjunjie@iscas.ac.cn>

* gnu/packages/freedesktop.scm (libqmi): Update to 1.34.0.
[inputs]: Add bash-completion.
[propagated-inputs]: Add libmbim and libqrtr-glib.
[native-inputs]: Add gobject-introspection and help2man. Replace
python-wrapper with python-minimal.
[build-system]: Switch to meson-build-system.
[source]: Swich to git-fetch.

Change-Id: I8a023cc07e5484d8abd5df4615ad5f4115729c1a
---
 gnu/packages/freedesktop.scm | 38 +++++++++++++++++++++++-------------
 1 file changed, 24 insertions(+), 14 deletions(-)

diff --git a/gnu/packages/freedesktop.scm b/gnu/packages/freedesktop.scm
index 1a192f0a806..a3dc92108ec 100644
--- a/gnu/packages/freedesktop.scm
+++ b/gnu/packages/freedesktop.scm
@@ -1971,23 +1971,33 @@ (define-public libqrtr-glib
 (define-public libqmi
   (package
     (name "libqmi")
-    (version "1.30.8")
-    (source (origin
-              (method url-fetch)
-              (uri (string-append
-                    "https://www.freedesktop.org/software/libqmi/"
-                    "libqmi-" version ".tar.xz"))
-              (sha256
-               (base32
-                "140rmjw436rh6rqmnfw6yaflpffd27ilwcv4s9jvvl1skv784946"))))
-    (build-system gnu-build-system)
+    (version "1.34.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://gitlab.freedesktop.org/mobile-broadband/libqmi")
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32
+         "1m5y2sf14qd2i9mvbb68wxqlfwvpiprgz8zmcx6wb2cnjgsszmwp"))))
+    (build-system meson-build-system)
     (inputs
-     (list libgudev))
+     (list
+      bash-completion
+      libgudev))
     (native-inputs
-     (list `(,glib "bin") ; for glib-mkenums
-           pkg-config python-wrapper))
+     (list `(,glib "bin")               ;for glib-mkenums
+           gobject-introspection
+           help2man
+           pkg-config
+           python-minimal))
+    ;; These are required by qmi-glib.pc.
     (propagated-inputs
-     (list glib)) ; required by qmi-glib.pc
+     (list glib
+           libmbim
+           libqrtr-glib))
     (synopsis "Library to communicate with QMI-powered modems")
     (home-page "https://www.freedesktop.org/wiki/Software/libqmi/")
     (description
-- 
2.46.0





  parent reply	other threads:[~2024-11-12  3:47 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-10-24  7:36 [bug#73981] [PATCH 0/4] gnu: update modem-manager and deps Zheng Junjie
2024-10-24  7:40 ` [bug#73981] [PATCH 1/4] gnu: libmbim: Update to 1.30.0 Zheng Junjie
2024-11-11 14:22   ` Maxim Cournoyer
2024-10-24  7:40 ` [bug#73981] [PATCH 2/4] gnu: Add libqrtr-glib Zheng Junjie
2024-11-11 14:28   ` Maxim Cournoyer
2024-10-24  7:40 ` [bug#73981] [PATCH 3/4] gnu: libqmi: Update to 1.34.0 Zheng Junjie
2024-11-12  1:06   ` Maxim Cournoyer
2024-10-24  7:40 ` [bug#73981] [PATCH 4/4] gnu: modem-manager: Update to 1.22.0 Zheng Junjie
2024-11-12  1:13   ` Maxim Cournoyer
2024-11-12  3:46 ` [bug#73981] [PATCH v2 0/4] update modem-manager and deps Zheng Junjie
2024-11-12  3:46   ` [bug#73981] [PATCH v2 1/4] gnu: libmbim: Update to 1.30.0 Zheng Junjie
2024-11-12  3:46   ` [bug#73981] [PATCH v2 2/4] gnu: Add libqrtr-glib Zheng Junjie
2024-11-12  3:46   ` Zheng Junjie [this message]
2024-11-12  3:46   ` [bug#73981] [PATCH v2 4/4] gnu: modem-manager: Update to 1.22.0 Zheng Junjie
2024-11-15 10:54   ` bug#73981: [PATCH v2 0/4] update modem-manager and deps Z572

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

  List information: https://guix.gnu.org/

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

  git send-email \
    --in-reply-to=8db675763609f4eab9d31d246f070e86c3623a7c.1731382968.git.zhengjunjie@iscas.ac.cn \
    --to=zhengjunjie@iscas.ac.cn \
    --cc=73981@debbugs.gnu.org \
    /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.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).