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 2CADB138351 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 242DCE0923; Sat, 11 Apr 2020 20:27:55 +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 0B3B2E0923 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 24E1E34F139 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 AAAF91D2 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: <1586589056.e93b6722850c0dee941db30f6981968adcd3fd53.mattst88@gentoo> Subject: [gentoo-commits] proj/catalyst:master commit in: catalyst/arch/ X-VCS-Repository: proj/catalyst X-VCS-Files: catalyst/arch/hppa.py X-VCS-Directories: catalyst/arch/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: e93b6722850c0dee941db30f6981968adcd3fd53 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: 5b4cc50d-808a-4ff4-9f3a-841202caaf29 X-Archives-Hash: 2880f2e711700f91ceb01df1e1afd17f commit: e93b6722850c0dee941db30f6981968adcd3fd53 Author: Matt Turner gentoo org> AuthorDate: Sat Apr 11 07:10:56 2020 +0000 Commit: Matt Turner gentoo org> CommitDate: Sat Apr 11 07:10:56 2020 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=e93b6722 catalyst/arch: Drop hppa1.0 I don't think Linux ever ran on these. Wikipedia doesn't even know the names of the chips. We have never built stages for 1.0 as far as I can tell. Signed-off-by: Matt Turner gentoo.org> catalyst/arch/hppa.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/catalyst/arch/hppa.py b/catalyst/arch/hppa.py index b3c5c931..ee1a835b 100644 --- a/catalyst/arch/hppa.py +++ b/catalyst/arch/hppa.py @@ -7,13 +7,6 @@ class generic_hppa(builder.generic): builder.generic.__init__(self,myspec) self.settings["COMMON_FLAGS"]="-O2 -pipe" -class arch_hppa(generic_hppa): - "Builder class for hppa systems" - def __init__(self,myspec): - generic_hppa.__init__(self,myspec) - self.settings["COMMON_FLAGS"]+=" -march=1.0" - self.settings["CHOST"]="hppa-unknown-linux-gnu" - class arch_hppa1_1(generic_hppa): "Builder class for hppa 1.1 systems" def __init__(self,myspec): @@ -31,7 +24,6 @@ class arch_hppa2_0(generic_hppa): def register(): "Inform main catalyst program of the contents of this plugin." return ({ - "hppa": arch_hppa, "hppa1.1": arch_hppa1_1, "hppa2.0": arch_hppa2_0 }, ("parisc","parisc64","hppa","hppa64") )