diff -Nru iwd-2.13/debian/changelog iwd-2.13/debian/changelog --- iwd-2.13/debian/changelog 2024-01-14 08:22:07.000000000 +0000 +++ iwd-2.13/debian/changelog 2024-01-16 18:45:49.000000000 +0000 @@ -1,3 +1,15 @@ +iwd (2.13-1ubuntu1) noble; urgency=medium + + * Merge with Debian unstable. Remaining changes: (LP: #2049515) + - debian/iwd.conf, debian/rules: + - provide a network-manager configuration to make iwd the default + backend when installed + - debian/rules: + - build with --enable-wired to avoid functional compared to wpa + - disable lto, it's leading to a build issue + + -- Sudip Mukherjee Tue, 16 Jan 2024 18:45:49 +0000 + iwd (2.13-1) unstable; urgency=medium [ upstream ] @@ -35,6 +47,18 @@ -- Jonas Smedegaard Thu, 30 Nov 2023 12:08:59 +0100 +iwd (2.8-1ubuntu1) mantic; urgency=medium + + * Resynchronize on Debian, remaining changes + + debian/iwd.conf, debian/rules: + - provide a network-manager configuration to make iwd the default + backend when installed + + debian/rules: + - build with --enable-wired to avoid functional compared to wpa + - disable lto, it's leading to a build issue + + -- Sebastien Bacher Wed, 13 Sep 2023 19:53:17 +0200 + iwd (2.8-1) unstable; urgency=medium * add patch 2001 to use system group sudo instead of wheel; diff -Nru iwd-2.13/debian/control iwd-2.13/debian/control --- iwd-2.13/debian/control 2024-01-12 08:29:26.000000000 +0000 +++ iwd-2.13/debian/control 2024-01-16 16:42:50.000000000 +0000 @@ -1,7 +1,8 @@ Source: iwd Section: net Priority: optional -Maintainer: Jonas Smedegaard +Maintainer: Ubuntu Developers +XSBC-Original-Maintainer: Jonas Smedegaard Homepage: https://iwd.wiki.kernel.org/ Build-Depends: debhelper-compat (= 13), diff -Nru iwd-2.13/debian/iwd.conf iwd-2.13/debian/iwd.conf --- iwd-2.13/debian/iwd.conf 1970-01-01 01:00:00.000000000 +0100 +++ iwd-2.13/debian/iwd.conf 2024-01-16 16:41:52.000000000 +0000 @@ -0,0 +1,2 @@ +[device] +wifi.backend=iwd diff -Nru iwd-2.13/debian/rules iwd-2.13/debian/rules --- iwd-2.13/debian/rules 2022-03-27 10:10:11.000000000 +0100 +++ iwd-2.13/debian/rules 2024-01-16 16:41:52.000000000 +0000 @@ -1,6 +1,6 @@ #!/usr/bin/make -f -export DEB_BUILD_MAINT_OPTIONS = hardening=+all +export DEB_BUILD_MAINT_OPTIONS = hardening=+all optimize=-lto # skip tests failing on official build daemons: # * test-wsc: unit/test-wsc.c:435: wsc_test_uuid_from_addr: Assertion `wsc_uuid_from_addr(test->addr, uuid)' failed. @@ -12,7 +12,7 @@ TESTS_FLAKY = unit/test-wsc unit/test-eap-sim unit/test-dpp override_dh_auto_configure: - dh_auto_configure -- --enable-external-ell + dh_auto_configure -- --enable-external-ell --enable-wired override_dh_auto_test: make -j2 check VERBOSE=1 TESTS='$(filter-out $(TESTS_FLAKY),$(TESTS))' @@ -24,5 +24,11 @@ override_dh_installsystemd: dh_installsystemd --no-enable --no-start --no-stop-on-upgrade +override_dh_install: + # Install custom settings + mkdir -p debian/iwd/usr/lib/NetworkManager/conf.d/ + cp debian/iwd.conf debian/iwd/usr/lib/NetworkManager/conf.d/ + dh_install + %: dh $@