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 9F7E0138334 for ; Sat, 20 Apr 2019 23:24:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BED91E09AB; Sat, 20 Apr 2019 23:20:26 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 A4441E09B1 for ; Sat, 20 Apr 2019 23:20:26 +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 24AE2342039 for ; Sat, 20 Apr 2019 13:51:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 64D66326 for ; Sat, 20 Apr 2019 13:51:26 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1555768269.d1b515c88db3255d192e5d469f90405eb2bd33b9.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/kbuild/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/kbuild/kbuild-0.1.9998.3149.ebuild dev-util/kbuild/kbuild-9999.ebuild X-VCS-Directories: dev-util/kbuild/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: d1b515c88db3255d192e5d469f90405eb2bd33b9 X-VCS-Branch: master Date: Sat, 20 Apr 2019 13:51:26 +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: 33771b14-735f-4688-a4ec-13e38990c06b X-Archives-Hash: a9e69c864423e4e702137424b67cbc58 commit: d1b515c88db3255d192e5d469f90405eb2bd33b9 Author: Lars Wendler gentoo org> AuthorDate: Sat Apr 20 13:51:09 2019 +0000 Commit: Lars Wendler gentoo org> CommitDate: Sat Apr 20 13:51:09 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1b515c8 dev-util/kbuild: Don't build with distcc Closes: https://bugs.gentoo.org/255371 Package-Manager: Portage-2.3.64, Repoman-2.3.12 Signed-off-by: Lars Wendler gentoo.org> dev-util/kbuild/kbuild-0.1.9998.3149.ebuild | 7 ++++++- dev-util/kbuild/kbuild-9999.ebuild | 7 ++++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/dev-util/kbuild/kbuild-0.1.9998.3149.ebuild b/dev-util/kbuild/kbuild-0.1.9998.3149.ebuild index 7c358202b88..4ed9922800e 100644 --- a/dev-util/kbuild/kbuild-0.1.9998.3149.ebuild +++ b/dev-util/kbuild/kbuild-0.1.9998.3149.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Authors +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -32,6 +32,11 @@ PATCHES=( "${FILESDIR}/${PN}-0.1.9998_pre20171020-gold.patch" ) +pkg_setup() { + # Package fails with distcc (bug #255371) + export DISTCC_DISABLE=1 +} + src_prepare() { rm -rf "${S}/kBuild/bin" diff --git a/dev-util/kbuild/kbuild-9999.ebuild b/dev-util/kbuild/kbuild-9999.ebuild index ccbf4507612..ac794242d86 100644 --- a/dev-util/kbuild/kbuild-9999.ebuild +++ b/dev-util/kbuild/kbuild-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Authors +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -20,6 +20,11 @@ RDEPEND="" S="${WORKDIR}/${MY_P/-src}" +pkg_setup() { + # Package fails with distcc (bug #255371) + export DISTCC_DISABLE=1 +} + src_prepare() { default rm -rf "${S}/kBuild/bin" || die