Update package version to 1.58.1

This commit is contained in:
2026-09-04 15:57:56 +03:00
parent fe49d1df1d
commit ffd9cb0b12
2 changed files with 35 additions and 16 deletions
+13 -6
View File
@@ -1,7 +1,7 @@
name: networkmanager name: networkmanager
description: Network management daemon and tools description: Network management daemon and tools
version: 1.56.1 version: 1.58.1
revision: 3 revision: 1
url: https://networkmanager.dev/ url: https://networkmanager.dev/
license: GPL2-or-later,LGPL2.1-or-later,GFDL1.1-or-later license: GPL2-or-later,LGPL2.1-or-later,GFDL1.1-or-later
maintainers: maintainers:
@@ -12,6 +12,7 @@ keep:
- etc/NetworkManager/NetworkManager.conf - etc/NetworkManager/NetworkManager.conf
depends: depends:
- audit - audit
- bash
- curl - curl
- elogind - elogind
- gcc-libs - gcc-libs
@@ -20,40 +21,46 @@ depends:
- iproute2 - iproute2
- jansson - jansson
- libndp - libndp
- newt
- libnvme
- libpsl - libpsl
- mobile-broadband-provider-info - mobile-broadband-provider-info
- newt
- nspr - nspr
- nss - nss
- readline - readline
- slang
optional_depends: optional_depends:
- bluez:For Bluetooth support - bluez:For Bluetooth support
- dhcpcd:alternative DHCP client - dhcpcd:alternative DHCP client
- dnsmasq:For connection sharing - dnsmasq:For connection sharing
- iptables:For firewall suport - iptables:For firewall suport
- iwd:For Wi-Fi support - iwd:For Wi-Fi support
- libnvme:For NBFT support
- modemmanager:For cellular network support - modemmanager:For cellular network support
- nftables:For connection sharing - nftables:For connection sharing
- openresolv:Alternative resolv.conf manager
- polkit:Allow non-root users to control networking - polkit:Allow non-root users to control networking
- wpa_supplicant:For Wi-Fi support - wpa_supplicant:For Wi-Fi support
make_depends: make_depends:
- curl
- dhcpcd - dhcpcd
- dnsmasq - dnsmasq
- gobject-introspection - gobject-introspection
- gtk-doc - gtk-doc
- iptables - iptables
- iwd - iwd
- libnvme
- meson - meson
- modemmanager - modemmanager
- nftables
- polkit - polkit
- python-pygobject - python-pygobject
- vala - vala
- libx11 - libx11
- python-dbus
- wpa_supplicant - wpa_supplicant
check_depends:
- python-dbus
downloads: downloads:
- url: https://gitlab.freedesktop.org/NetworkManager/NetworkManager/-/archive/${BPM_PKG_VERSION}/NetworkManager-${BPM_PKG_VERSION}.tar.gz - url: https://gitlab.freedesktop.org/NetworkManager/NetworkManager/-/archive/${BPM_PKG_VERSION}/NetworkManager-${BPM_PKG_VERSION}.tar.gz
extract_to: ${BPM_SOURCE} extract_to: ${BPM_SOURCE}
extract_strip_components: 1 extract_strip_components: 1
checksum: e40f24c2dc9f8408c8183e495f3b5d783204d116c8f23100d00c714ac4ed9252 checksum: 8d112eefc0e0e15d44e93453a8a16760ec07a4037e1f93097abdf55abd5dca2d
+22 -10
View File
@@ -5,17 +5,29 @@
# The build function is executed in the source directory # The build function is executed in the source directory
# This function is used to compile the source code # This function is used to compile the source code
build() { build() {
meson setup --prefix=/usr \ meson setup --prefix=/usr \
--buildtype=release \ -Db_lto=true \
-Ddocs=true \ -Ddist_version="${BPM_PKG_VERSION}-${BPM_PKG_REVISION}" \
-Dnmtui=true \ -Dsession_tracking_consolekit=false \
-Dppp=false \ -Dsuspend_resume=elogind \
-Dselinux=false \ -Dpolkit_noauth_group=wheel \
-Dselinux=false \
-Dsystemdsystemunitdir=no \
-Dsystemdsystemgeneratordir=no \
-Dsession_tracking=elogind \ -Dsession_tracking=elogind \
-Dsystemdsystemunitdir=no \ -Dsystemd_journal=false \
-Dsystemd_journal=false \ -Diwd=true \
-Dnm_cloud_setup=false \ -Dppp=false \
-Dqt=false \ -Dclat=false \
-Dconfig_plugins_default=keyfile \
-Difupdown=false \
-Dnetconfig=no \
-Dconfig_dns_rc_manager_default=symlink \
-Dvapi=true \
-Ddocs=true \
-Dmore_asserts=no \
-Dmore_logging=false \
-Dqt=false \
build build
meson compile -C build meson compile -C build
} }