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 52E16138334 for ; Wed, 1 Aug 2018 20:51:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0D577E0829; Wed, 1 Aug 2018 20:51:40 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 D3049E0829 for ; Wed, 1 Aug 2018 20:51:39 +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 9B0E9335CCD for ; Wed, 1 Aug 2018 20:51:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C80EC375 for ; Wed, 1 Aug 2018 20:51:33 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1533156620.50232e5d8c153e5500c97be29d6347f960e01760.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: bin/ X-VCS-Repository: proj/portage X-VCS-Files: bin/etc-update X-VCS-Directories: bin/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 50232e5d8c153e5500c97be29d6347f960e01760 X-VCS-Branch: master Date: Wed, 1 Aug 2018 20:51:33 +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: 518a9764-ae7f-477c-9dca-f7413b6fda75 X-Archives-Hash: d9c08db24ad63dddd8c41056df473411 commit: 50232e5d8c153e5500c97be29d6347f960e01760 Author: kewl fft alto eu org> AuthorDate: Wed Aug 1 20:05:48 2018 +0000 Commit: Zac Medico gentoo org> CommitDate: Wed Aug 1 20:50:20 2018 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=50232e5d etc-update: add arch32 to arch OS_FAMILY (for the 32-bit users) Closes: https://github.com/gentoo/portage/pull/349 bin/etc-update | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/etc-update b/bin/etc-update index 850f6a21b..f0aaca1e6 100755 --- a/bin/etc-update +++ b/bin/etc-update @@ -37,7 +37,7 @@ OS_RELEASE_ID=$(cat /etc/os-release 2>/dev/null | grep '^ID=' | cut -d'=' -f2 | case $OS_RELEASE_ID in suse|opensuse|opensuse-leap|opensuse-tumbleweed) OS_FAMILY='rpm' ;; fedora|rhel) OS_FAMILY='rpm' ;; - arch|archarm|manjaro|antergos) OS_FAMILY='arch' NEW_EXT='pacnew';; + arch|archarm|arch32|manjaro|antergos) OS_FAMILY='arch' NEW_EXT='pacnew';; *) OS_FAMILY='gentoo' ;; esac