From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6D0041382C5 for ; Sat, 20 Jun 2020 17:14:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ABB60E08DD; Sat, 20 Jun 2020 17:14:16 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 865C1E08DD for ; Sat, 20 Jun 2020 17:14:16 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4CAE034F4BA for ; Sat, 20 Jun 2020 17:14:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DF4A12A0 for ; Sat, 20 Jun 2020 17:14:13 +0000 (UTC) From: "Volkmar W. Pogatzki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Volkmar W. Pogatzki" Message-ID: <1592673191.2f707c79ecd73aa7d5683aeb35d0027145909b84.VolkmarPogatzki@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: net-wireless/eiwd/ X-VCS-Repository: repo/proj/guru X-VCS-Files: net-wireless/eiwd/eiwd-1.6.1.ebuild net-wireless/eiwd/eiwd-1.7_pre20200416.ebuild net-wireless/eiwd/eiwd-9999.ebuild net-wireless/eiwd/metadata.xml X-VCS-Directories: net-wireless/eiwd/ X-VCS-Committer: VolkmarPogatzki X-VCS-Committer-Name: Volkmar W. Pogatzki X-VCS-Revision: 2f707c79ecd73aa7d5683aeb35d0027145909b84 X-VCS-Branch: dev Date: Sat, 20 Jun 2020 17:14:13 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: f7dcf645-ea42-4ba1-a98b-7fe43f9687ed X-Archives-Hash: 16bc7240e267aef11d41f6801a75a89b commit: 2f707c79ecd73aa7d5683aeb35d0027145909b84 Author: Volkmar W. Pogatzki pogatzki net> AuthorDate: Sat Jun 20 17:13:11 2020 +0000 Commit: Volkmar W. Pogatzki pogatzki net> CommitDate: Sat Jun 20 17:13:11 2020 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=2f707c79 net-wireless/eiwd: update to PR #16160 Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Volkmar W. Pogatzki pogatzki.net> net-wireless/eiwd/eiwd-1.6.1.ebuild | 17 +++++++------- net-wireless/eiwd/eiwd-1.7_pre20200416.ebuild | 17 +++++++------- net-wireless/eiwd/eiwd-9999.ebuild | 17 +++++++------- net-wireless/eiwd/metadata.xml | 32 +++++++++++---------------- 4 files changed, 39 insertions(+), 44 deletions(-) diff --git a/net-wireless/eiwd/eiwd-1.6.1.ebuild b/net-wireless/eiwd/eiwd-1.6.1.ebuild index cf05d7d..3214ce0 100644 --- a/net-wireless/eiwd/eiwd-1.6.1.ebuild +++ b/net-wireless/eiwd/eiwd-1.6.1.ebuild @@ -3,8 +3,6 @@ EAPI=7 -inherit flag-o-matic - MY_PV="$(ver_rs 2 '-')" MY_P="${PN}-${MY_PV}" @@ -15,11 +13,10 @@ SRC_URI="https://github.com/dylanaraps/eiwd/releases/download/${MY_PV}/${MY_P}.t LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="+client +monitor ofono +resolvconf +system-ell wired" +IUSE="+client +monitor ofono +system-ell wired" DEPEND="system-ell? ( >=dev-libs/ell-0.31 )" RDEPEND="${DEPEND} - resolvconf? ( || ( net-dns/openresolv net-misc/dhcpcd ) ) !net-wireless/iwd net-wireless/wireless-regdb" BDEPEND="virtual/pkgconfig" @@ -27,7 +24,6 @@ BDEPEND="virtual/pkgconfig" S="${WORKDIR}/${MY_P}" src_configure() { - append-cflags "-fsigned-char" local myeconfargs=( --sysconfdir="${EPREFIX}"/etc/iwd --localstatedir="${EPREFIX}"/var --disable-dbus @@ -44,8 +40,11 @@ src_install() { default keepdir /var/lib/iwd newinitd "${FILESDIR}"/iwd.initd iwd - if use resolvconf ; then - insinto /etc/iwd/ - doins "${FILESDIR}"/main.conf - fi + insinto /etc/iwd/ + doins "${FILESDIR}"/main.conf +} + +pkg_postinst() { + elog "To use eiwd's built-in DNS features you also need net-dns/openresolv" + elog "or net-misc/dhcpcd." } diff --git a/net-wireless/eiwd/eiwd-1.7_pre20200416.ebuild b/net-wireless/eiwd/eiwd-1.7_pre20200416.ebuild index a70d3ef..1d2ec49 100644 --- a/net-wireless/eiwd/eiwd-1.7_pre20200416.ebuild +++ b/net-wireless/eiwd/eiwd-1.7_pre20200416.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit autotools flag-o-matic git-r3 +inherit autotools git-r3 MY_PV="${PV}" MY_P="${PN}-${MY_PV}" @@ -17,11 +17,10 @@ EGIT_COMMIT="7b5545a" LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="" -IUSE="+client +monitor ofono +resolvconf +system-ell wired" +IUSE="+client +monitor ofono +system-ell wired" DEPEND="system-ell? ( >=dev-libs/ell-0.31 )" RDEPEND="${DEPEND} - resolvconf? ( || ( net-dns/openresolv net-misc/dhcpcd ) ) !net-wireless/iwd net-wireless/wireless-regdb" BDEPEND="virtual/pkgconfig" @@ -38,7 +37,6 @@ src_prepare() { } src_configure() { - append-cflags "-fsigned-char" local myeconfargs=( --sysconfdir="${EPREFIX}"/etc/iwd --localstatedir="${EPREFIX}"/var --disable-dbus @@ -55,8 +53,11 @@ src_install() { default keepdir /var/lib/iwd newinitd "${FILESDIR}"/iwd.initd iwd - if use resolvconf ; then - insinto /etc/iwd/ - doins "${FILESDIR}"/main.conf - fi + insinto /etc/iwd/ + doins "${FILESDIR}"/main.conf +} + +pkg_postinst() { + elog "To use eiwd's built-in DNS features you also need net-dns/openresolv" + elog "or net-misc/dhcpcd." } diff --git a/net-wireless/eiwd/eiwd-9999.ebuild b/net-wireless/eiwd/eiwd-9999.ebuild index 6f3e886..c7fb122 100644 --- a/net-wireless/eiwd/eiwd-9999.ebuild +++ b/net-wireless/eiwd/eiwd-9999.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit autotools flag-o-matic git-r3 +inherit autotools git-r3 MY_PV="$(ver_rs 2 '-')" MY_P="${PN}-${MY_PV}" @@ -16,11 +16,10 @@ EGIT_COMMIT="7b5545a" LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="" -IUSE="+client +monitor ofono +resolvconf +system-ell wired" +IUSE="+client +monitor ofono +system-ell wired" DEPEND="system-ell? ( >=dev-libs/ell-0.31 )" RDEPEND="${DEPEND} - resolvconf? ( || ( net-dns/openresolv net-misc/dhcpcd ) ) !net-wireless/iwd net-wireless/wireless-regdb" BDEPEND="virtual/pkgconfig" @@ -33,7 +32,6 @@ src_prepare() { } src_configure() { - append-cflags "-fsigned-char" local myeconfargs=( --sysconfdir="${EPREFIX}"/etc/iwd --localstatedir="${EPREFIX}"/var --disable-dbus @@ -50,8 +48,11 @@ src_install() { default keepdir /var/lib/iwd newinitd "${FILESDIR}"/iwd.initd iwd - if use resolvconf ; then - insinto /etc/iwd/ - doins "${FILESDIR}"/main.conf - fi + insinto /etc/iwd/ + doins "${FILESDIR}"/main.conf +} + +pkg_postinst() { + elog "To use eiwd's built-in DNS features you also need net-dns/openresolv" + elog "or net-misc/dhcpcd." } diff --git a/net-wireless/eiwd/metadata.xml b/net-wireless/eiwd/metadata.xml index 9fb3446..455b339 100644 --- a/net-wireless/eiwd/metadata.xml +++ b/net-wireless/eiwd/metadata.xml @@ -1,28 +1,22 @@ - + + gentoo@pogatzki.net + Volkmar W. Pogatzki + + + proxy-maint@gentoo.org + Proxy Maintainers + dylanaraps/eiwd - - Enable iwctl client tool - - - Enable iwmon monitor tool - - - Enable support for oFono SIM authentication - - - Use resolvconf to handle /etc/resolv.conf updates - - - Use the system-wide dev-libs/ellinstead of bundled. - - - Enable ethernet authentication daemon - + Enable iwctl client tool + Enable iwmon monitor tool + Enable support for oFono SIM authentication + Use the system-wide dev-libs/ellinstead of bundled. + Enable ethernet authentication daemon