ModemManager: update to 1.8.2.
This commit is contained in:
parent
38cd6f2ff8
commit
294fb92860
|
@ -1,51 +0,0 @@
|
|||
Source: maxice8
|
||||
Upstream: no. Feel free.
|
||||
Reason: fixes compilation on musl
|
||||
|
||||
--- src/kerneldevice/mm-kernel-device-generic.c
|
||||
+++ src/kerneldevice/mm-kernel-device-generic.c
|
||||
@@ -120,7 +120,7 @@ preload_sysfs_path (MMKernelDeviceGeneric *self)
|
||||
mm_kernel_event_properties_get_subsystem (self->priv->properties),
|
||||
mm_kernel_event_properties_get_name (self->priv->properties));
|
||||
|
||||
- self->priv->sysfs_path = canonicalize_file_name (tmp);
|
||||
+ self->priv->sysfs_path = realpath(tmp, NULL);
|
||||
if (!self->priv->sysfs_path || !g_file_test (self->priv->sysfs_path, G_FILE_TEST_EXISTS)) {
|
||||
mm_warn ("Invalid sysfs path read for %s/%s",
|
||||
mm_kernel_event_properties_get_subsystem (self->priv->properties),
|
||||
@@ -163,7 +163,7 @@ preload_interface_sysfs_path (MMKernelDeviceGeneric *self)
|
||||
* The correct parent dir we want to have is the first one with "usb" subsystem.
|
||||
*/
|
||||
aux = g_strdup_printf ("%s/device", self->priv->sysfs_path);
|
||||
- dirpath = canonicalize_file_name (aux);
|
||||
+ dirpath = realpath(aux, NULL);
|
||||
g_free (aux);
|
||||
|
||||
while (dirpath) {
|
||||
@@ -179,7 +179,7 @@ preload_interface_sysfs_path (MMKernelDeviceGeneric *self)
|
||||
gchar *canonicalized_subsystem;
|
||||
gchar *subsystem_name;
|
||||
|
||||
- canonicalized_subsystem = canonicalize_file_name (subsystem_filepath);
|
||||
+ canonicalized_subsystem = realpath(subsystem_filepath, NULL);
|
||||
g_free (subsystem_filepath);
|
||||
|
||||
subsystem_name = g_path_get_basename (canonicalized_subsystem);
|
||||
@@ -239,7 +239,7 @@ preload_driver (MMKernelDeviceGeneric *self)
|
||||
gchar *tmp2;
|
||||
|
||||
tmp = g_strdup_printf ("%s/driver", self->priv->interface_sysfs_path);
|
||||
- tmp2 = canonicalize_file_name (tmp);
|
||||
+ tmp2 = realpath(tmp, NULL);
|
||||
if (tmp2 && g_file_test (tmp2, G_FILE_TEST_EXISTS))
|
||||
self->priv->driver = g_path_get_basename (tmp2);
|
||||
g_free (tmp2);
|
||||
@@ -308,7 +308,7 @@ preload_physdev_subsystem (MMKernelDeviceGeneric *self)
|
||||
gchar *subsyspath;
|
||||
|
||||
aux = g_strdup_printf ("%s/subsystem", self->priv->physdev_sysfs_path);
|
||||
- subsyspath = canonicalize_file_name (aux);
|
||||
+ subsyspath = realpath(aux, NULL);
|
||||
self->priv->physdev_subsystem = g_path_get_dirname (subsyspath);
|
||||
g_free (subsyspath);
|
||||
g_free (aux);
|
|
@ -1,22 +1,22 @@
|
|||
# Template file for 'ModemManager'
|
||||
pkgname=ModemManager
|
||||
version=1.8.0
|
||||
version=1.8.2
|
||||
revision=1
|
||||
build_style=gnu-configure
|
||||
configure_args="--disable-static --sbindir=/usr/bin
|
||||
--with-udev-base-dir=/usr/lib/udev --with-polkit=permissive
|
||||
$(vopt_enable gir introspection)"
|
||||
configure_args="--disable-static --with-polkit=permissive
|
||||
--with-udev-base-dir=/usr/lib/udev $(vopt_enable gir introspection)"
|
||||
hostmakedepends="pkg-config glib-devel autoconf
|
||||
$(vopt_if gir 'vala-devel gobject-introspection')"
|
||||
makedepends="glib-devel libgudev-devel polkit-devel libqmi-devel
|
||||
libmbim-devel ppp"
|
||||
depends="hicolor-icon-theme ppp"
|
||||
checkdepends="dbus tzdata"
|
||||
short_desc="Mobile broadband modem management service"
|
||||
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
||||
license="GPL-2.0-or-later"
|
||||
homepage="http://www.freedesktop.org/wiki/Software/ModemManager/"
|
||||
homepage="https://www.freedesktop.org/wiki/Software/ModemManager/"
|
||||
distfiles="${FREEDESKTOP_SITE}/${pkgname}/${pkgname}-${version}.tar.xz"
|
||||
checksum=18abe34421aa3b52ff47d4ba93aa282f8f8944717dd644a5c0c81eeeac9c7eb1
|
||||
checksum=96f2a5f0ed15532b4c4c185b756fdc0326e7c2027cea26a1264f91e098260f80
|
||||
|
||||
build_options="gir"
|
||||
if [ -z "$CROSS_BUILD" ]; then
|
||||
|
|
Loading…
Reference in New Issue
Block a user