[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/08: gnu: modem-manager: Update to 1.22.0.
From: |
guix-commits |
Subject: |
07/08: gnu: modem-manager: Update to 1.22.0. |
Date: |
Fri, 15 Nov 2024 05:53:23 -0500 (EST) |
z572 pushed a commit to branch master
in repository guix.
commit 13bc3237d8e44c6ed1e7956ff006965014755606
Author: Zheng Junjie <zhengjunjie@iscas.ac.cn>
AuthorDate: Tue Nov 12 11:46:32 2024 +0800
gnu: modem-manager: Update to 1.22.0.
* gnu/packages/freedesktop.scm (modem-manager): Update to 1.22.0.
[source]: Switch to git-fetch.
[build-system]: Switch to meson-build-system.
[arguments]<#:configure-flags>: Adjust udevdir. Set
-Dsystemdsystemunitdir=no,
Set -Dvapi=true.
[inputs]: Add bash-completion, libqrtr-glib and elogind.
[native-inputs]: Remove python; add python-minimal and libxslt.
Change-Id: Ife0560eb48f3cceaf22ccc6bb54010074028cddf
---
gnu/packages/freedesktop.scm | 42 +++++++++++++++++++++++++++---------------
1 file changed, 27 insertions(+), 15 deletions(-)
diff --git a/gnu/packages/freedesktop.scm b/gnu/packages/freedesktop.scm
index a3dc92108e..af35625c18 100644
--- a/gnu/packages/freedesktop.scm
+++ b/gnu/packages/freedesktop.scm
@@ -2011,34 +2011,46 @@ which speak the Qualcomm MSM Interface (QMI) protocol.")
(define-public modem-manager
(package
(name "modem-manager")
- (version "1.18.12")
- (source (origin
- (method url-fetch)
- (uri (string-append
- "https://www.freedesktop.org/software/ModemManager/"
- "ModemManager-" version ".tar.xz"))
- (sha256
- (base32
- "0c74n5jl1qvq2qlbwzfkgxny8smjcgkid1nhdnl6qnlmbn9f8r5l"))))
- (build-system gnu-build-system)
+ (version "1.22.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri
+ (git-reference
+ (url "https://gitlab.freedesktop.org/mobile-broadband/ModemManager")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0fj4ibjfsxal3xfk3hrj4l9vg7zbj42k9lj7151illl2n3d5ngzw"))))
+ (build-system meson-build-system)
(arguments
(list
#:configure-flags
- #~(list (string-append "--with-udev-base-dir=" #$output "/lib/udev"))))
+ #~(list (string-append "-Dudevdir=" #$output "/lib/udev")
+ "-Dsystemdsystemunitdir=no"
+ "-Dvapi=true")))
(native-inputs
(list dbus
gettext-minimal
gobject-introspection
`(,glib "bin") ;for glib-mkenums
+ libxslt ;for xsltproc
pkg-config
- python
- python-dbus
- python-pygobject
+ python-minimal
+ python-dbus ;for test
+ python-pygobject ;for test
vala))
(propagated-inputs
(list glib)) ;required by mm-glib.pc
(inputs
- (list libgudev libmbim libqmi polkit))
+ (list bash-completion
+ elogind
+ libgudev
+ libmbim
+ libqmi
+ libqrtr-glib
+ polkit))
(synopsis "Mobile broadband modems manager")
(home-page "https://www.freedesktop.org/wiki/Software/ModemManager/")
(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, 2024/11/15
- 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 <=