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 3D1101396D0 for ; Mon, 25 Sep 2017 07:35:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A6C23E0FE2; Mon, 25 Sep 2017 07:35:10 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 844A5E0FE2 for ; Mon, 25 Sep 2017 07:35: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 72E7733C27B for ; Mon, 25 Sep 2017 07:35:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D53208F66 for ; Mon, 25 Sep 2017 07:35:07 +0000 (UTC) From: "Patrick Lauer" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrick Lauer" Message-ID: <1506324904.4615e51deb239a6e860ada83fc962900a956ed56.patrick@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/julia/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/julia/julia-0.6.0-r1.ebuild dev-lang/julia/julia-0.6.0.ebuild X-VCS-Directories: dev-lang/julia/ X-VCS-Committer: patrick X-VCS-Committer-Name: Patrick Lauer X-VCS-Revision: 4615e51deb239a6e860ada83fc962900a956ed56 X-VCS-Branch: master Date: Mon, 25 Sep 2017 07:35:07 +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-Archives-Salt: 1776ccb3-74d7-4867-a672-44f572f02014 X-Archives-Hash: 348c02b6b8818db36e282da21dbde7d9 commit: 4615e51deb239a6e860ada83fc962900a956ed56 Author: Patrick Lauer gentoo org> AuthorDate: Mon Sep 25 07:34:50 2017 +0000 Commit: Patrick Lauer gentoo org> CommitDate: Mon Sep 25 07:35:04 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4615e51d dev-lang/julia: Disable doc fetching #628358 This is a dirty hack and most likely not a good solution. Package-Manager: Portage-2.3.10, Repoman-2.3.3 dev-lang/julia/{julia-0.6.0.ebuild => julia-0.6.0-r1.ebuild} | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/dev-lang/julia/julia-0.6.0.ebuild b/dev-lang/julia/julia-0.6.0-r1.ebuild similarity index 91% rename from dev-lang/julia/julia-0.6.0.ebuild rename to dev-lang/julia/julia-0.6.0-r1.ebuild index f3f54493445..9c6d3d76eb3 100644 --- a/dev-lang/julia/julia-0.6.0.ebuild +++ b/dev-lang/julia/julia-0.6.0-r1.ebuild @@ -102,6 +102,9 @@ src_prepare() { sed -i \ -e "s|ar -rcs|$(tc-getAR) -rcs|g" \ src/Makefile || die + + # disable doc install starting git fetching + sed -i -e 's~install: $(build_depsbindir)/stringreplace $(BUILDROOT)/doc/_build/html/en/index.html~install: $(build_depsbindir)/stringreplace~' Makefile || die } src_configure() { @@ -159,7 +162,10 @@ src_install() { # Julia is special. It tries to find a valid git repository (that would # normally be cloned during compilation/installation). Just make it # happy... - git init && git commit -a --allow-empty -m "initial" || die "git failed" + git init && \ + git config --local user.email "whatyoudoing@example.com" && \ + git config --local user.name "Whyyyyyy" && \ + git commit -a --allow-empty -m "initial" || die "git failed" emake install \ prefix="/usr" DESTDIR="${D}" CC="$(tc-getCC)" CXX="$(tc-getCXX)"