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 D86631580B6 for ; Thu, 26 Aug 2021 13:59:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 233D8E0848; Thu, 26 Aug 2021 13:59:18 +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 0B4CFE0848 for ; Thu, 26 Aug 2021 13:59:18 +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 E47D4340D33 for ; Thu, 26 Aug 2021 13:59:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 929374A2 for ; Thu, 26 Aug 2021 13:59:15 +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: <1629807188.a49477f39d3f000cc2ca57f18aafbd66656aba05.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: a49477f39d3f000cc2ca57f18aafbd66656aba05 X-VCS-Branch: master Date: Thu, 26 Aug 2021 13:59:15 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: c62b4a19-db12-4ad8-ac91-995e97b62ce6 X-Archives-Hash: 103cbfd7c11f3d3c8ac819dec68e7ae3 commit: a49477f39d3f000cc2ca57f18aafbd66656aba05 Author: Ulrich Müller gentoo org> AuthorDate: Tue Aug 24 12:13:08 2021 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Tue Aug 24 12:13:08 2021 +0000 URL: https://gitweb.gentoo.org/proj/eselect.git/commit/?id=a49477f3 Recognise loongarch*/loong in package-manager lib * libs/package-manager.bash.in (arch): Recognise loongarch*/loong. Signed-off-by: Ulrich Müller gentoo.org> ChangeLog | 4 ++++ libs/package-manager.bash.in | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index dfdfe47..f2ea0b6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2021-08-24 Ulrich Müller + + * libs/package-manager.bash.in (arch): Recognise loongarch*/loong. + 2021-02-17 Ulrich Müller * modules/news.eselect (do_list): Recognise "new" and "all" diff --git a/libs/package-manager.bash.in b/libs/package-manager.bash.in index 35a1e11..c32fcb4 100644 --- a/libs/package-manager.bash.in +++ b/libs/package-manager.bash.in @@ -1,5 +1,5 @@ # -*-eselect-*- vim: ft=eselect -# Copyright (c) 2005-2020 Gentoo Authors +# Copyright (c) 2005-2021 Gentoo Authors # # This file is part of the 'eselect' tools framework. # @@ -76,6 +76,7 @@ arch() { hppa*) ret=hppa ;; i?86) ret=x86 ;; ia64*) ret=ia64 ;; + loongarch*) ret=loong ;; m68k*) ret=m68k ;; mips*) ret=mips ;; nios2) ret=nios2 ;;