net-wireless/iwd: revise init script to fix NM startup
authorBen Kohler <bkohler@gentoo.org>
Fri, 24 Jan 2020 15:05:03 +0000 (09:05 -0600)
committerBen Kohler <bkohler@gentoo.org>
Fri, 24 Jan 2020 15:05:17 +0000 (09:05 -0600)
Closes: https://bugs.gentoo.org/669632
Package-Manager: Portage-2.3.85, Repoman-2.3.20
Signed-off-by: Ben Kohler <bkohler@gentoo.org>
net-wireless/iwd/files/iwd.initd-r1 [new file with mode: 0644]
net-wireless/iwd/iwd-1.4-r1.ebuild [new file with mode: 0644]
net-wireless/iwd/iwd-9999.ebuild

diff --git a/net-wireless/iwd/files/iwd.initd-r1 b/net-wireless/iwd/files/iwd.initd-r1
new file mode 100644 (file)
index 0000000..873d569
--- /dev/null
@@ -0,0 +1,14 @@
+#!/sbin/openrc-run
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+pidfile="/run/iwd.pid"
+command="/usr/libexec/iwd"
+command_background="yes"
+
+depend() {
+       need dbus
+       after bootmisc modules
+       before dns dhcpcd net
+       keyword -shutdown
+}
diff --git a/net-wireless/iwd/iwd-1.4-r1.ebuild b/net-wireless/iwd/iwd-1.4-r1.ebuild
new file mode 100644 (file)
index 0000000..74fdff3
--- /dev/null
@@ -0,0 +1,153 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit flag-o-matic linux-info systemd
+
+#Set this variable to the required external ell version
+ELL_REQ="0.27"
+
+if [[ ${PV} == *9999* ]]; then
+       inherit autotools git-r3
+       IWD_EGIT_REPO_URI="https://git.kernel.org/pub/scm/network/wireless/iwd.git"
+       ELL_EGIT_REPO_URI="https://git.kernel.org/pub/scm/libs/ell/ell.git"
+else
+       SRC_URI="https://www.kernel.org/pub/linux/network/wireless/${P}.tar.xz"
+       KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+fi
+
+DESCRIPTION="Wireless daemon for linux"
+HOMEPAGE="https://git.kernel.org/pub/scm/network/wireless/iwd.git/"
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="+client +crda +monitor ofono wired cpu_flags_x86_aes cpu_flags_x86_ssse3"
+
+COMMON_DEPEND="sys-apps/dbus
+       client? ( sys-libs/readline:0= )"
+
+[[ -z "${ELL_REQ}" ]] || COMMON_DEPEND+=" ~dev-libs/ell-${ELL_REQ}"
+
+RDEPEND="${COMMON_DEPEND}
+       net-wireless/wireless-regdb
+       crda? ( net-wireless/crda )"
+
+DEPEND="${COMMON_DEPEND}
+       virtual/pkgconfig"
+
+[[ ${PV} == *9999* ]] && DEPEND+=" dev-python/docutils"
+
+pkg_pretend() {
+       CONFIG_CHECK="
+               ~ASYMMETRIC_KEY_TYPE
+               ~ASYMMETRIC_PUBLIC_KEY_SUBTYPE
+               ~CFG80211
+               ~CRYPTO_AES
+               ~CRYPTO_ARC4
+               ~CRYPTO_CBC
+               ~CRYPTO_CMAC
+               ~CRYPTO_DES
+               ~CRYPTO_ECB
+               ~CRYPTO_HMAC
+               ~CRYPTO_MD4
+               ~CRYPTO_MD5
+               ~CRYPTO_RSA
+               ~CRYPTO_SHA1
+               ~CRYPTO_SHA256
+               ~CRYPTO_SHA512
+               ~CRYPTO_USER_API_HASH
+               ~CRYPTO_USER_API_SKCIPHER
+               ~KEY_DH_OPERATIONS
+               ~PKCS7_MESSAGE_PARSER
+               ~X509_CERTIFICATE_PARSER
+       "
+       if use crda;then
+               CONFIG_CHECK="${CONFIG_CHECK} ~CFG80211_CRDA_SUPPORT"
+               WARNING_CFG80211_CRDA_SUPPORT="REGULATORY DOMAIN PROBLEM: please enable CFG80211_CRDA_SUPPORT for proper regulatory domain support"
+       fi
+
+       if use amd64;then
+               CONFIG_CHECK="${CONFIG_CHECK} ~CRYPTO_DES3_EDE_X86_64"
+               WARNING_CRYPTO_DES3_EDE_X86_64="CRYPTO_DES3_EDE_X86_64: enable for increased performance"
+       fi
+
+       if use cpu_flags_x86_aes;then
+               CONFIG_CHECK="${CONFIG_CHECK} ~CRYPTO_AES_NI_INTEL"
+               WARNING_CRYPTO_AES_NI_INTEL="CRYPTO_AES_NI_INTEL: enable for increased performance"
+       fi
+
+       if use cpu_flags_x86_ssse3 && use amd64; then
+               CONFIG_CHECK="${CONFIG_CHECK} ~CRYPTO_SHA1_SSSE3 ~CRYPTO_SHA256_SSSE3 ~CRYPTO_SHA512_SSSE3"
+               WARNING_CRYPTO_SHA1_SSSE3="CRYPTO_SHA1_SSSE3: enable for increased performance"
+               WARNING_CRYPTO_SHA256_SSSE3="CRYPTO_SHA256_SSSE3: enable for increased performance"
+               WARNING_CRYPTO_SHA512_SSSE3="CRYPTO_SHA512_SSSE3: enable for increased performance"
+       fi
+
+       if use kernel_linux && kernel_is -ge 4 20; then
+               CONFIG_CHECK="${CONFIG_CHECK} ~PKCS8_PRIVATE_KEY_PARSER"
+       fi
+
+       check_extra_config
+
+       if ! use crda; then
+               if linux_config_exists && linux_chkconfig_builtin CFG80211 &&
+                       [[ $(linux_chkconfig_string EXTRA_FIRMWARE) != *regulatory.db* ]]
+               then
+                       ewarn ""
+                       ewarn "REGULATORY DOMAIN PROBLEM:"
+                       ewarn "With CONFIG_CFG80211=y (built-in), the driver won't be able to load regulatory.db from"
+                       ewarn " /lib/firmware, resulting in broken regulatory domain support.  Please set CONFIG_CFG80211=m"
+                       ewarn " or add regulatory.db and regulatory.db.p7s to CONFIG_EXTRA_FIRMWARE."
+                       ewarn ""
+               fi
+       fi
+}
+
+src_unpack() {
+       if [[ ${PV} == *9999* ]] ; then
+               EGIT_REPO_URI=${IWD_EGIT_REPO_URI} git-r3_src_unpack
+               EGIT_REPO_URI=${ELL_EGIT_REPO_URI} EGIT_CHECKOUT_DIR=${WORKDIR}/ell git-r3_src_unpack
+       else
+               default
+       fi
+}
+
+src_prepare() {
+       default
+       if [[ ${PV} == *9999* ]] ; then
+               eautoreconf
+       fi
+}
+
+src_configure() {
+       append-cflags "-fsigned-char"
+       local myeconfargs=(
+               --sysconfdir="${EPREFIX}"/etc/iwd --localstatedir="${EPREFIX}"/var
+               $(use_enable client)
+               $(use_enable monitor)
+               $(use_enable ofono)
+               $(use_enable wired)
+               --enable-systemd-service
+               --with-systemd-unitdir="$(systemd_get_systemunitdir)"
+               --with-systemd-modloaddir="${EPREFIX}/usr/lib/modules-load.d"
+               --with-systemd-networkdir="$(systemd_get_utildir)/network"
+       )
+       [[ ${PV} == *9999* ]] || myeconfargs+=(--enable-external-ell)
+       econf "${myeconfargs[@]}"
+}
+
+src_install() {
+       default
+       keepdir /var/lib/${PN}
+
+       newinitd "${FILESDIR}/iwd.initd-r1" iwd
+
+       if use wired;then
+               newinitd "${FILESDIR}/ead.initd" ead
+       fi
+
+       if [[ ${PV} == *9999* ]] ; then
+               exeinto /usr/share/iwd/scripts/
+               doexe test/*
+       fi
+}
index de16c9f1b93c96ffefae92c1460b4bf9f0264b4d..d27e39a56fe7e0bcb185d4b5eb6391d32eb36f5b 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -140,7 +140,7 @@ src_install() {
        default
        keepdir /var/lib/${PN}
 
-       newinitd "${FILESDIR}/iwd.initd" iwd
+       newinitd "${FILESDIR}/iwd.initd-r1" iwd
 
        if use wired;then
                newinitd "${FILESDIR}/ead.initd" ead