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 86CF8138334 for ; Mon, 19 Nov 2018 21:40:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4209DE08F9; Mon, 19 Nov 2018 21:40:34 +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 14FB7E08F9 for ; Mon, 19 Nov 2018 21:40:33 +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 3B9FE335C36 for ; Mon, 19 Nov 2018 21:40:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0C73A43A for ; Mon, 19 Nov 2018 21:40:30 +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: <1542663517.cd3effcd48ca83057ca49d6e2727df931bfad4a0.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: cd3effcd48ca83057ca49d6e2727df931bfad4a0 X-VCS-Branch: master Date: Mon, 19 Nov 2018 21:40:30 +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: 9e0d4518-98bd-4605-b4aa-a6f136575671 X-Archives-Hash: 3881ea8d41f85b77efa926a02d1b0fc1 commit: cd3effcd48ca83057ca49d6e2727df931bfad4a0 Author: kewl fft alto eu org> AuthorDate: Mon Nov 19 21:24:27 2018 +0000 Commit: Zac Medico gentoo org> CommitDate: Mon Nov 19 21:38:37 2018 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=cd3effcd etc-update: manjaro now uses arch ID_LIKE Closes: https://github.com/gentoo/portage/pull/381 Signed-off-by: Kewl Fft alto.eu.org> Signed-off-by: Zac Medico gentoo.org> bin/etc-update | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/etc-update b/bin/etc-update index be8656008..0c7a51995 100755 --- a/bin/etc-update +++ b/bin/etc-update @@ -37,7 +37,7 @@ OS_RELEASE_POSSIBLE_IDS=$(source /etc/os-release >/dev/null 2>&1; echo ":${ID}:$ case ${OS_RELEASE_POSSIBLE_IDS} in *:suse:*|*:opensuse:*|*:opensuse-tumbleweed:*) OS_FAMILY='rpm';; *:fedora:*|*:rhel:*) OS_FAMILY='rpm';; - *:arch:*|*:manjaro:*|*:antergos:*) OS_FAMILY='arch' NEW_EXT='pacnew';; + *:arch:*|*:antergos:*) OS_FAMILY='arch' NEW_EXT='pacnew';; *) OS_FAMILY='gentoo';; esac