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 6815B139694 for ; Sun, 18 Jun 2017 19:32:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 81E4FE0C5C; Sun, 18 Jun 2017 19:32:04 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6108AE0C5C for ; Sun, 18 Jun 2017 19:32:04 +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 1D2EF34199A for ; Sun, 18 Jun 2017 19:32:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 13E31747E for ; Sun, 18 Jun 2017 19:32:01 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1497813811.4dc56d6df4edec24762052abbcdf171a478335fb.ulm@gentoo> Subject: [gentoo-commits] proj/eselect:master commit in: libs/, / X-VCS-Repository: proj/eselect X-VCS-Files: ChangeLog libs/package-manager.bash.in X-VCS-Directories: libs/ / X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 4dc56d6df4edec24762052abbcdf171a478335fb X-VCS-Branch: master Date: Sun, 18 Jun 2017 19:32:01 +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: f7400b9a-6015-4759-bc8d-780b21cc1d37 X-Archives-Hash: e18a3f60f8d0b8d4858d4629907baa62 commit: 4dc56d6df4edec24762052abbcdf171a478335fb Author: Ulrich Müller gentoo org> AuthorDate: Sun Jun 18 19:23:31 2017 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Sun Jun 18 19:23:31 2017 +0000 URL: https://gitweb.gentoo.org/proj/eselect.git/commit/?id=4dc56d6d Fix mapping for nios2 in package-manager lib. * libs/package-manager.bash.in (arch): Map nios2 to nios2 (as it is called in profiles/arch.list) rather than nios. ChangeLog | 5 +++++ libs/package-manager.bash.in | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 11bc25d..35260ad 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2017-06-18 Ulrich Müller + + * libs/package-manager.bash.in (arch): Map nios2 to nios2 (as it + is called in profiles/arch.list) rather than nios. + 2017-05-22 Ulrich Müller * modules/profile.eselect (set_symlink): Fix regex, bug 614008. diff --git a/libs/package-manager.bash.in b/libs/package-manager.bash.in index fb922a8..c675e7d 100644 --- a/libs/package-manager.bash.in +++ b/libs/package-manager.bash.in @@ -78,7 +78,7 @@ arch() { ia64*) ret=ia64 ;; m68k*) ret=m68k ;; mips*) ret=mips ;; - nios2) ret=nios ;; + nios2) ret=nios2 ;; or1k|or32*) ret=openrisc;; powerpc64*) ret=ppc64 ;; powerpc*) ret=ppc ;;