From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 96C7E1388C1 for ; Fri, 13 Nov 2015 09:37:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7DA0BE0887; Fri, 13 Nov 2015 09:37:15 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 13AA1E0888 for ; Fri, 13 Nov 2015 09:37:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 026653406C0 for ; Fri, 13 Nov 2015 09:37:14 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CD0771473 for ; Fri, 13 Nov 2015 09:37:09 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1447407421.68f5f806a26ddee80ee9b50d57d36f44fdd14080.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/sha1-polyml/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-mathematics/sha1-polyml/metadata.xml sci-mathematics/sha1-polyml/sha1-polyml-5.5.0.ebuild X-VCS-Directories: sci-mathematics/sha1-polyml/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 68f5f806a26ddee80ee9b50d57d36f44fdd14080 X-VCS-Branch: master Date: Fri, 13 Nov 2015 09:37: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-Archives-Salt: 3bd3433b-f762-41b9-b75e-6c7c5918af11 X-Archives-Hash: 3b51e0b4cd9416aea769d636bbce961c commit: 68f5f806a26ddee80ee9b50d57d36f44fdd14080 Author: Justin Lecher gentoo org> AuthorDate: Fri Nov 13 09:37:01 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Fri Nov 13 09:37:01 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68f5f806 sci-mathematics/sha1-polyml: Make var declaration globally Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=565650 Package-Manager: portage-2.2.23 Signed-off-by: Justin Lecher gentoo.org> sci-mathematics/sha1-polyml/metadata.xml | 12 ++++++------ sci-mathematics/sha1-polyml/sha1-polyml-5.5.0.ebuild | 6 +++--- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/sci-mathematics/sha1-polyml/metadata.xml b/sci-mathematics/sha1-polyml/metadata.xml index c3a2e90..50a414f 100644 --- a/sci-mathematics/sha1-polyml/metadata.xml +++ b/sci-mathematics/sha1-polyml/metadata.xml @@ -1,12 +1,12 @@ - - gienah@gentoo.org - Mark Wright - -sci-mathematics - + + gienah@gentoo.org + Mark Wright + + sci-mathematics + sci-mathematics/sha1-polyml is the implementation of SHA1 taken from the GNU coreutils package as described in the sci-mathematics/sha1-polyml README. It is required by sci-mathematics/isabelle. diff --git a/sci-mathematics/sha1-polyml/sha1-polyml-5.5.0.ebuild b/sci-mathematics/sha1-polyml/sha1-polyml-5.5.0.ebuild index a5d6856..1aaf428 100644 --- a/sci-mathematics/sha1-polyml/sha1-polyml-5.5.0.ebuild +++ b/sci-mathematics/sha1-polyml/sha1-polyml-5.5.0.ebuild @@ -60,11 +60,11 @@ src_prepare() { } src_compile() { - local arch=$(uname -m) - local uos=$(uname) + arch=$(uname -m) + uos=$(uname) # Switch to ,, when we switch to EAPI=6. #local los=${uos,,} - local los=$(tr '[:upper:]' '[:lower:]' <<<"${uos}") + los=$(tr '[:upper:]' '[:lower:]' <<<"${uos}") ./build "${arch}-${los}" || die "build failed" }