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 44CB91382C5 for ; Sat, 7 Apr 2018 17:12:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 57E45E08FE; Sat, 7 Apr 2018 17:12:25 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 30FD4E08FE for ; Sat, 7 Apr 2018 17:12:25 +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 8400D335C43 for ; Sat, 7 Apr 2018 17:12:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4AF8B279 for ; Sat, 7 Apr 2018 17:12:21 +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: <1523120967.c26bcc33c40e2259ae71e8f2666e29e087de420e.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: c26bcc33c40e2259ae71e8f2666e29e087de420e X-VCS-Branch: master Date: Sat, 7 Apr 2018 17:12:21 +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: e7892117-bbbf-4d84-b0bc-1e3fd6ebdc3e X-Archives-Hash: 822f110021791a64812ccb43b20442d4 commit: c26bcc33c40e2259ae71e8f2666e29e087de420e Author: kewl fft alto eu org> AuthorDate: Sat Apr 7 14:21:44 2018 +0000 Commit: Zac Medico gentoo org> CommitDate: Sat Apr 7 17:09:27 2018 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=c26bcc33 etc-update: add antergos to Arch Linux derivatives Closes: https://github.com/gentoo/portage/pull/294 bin/etc-update | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/etc-update b/bin/etc-update index 7cd880d7c..5a4041c07 100755 --- a/bin/etc-update +++ b/bin/etc-update @@ -36,7 +36,7 @@ OS_RELEASE_ID=$(cat /etc/os-release 2>/dev/null | grep '^ID=' | cut -d'=' -f2) case $OS_RELEASE_ID in suse|opensuse) OS_FAMILY='suse' NEW_EXT='rpmnew';; - arch|manjaro) OS_FAMILY='arch' NEW_EXT='pacnew';; + arch|manjaro|antergos) OS_FAMILY='arch' NEW_EXT='pacnew';; *) OS_FAMILY='gentoo' ;; esac