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 096BC138334 for ; Mon, 22 Jul 2019 18:36:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 497FAE07F9; Mon, 22 Jul 2019 18:36:10 +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 2F7B4E07F9 for ; Mon, 22 Jul 2019 18:36:10 +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 255D73489B5 for ; Mon, 22 Jul 2019 18:36:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C0E395DE for ; Mon, 22 Jul 2019 18:36:06 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1563820546.bbf87b340dc007fba1b4229d5569e8b4ae399436.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-portage/no-distcc-env/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-portage/no-distcc-env/metadata.xml app-portage/no-distcc-env/no-distcc-env-9999.ebuild X-VCS-Directories: app-portage/no-distcc-env/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: bbf87b340dc007fba1b4229d5569e8b4ae399436 X-VCS-Branch: master Date: Mon, 22 Jul 2019 18:36:06 +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: e35fc196-9ee6-4280-ae35-c3ef066fec5b X-Archives-Hash: 9605c7b4ac830a4f8816a6c4eab2f2f0 commit: bbf87b340dc007fba1b4229d5569e8b4ae399436 Author: Matt Turner gentoo org> AuthorDate: Mon Jul 22 18:22:13 2019 +0000 Commit: Matt Turner gentoo org> CommitDate: Mon Jul 22 18:35:46 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bbf87b34 app-portage/no-distcc-env: New package Bug: https://bugs.gentoo.org/669978 Signed-off-by: Matt Turner gentoo.org> app-portage/no-distcc-env/metadata.xml | 8 +++++ .../no-distcc-env/no-distcc-env-9999.ebuild | 36 ++++++++++++++++++++++ 2 files changed, 44 insertions(+) diff --git a/app-portage/no-distcc-env/metadata.xml b/app-portage/no-distcc-env/metadata.xml new file mode 100644 index 00000000000..b58e8386fcb --- /dev/null +++ b/app-portage/no-distcc-env/metadata.xml @@ -0,0 +1,8 @@ + + + + + mattst88@gentoo.org + Matt Turner + + diff --git a/app-portage/no-distcc-env/no-distcc-env-9999.ebuild b/app-portage/no-distcc-env/no-distcc-env-9999.ebuild new file mode 100644 index 00000000000..3a4ae008947 --- /dev/null +++ b/app-portage/no-distcc-env/no-distcc-env-9999.ebuild @@ -0,0 +1,36 @@ +# Copyright 2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/${PN}.git" + +if [[ ${PV} = 9999* ]]; then + GIT_ECLASS="git-r3" +fi + +inherit ${GIT_ECLASS} + +DESCRIPTION="package.env files to disable distcc on a per-package basis" +HOMEPAGE="https://gitweb.gentoo.org/proj/no-distcc-env.git/" +if [[ ${PV} = 9999* ]]; then + SRC_URI="" +else + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd" + SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" +fi + +LICENSE="public-domain" +SLOT="0" +IUSE="" + +src_unpack() { + default + [[ $PV = 9999* ]] && git-r3_src_unpack +} + +src_install() { + insinto /etc/portage + doins -r "${WORKDIR}/${P}"/env + doins -r "${WORKDIR}/${P}"/package.env +}