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 10340138350 for ; Sat, 11 Apr 2020 20:27:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4F2E6E095D; Sat, 11 Apr 2020 20:27:55 +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 2B4F1E095A for ; Sat, 11 Apr 2020 20:27:55 +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 4858F34F149 for ; Sat, 11 Apr 2020 20:27:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D07321D5 for ; Sat, 11 Apr 2020 20:27:52 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1586633136.ebbfbc3f9f65036e9269c1b5b0fde5ba1702d25c.mattst88@gentoo> Subject: [gentoo-commits] proj/catalyst:master commit in: catalyst/arch/ X-VCS-Repository: proj/catalyst X-VCS-Files: catalyst/arch/alpha.py catalyst/arch/mips.py X-VCS-Directories: catalyst/arch/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: ebbfbc3f9f65036e9269c1b5b0fde5ba1702d25c X-VCS-Branch: master Date: Sat, 11 Apr 2020 20:27:52 +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: f2133861-8769-4bf7-b913-254ccb0f5f46 X-Archives-Hash: ab8fc82b21b3cfa4bed038415bde34ad commit: ebbfbc3f9f65036e9269c1b5b0fde5ba1702d25c Author: Matt Turner gentoo org> AuthorDate: Sat Apr 11 19:25:36 2020 +0000 Commit: Matt Turner gentoo org> CommitDate: Sat Apr 11 19:25:36 2020 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=ebbfbc3f catalyst/arch: Remove some dead HOSTUSE Signed-off-by: Matt Turner gentoo.org> catalyst/arch/alpha.py | 2 -- catalyst/arch/mips.py | 2 -- 2 files changed, 4 deletions(-) diff --git a/catalyst/arch/alpha.py b/catalyst/arch/alpha.py index 813b0020..83bad8b8 100644 --- a/catalyst/arch/alpha.py +++ b/catalyst/arch/alpha.py @@ -57,7 +57,6 @@ class arch_ev6(generic_alpha): generic_alpha.__init__(self,myspec) self.settings["COMMON_FLAGS"]+=" -O2 -mcpu=ev6" self.settings["CHOST"]="alphaev6-unknown-linux-gnu" - self.settings["HOSTUSE"]=["ev6"] class arch_ev67(generic_alpha): "builder class for alpha ev67 (ev6 plus CIX)" @@ -65,7 +64,6 @@ class arch_ev67(generic_alpha): generic_alpha.__init__(self,myspec) self.settings["COMMON_FLAGS"]+=" -O2 -mcpu=ev67" self.settings["CHOST"]="alphaev67-unknown-linux-gnu" - self.settings["HOSTUSE"]=["ev6"] def register(): "Inform main catalyst program of the contents of this plugin." diff --git a/catalyst/arch/mips.py b/catalyst/arch/mips.py index f7fbcc5b..f162a334 100644 --- a/catalyst/arch/mips.py +++ b/catalyst/arch/mips.py @@ -418,14 +418,12 @@ class arch_cobalt(generic_mipsel): def __init__(self,myspec): generic_mipsel.__init__(self,myspec) self.settings["COMMON_FLAGS"]="-O2 -march=r5000 -mabi=32 -mplt -pipe" - self.settings["HOSTUSE"]=["cobalt"] class arch_cobalt_n32(generic_mips64el): "Builder class for cobalt [Little-endian N32]" def __init__(self,myspec): generic_mips64el.__init__(self,myspec) self.settings["COMMON_FLAGS"]="-O2 -march=r5000 -mabi=n32 -mplt -pipe" - self.settings["HOSTUSE"]=["cobalt"] def register(): "Inform main catalyst program of the contents of this plugin."