[arch-commits] Commit in iwd/trunk (ChangeLog PKGBUILD)

Christian Rebischke shibumi at archlinux.org
Sun Oct 13 14:31:15 UTC 2019


    Date: Sunday, October 13, 2019 @ 14:31:14
  Author: shibumi
Revision: 515313

upgpkg: iwd 0.22-1

The iwmon.txt has been removed from the release tarball,
we also use a for loop now for gathering all docs.
Right now it's just main.conf, but I hope they will finally add some examples

Modified:
  iwd/trunk/ChangeLog
  iwd/trunk/PKGBUILD

-----------+
 ChangeLog |    5 +++++
 PKGBUILD  |   11 ++++++-----
 2 files changed, 11 insertions(+), 5 deletions(-)

Modified: ChangeLog
===================================================================
--- ChangeLog	2019-10-13 13:43:57 UTC (rev 515312)
+++ ChangeLog	2019-10-13 14:31:14 UTC (rev 515313)
@@ -1,3 +1,8 @@
+ver 0.22:
+	Fix issue with hotplug and device capability detection.
+	Add support for IPv6 network configuration handling.
+	Add support for embedding certificates in profiles.
+
 ver 0.21:
 	Fix issue with cleartext ACK and tunneled EAP-Success.
 	Fix issue with setting bits in extended capabilities.

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2019-10-13 13:43:57 UTC (rev 515312)
+++ PKGBUILD	2019-10-13 14:31:14 UTC (rev 515313)
@@ -1,7 +1,7 @@
 # Maintainer: Christian Rebischke <chris.rebischke at archlinux.org>
 
 pkgname=iwd
-pkgver=0.21
+pkgver=0.22
 pkgrel=1
 pkgdesc='Internet Wireless Daemon'
 arch=('x86_64')
@@ -8,8 +8,9 @@
 url='https://git.kernel.org/cgit/network/wireless/iwd.git/'
 license=('LGPL')
 depends=('glibc')
+makedepends=('python-docutils')
 source=("https://www.kernel.org/pub/linux/network/wireless/iwd-${pkgver}.tar"{.xz,.sign})
-sha512sums=('eca8847cb68bc52f33a2f50ce4cba9ee4cbd37ad989292a21d613afd3307b0dc974da56df49dc97aa65c9647e3497849d696d5a9fdc5c0d0443a141a0887b324'
+sha512sums=('4fa9f8688a33663aad754a371e9c1c71161f394fc0d7c4a32ce3afe7e00efdca8f55f378a71ab32002bbe73538b1a092bc0f24c19912672d70d6b02fcc824fe0'
             'SKIP')
 validpgpkeys=('E932D120BC2AEC444E558F0106CA9F5D1DCF2659')
 changelog=ChangeLog
@@ -28,9 +29,9 @@
 package() {
   cd "${srcdir}/${pkgname}-${pkgver}"
   make install DESTDIR="${pkgdir}"
-	# This fixes #62874: include docs and autotests file for easier configuration
-	install -Dm644 "doc/iwmon.txt" "${pkgdir}/usr/share/iwd/doc/iwmon.txt"
-	install -Dm644 "doc/main.conf" "${pkgdir}/usr/share/iwd/doc/main.conf"
+	for f in doc/*; do
+		install -Dm644 "${f}" "${pkgdir}/usr/share/iwd/doc/$(basename ${f})"
+	done
 }
 
 # vim: set ts=2 sw=2 ft=sh noet:



More information about the arch-commits mailing list