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 0CBAF1381F3 for ; Mon, 14 Oct 2013 09:39:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B6A31E09AD; Mon, 14 Oct 2013 09:39:01 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 44D0DE09AD for ; Mon, 14 Oct 2013 09:39:01 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5D8A033EEFF for ; Mon, 14 Oct 2013 09:39:00 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id E0BA9E545D for ; Mon, 14 Oct 2013 09:38:57 +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: <1381743534.3e4dcd89a7c016af7eb4ee689d2b738d2bec4d64.jlec@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-libs/atlas/ X-VCS-Repository: proj/sci X-VCS-Files: sci-libs/atlas/ChangeLog sci-libs/atlas/atlas-3.10.1-r1.ebuild X-VCS-Directories: sci-libs/atlas/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 3e4dcd89a7c016af7eb4ee689d2b738d2bec4d64 X-VCS-Branch: master Date: Mon, 14 Oct 2013 09:38:57 +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: 5b4c63eb-ea7a-47a2-9134-dc373e90db1b X-Archives-Hash: 3fafe81e9287343dbcaed9799ebc05a2 commit: 3e4dcd89a7c016af7eb4ee689d2b738d2bec4d64 Author: Justin Lecher gentoo org> AuthorDate: Mon Oct 14 09:38:54 2013 +0000 Commit: Justin Lecher gentoo org> CommitDate: Mon Oct 14 09:38:54 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=3e4dcd89 sci-libs/atlas: Fix type _cpufreq -> cpufreq Package-Manager: portage-2.2.7 --- sci-libs/atlas/ChangeLog | 3 +++ sci-libs/atlas/atlas-3.10.1-r1.ebuild | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/sci-libs/atlas/ChangeLog b/sci-libs/atlas/ChangeLog index db10666..8a72729 100644 --- a/sci-libs/atlas/ChangeLog +++ b/sci-libs/atlas/ChangeLog @@ -2,6 +2,9 @@ # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ + 14 Oct 2013; Justin Lecher atlas-3.10.1-r1.ebuild: + Fix type _cpufreq -> cpufreq + 13 Oct 2013; Justin Lecher atlas-3.10.1-r1.ebuild, metadata.xml: Set cpu freq governor without sys-power/cpufrequtils, #487882 diff --git a/sci-libs/atlas/atlas-3.10.1-r1.ebuild b/sci-libs/atlas/atlas-3.10.1-r1.ebuild index e67c852..625429a 100644 --- a/sci-libs/atlas/atlas-3.10.1-r1.ebuild +++ b/sci-libs/atlas/atlas-3.10.1-r1.ebuild @@ -26,7 +26,7 @@ S="${WORKDIR}/ATLAS" pkg_setup() { local _cpufreq - for _cpufreq in /sys/devices/system/cpu/cpu*/_cpufreq/scaling_governor; do + for _cpufreq in /sys/devices/system/cpu/cpu*/cpufreq/scaling_governor; do if [ -f ${_cpufreq} ]; then if grep -q performance ${_cpufreq}; then echo 2> /dev/null performance > ${_cpufreq} || \