[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/08: gnu: libmbim: Update to 1.30.0.
From: |
guix-commits |
Subject: |
04/08: gnu: libmbim: Update to 1.30.0. |
Date: |
Fri, 15 Nov 2024 05:53:22 -0500 (EST) |
z572 pushed a commit to branch master
in repository guix.
commit 3e469ff97445131935227e6e532471bf5eeeaef7
Author: Zheng Junjie <zhengjunjie@iscas.ac.cn>
AuthorDate: Tue Nov 12 11:46:29 2024 +0800
gnu: libmbim: Update to 1.30.0.
* gnu/packages/freedesktop.scm (libmbim): Update to 1.30.0.
[source]: Switch to git-fetch.
[build-system]: Switch to meson-build-system.
[native-inputs]: Add gobject-introspection, help2man. Replace
python-wrapper with python-minimal.
[inputs]: Add bash-completion.
Change-Id: I607bff667a057e58bebb2f706d7021a4d1c8d763
---
gnu/packages/freedesktop.scm | 35 +++++++++++++++++++++--------------
1 file changed, 21 insertions(+), 14 deletions(-)
diff --git a/gnu/packages/freedesktop.scm b/gnu/packages/freedesktop.scm
index bd34615e68..7441737a4b 100644
--- a/gnu/packages/freedesktop.scm
+++ b/gnu/packages/freedesktop.scm
@@ -1901,23 +1901,30 @@ these interfaces, based on the useradd, usermod and
userdel commands.")
(define-public libmbim
(package
(name "libmbim")
- (version "1.26.4")
- (source (origin
- (method url-fetch)
- (uri (string-append
- "https://www.freedesktop.org/software/libmbim/"
- "libmbim-" version ".tar.xz"))
- (sha256
- (base32
- "1ncaarl4lgc7i52rwz50yq701wk2rr478cjybxbifsjqqk2cx27n"))))
- (build-system gnu-build-system)
+ (version "1.30.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://gitlab.freedesktop.org/mobile-broadband/libmbim")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "00kbjvpka51zrfjigzd3rk6r4x8hkg1xfj7d9zl9lccysnxyjx5h"))))
+ (build-system meson-build-system)
(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))
(propagated-inputs
- (list glib)) ; required by mbim-glib.pc
+ (list glib)) ;required by mbim-glib.pc
(inputs
- (list libgudev))
+ (list
+ bash-completion
+ libgudev))
(synopsis "Library to communicate with MBIM-powered modems")
(home-page "https://www.freedesktop.org/wiki/Software/libmbim/")
(description
- branch master updated (773aa7a60b -> 0bde2b4fd4), guix-commits, 2024/11/15
- 01/08: gnu: dwl: Update to 0.7., guix-commits, 2024/11/15
- 02/08: gnu: cli11: Update to 2.4.2., guix-commits, 2024/11/15
- 05/08: gnu: Add libqrtr-glib., guix-commits, 2024/11/15
- 08/08: gnu: ugrep: Update to 7.0.4., guix-commits, 2024/11/15
- 03/08: gnu: caf: Update to 1.0.2., guix-commits, 2024/11/15
- 04/08: gnu: libmbim: Update to 1.30.0.,
guix-commits <=
- 06/08: gnu: libqmi: Update to 1.34.0., guix-commits, 2024/11/15
- 07/08: gnu: modem-manager: Update to 1.22.0., guix-commits, 2024/11/15