From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1QaVh3-0000Jm-IT for garchives@archives.gentoo.org; Sat, 25 Jun 2011 16:26:49 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E14B91C043; Sat, 25 Jun 2011 16:26:06 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id A0A831C043 for ; Sat, 25 Jun 2011 16:26:06 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EA3F62AC02D for ; Sat, 25 Jun 2011 16:26:05 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 4FEAB8003E for ; Sat, 25 Jun 2011 16:26:05 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: Subject: [gentoo-commits] proj/catalyst:catalyst_2 commit in: /, arch/ X-VCS-Repository: proj/catalyst X-VCS-Files: ChangeLog arch/mips.py X-VCS-Directories: / arch/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: a18391888798e3301849640f170754d52be5904f Date: Sat, 25 Jun 2011 16:26:05 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: 4c9b1a84c684dc78ed0a177deb5ef36c commit: a18391888798e3301849640f170754d52be5904f Author: Matt Turner gentoo org> AuthorDate: Sat Jun 25 16:21:40 2011 +0000 Commit: Matt Turner gmail com> CommitDate: Sat Jun 25 16:21:40 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/catalyst.git;= a=3Dcommit;h=3Da1839188 mips.py: Remove ip* classes They were clearly never even tested since they were inheriting the little-endian abstract class. --- ChangeLog | 3 +++ arch/mips.py | 42 ------------------------------------------ 2 files changed, 3 insertions(+), 42 deletions(-) diff --git a/ChangeLog b/ChangeLog index 57c0e40..1d9b01d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -4,6 +4,9 @@ # $Id$ =20 25 Jun 2011; Matt Turner + modules/catalyst/arch/mips.py: Remove ip* classes + + 25 Jun 2011; Matt Turner modules/catalyst/arch/mips.py: Remove mips2 classes Linux doesn't even run on mips2 =20 diff --git a/arch/mips.py b/arch/mips.py index 662831d..9dbd23b 100644 --- a/arch/mips.py +++ b/arch/mips.py @@ -143,53 +143,11 @@ class arch_cobalt_n32(generic_mipsel): self.settings["CFLAGS"]=3D"-O2 -march=3Dr5000 -mabi=3Dn32 -pipe" self.settings["HOSTUSE"]=3D["cobalt","n32"] =20 -class arch_ip27(generic_mipsel): - "Builder class for all IP27 [Big-endian]" - def __init__(self,myspec): - arch_mips4.__init__(self,myspec) - self.settings["HOSTUSE"]=3D["ip27"] - -class arch_ip27_n32(generic_mipsel): - "Builder class for all IP27 [Big-endian N32]" - def __init__(self,myspec): - arch_mips4_n32.__init__(self,myspec) - self.settings["HOSTUSE"]=3D["ip27","n32"] - -class arch_ip28(generic_mipsel): - "Builder class for all IP28 [Big-endian]" - def __init__(self,myspec): - arch_mips4.__init__(self,myspec) - self.settings["HOSTUSE"]=3D["ip28"] - -class arch_ip28_n32(generic_mipsel): - "Builder class for all IP28 [Big-endian N32]" - def __init__(self,myspec): - arch_mips4_n32.__init__(self,myspec) - self.settings["HOSTUSE"]=3D["ip28","n32"] - -class arch_ip30(generic_mipsel): - "Builder class for all IP30 [Big-endian]" - def __init__(self,myspec): - arch_mips4.__init__(self,myspec) - self.settings["HOSTUSE"]=3D["ip30"] - -class arch_ip30_n32(generic_mipsel): - "Builder class for all IP30 [Big-endian N32]" - def __init__(self,myspec): - arch_mips4_n32.__init__(self,myspec) - self.settings["HOSTUSE"]=3D["ip30","n32"] - def register(): "Inform main catalyst program of the contents of this plugin." return ({=20 "cobalt" : arch_cobalt, "cobalt_n32" : arch_cobalt_n32, - "ip27" : arch_ip27, - "ip27_n32" : arch_ip27_n32, - "ip28" : arch_ip28, - "ip28_n32" : arch_ip28_n32, - "ip30" : arch_ip30, - "ip30_n32" : arch_ip30_n32, "mips" : arch_mips1, "mips1" : arch_mips1, "mips3" : arch_mips3,