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 7B8C3138334 for ; Sat, 23 Feb 2019 17:41:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3EDDCE0975; Sat, 23 Feb 2019 17:41:13 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 F0497E0975 for ; Sat, 23 Feb 2019 17:41:12 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 0A891335DB5 for ; Sat, 23 Feb 2019 17:41:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 157D6546 for ; Sat, 23 Feb 2019 17:41:09 +0000 (UTC) From: "Ben Kohler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ben Kohler" Message-ID: <1550943643.899128a1dfe2c21fa99d28d542fb4a97a6fc81a1.bkohler@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-wireless/iwd/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-wireless/iwd/iwd-0.14-r1.ebuild net-wireless/iwd/iwd-9999.ebuild X-VCS-Directories: net-wireless/iwd/ X-VCS-Committer: bkohler X-VCS-Committer-Name: Ben Kohler X-VCS-Revision: 899128a1dfe2c21fa99d28d542fb4a97a6fc81a1 X-VCS-Branch: master Date: Sat, 23 Feb 2019 17:41:09 +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: ae8cca7b-111d-46a7-b7d7-de2cb24274e1 X-Archives-Hash: 9eb0796e3cc64c0fdf68be7ec656a425 commit: 899128a1dfe2c21fa99d28d542fb4a97a6fc81a1 Author: Ben Kohler gentoo org> AuthorDate: Sat Feb 23 17:40:20 2019 +0000 Commit: Ben Kohler gentoo org> CommitDate: Sat Feb 23 17:40:43 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=899128a1 net-wireless/iwd: revbump to add -fsigned-char Upstream recommends this compiler option and is default-enabling it when CFLAGS is unset. This commit will keep it enabled even when we set CFLAGS. This fixes a test on ppc (and maybe other arches). Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Ben Kohler gentoo.org> net-wireless/iwd/{iwd-9999.ebuild => iwd-0.14-r1.ebuild} | 12 ++++-------- net-wireless/iwd/iwd-9999.ebuild | 3 ++- 2 files changed, 6 insertions(+), 9 deletions(-) diff --git a/net-wireless/iwd/iwd-9999.ebuild b/net-wireless/iwd/iwd-0.14-r1.ebuild similarity index 88% copy from net-wireless/iwd/iwd-9999.ebuild copy to net-wireless/iwd/iwd-0.14-r1.ebuild index 542d347128b..bf525992339 100644 --- a/net-wireless/iwd/iwd-9999.ebuild +++ b/net-wireless/iwd/iwd-0.14-r1.ebuild @@ -2,14 +2,14 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=6 -inherit autotools linux-info systemd +inherit autotools flag-o-matic linux-info systemd if [[ ${PV} == 9999 ]]; then EGIT_REPO_URI="https://git.kernel.org/pub/scm/network/wireless/iwd.git" inherit git-r3 else SRC_URI="https://www.kernel.org/pub/linux/network/wireless/${P}.tar.xz" - KEYWORDS="~amd64 ~x86" + KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~x86" fi DESCRIPTION="Wireless daemon for linux" @@ -66,10 +66,6 @@ pkg_pretend() { 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 } @@ -88,14 +84,14 @@ src_prepare() { } src_configure() { + append-cflags "-fsigned-char" econf --sysconfdir=/etc/iwd --localstatedir=/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=$(_systemd_get_dir modulesloaddir /usr/lib/modules-load.d) + --with-systemd-unitdir="$(systemd_get_systemunitdir)" } src_install() { diff --git a/net-wireless/iwd/iwd-9999.ebuild b/net-wireless/iwd/iwd-9999.ebuild index 542d347128b..b037416528c 100644 --- a/net-wireless/iwd/iwd-9999.ebuild +++ b/net-wireless/iwd/iwd-9999.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=6 -inherit autotools linux-info systemd +inherit autotools flag-o-matic linux-info systemd if [[ ${PV} == 9999 ]]; then EGIT_REPO_URI="https://git.kernel.org/pub/scm/network/wireless/iwd.git" @@ -88,6 +88,7 @@ src_prepare() { } src_configure() { + append-cflags "-fsigned-char" econf --sysconfdir=/etc/iwd --localstatedir=/var \ $(use_enable client) \ $(use_enable monitor) \