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 10FD41382C5 for ; Tue, 23 Jan 2018 12:52:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6F3BFE0A83; Tue, 23 Jan 2018 12:52:41 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 4DF49E0A83 for ; Tue, 23 Jan 2018 12:52:41 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 34692335C31 for ; Tue, 23 Jan 2018 12:52:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C32451B8 for ; Tue, 23 Jan 2018 12:52:38 +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: <1516711902.95b7bee70378a6fcbf838301f2f98e8825544c22.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: 95b7bee70378a6fcbf838301f2f98e8825544c22 X-VCS-Branch: master Date: Tue, 23 Jan 2018 12:52:38 +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: f6706c36-f688-4375-8c90-d9d86ef362de X-Archives-Hash: 57d266d9bb29f47781d13c19c9e3f3ae commit: 95b7bee70378a6fcbf838301f2f98e8825544c22 Author: Ulrich Müller gentoo org> AuthorDate: Tue Jan 23 12:43:39 2018 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Tue Jan 23 12:51:42 2018 +0000 URL: https://gitweb.gentoo.org/proj/eselect.git/commit/?id=95b7bee7 Update arch list in package-manager list. * libs/package-manager.bash.in (arch): Restore sparc64 which was lost in a previous update. Sync with arch.list in the gentoo repo. ChangeLog | 5 +++++ libs/package-manager.bash.in | 34 +++++++++++++++++----------------- 2 files changed, 22 insertions(+), 17 deletions(-) diff --git a/ChangeLog b/ChangeLog index 398b23c..3846850 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2018-01-23 Ulrich Müller + + * libs/package-manager.bash.in (arch): Restore sparc64 which was + lost in a previous update. Sync with arch.list in the gentoo repo. + 2018-01-09 Ulrich Müller * configure.ac: Update version to 1.4.11. diff --git a/libs/package-manager.bash.in b/libs/package-manager.bash.in index baf49df..220e09c 100644 --- a/libs/package-manager.bash.in +++ b/libs/package-manager.bash.in @@ -70,23 +70,23 @@ arch() { # Try to determine arch from HOSTTYPE and OSTYPE, which are # derived from the GNU triplet (at build time of bash) case ${HOSTTYPE} in - aarch64*) ret=arm64 ;; - alpha*) ret=alpha ;; - arm*) ret=arm ;; - hppa*) ret=hppa ;; - i?86) ret=x86 ;; - ia64*) ret=ia64 ;; - m68k*) ret=m68k ;; - mips*) ret=mips ;; - nios2) ret=nios2 ;; - or1k|or32*) ret=openrisc ;; - powerpc64*) ret=ppc64 ;; - powerpc*) ret=ppc ;; - riscv*) ret=riscv ;; - s390*) ret=s390 ;; - sh*) ret=sh ;; - sparc*) ret=sparc ;; - x86_64) ret=amd64 ;; + aarch64*) ret=arm64 ;; + alpha*) ret=alpha ;; + arm*) ret=arm ;; + hppa*) ret=hppa ;; + i?86) ret=x86 ;; + ia64*) ret=ia64 ;; + m68k*) ret=m68k ;; + mips*) ret=mips ;; + nios2) ret=nios2 ;; + powerpc64*) ret=ppc64 ;; + powerpc*) ret=ppc ;; + riscv*) ret=riscv ;; + s390*) ret=s390 ;; + sh*) ret=sh ;; + sparc64*) ret=sparc64 ;; + sparc*) ret=sparc ;; + x86_64) ret=amd64 ;; *) write_warning_msg \ "Unknown architecture \"${HOSTTYPE}\"." \