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 <gentoo-commits+bounces-416931-garchives=archives.gentoo.org@lists.gentoo.org>) id 1RlycW-00081M-S8 for garchives@archives.gentoo.org; Sat, 14 Jan 2012 08:05:49 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 87E1AE07D3; Sat, 14 Jan 2012 08:05:34 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 5703DE07D3 for <gentoo-commits@lists.gentoo.org>; Sat, 14 Jan 2012 08:05:34 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BC8B11B401C for <gentoo-commits@lists.gentoo.org>; Sat, 14 Jan 2012 08:05:33 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 559) id 8F8732004B; Sat, 14 Jan 2012 08:05:32 +0000 (UTC) From: "Mike Frysinger (vapier)" <vapier@gentoo.org> To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, vapier@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in eclass: flag-o-matic.eclass X-VCS-Repository: gentoo-x86 X-VCS-Files: flag-o-matic.eclass X-VCS-Directories: eclass X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger Content-Type: text/plain; charset=utf8 Message-Id: <20120114080532.8F8732004B@flycatcher.gentoo.org> Date: Sat, 14 Jan 2012 08:05:32 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 087610d1-e227-469a-90de-58660bd9e673 X-Archives-Hash: fce4331216bc34777cbf66a6cf379109 vapier 12/01/14 08:05:32 Modified: flag-o-matic.eclass Log: delete dead funcs Revision Changes Path 1.165 eclass/flag-o-matic.eclass file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/flag-o-mati= c.eclass?rev=3D1.165&view=3Dmarkup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/flag-o-mati= c.eclass?rev=3D1.165&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/flag-o-mati= c.eclass?r1=3D1.164&r2=3D1.165 Index: flag-o-matic.eclass =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /var/cvsroot/gentoo-x86/eclass/flag-o-matic.eclass,v retrieving revision 1.164 retrieving revision 1.165 diff -u -r1.164 -r1.165 --- flag-o-matic.eclass 13 Jan 2012 22:40:29 -0000 1.164 +++ flag-o-matic.eclass 14 Jan 2012 08:05:32 -0000 1.165 @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/flag-o-matic.eclass,v 1.164 20= 12/01/13 22:40:29 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/flag-o-matic.eclass,v 1.165 20= 12/01/14 08:05:32 vapier Exp $ =20 # @ECLASS: flag-o-matic.eclass # @MAINTAINER: @@ -15,20 +15,6 @@ =20 inherit eutils toolchain-funcs multilib =20 -################ DEPRECATED functions ################ -# The following are still present to avoid breaking existing -# code more than necessary; however they are deprecated. Please -# use gcc-specs-* from toolchain-funcs.eclass instead, if you -# need to know which hardened techs are active in the compiler. -# See bug #100974 -# -# has_hardened -# has_pie -# has_pic -# has_ssp_all -# has_ssp - - # {C,CXX,F,FC}FLAGS that we allow in strip-flags # Note: shell globs and character lists are allowed setup-allowed-flags() { @@ -527,14 +513,6 @@ return 1 } =20 -# DEAD FUNCS. Remove by Dec 2011. -test_flag() { die "$0: deprecated, please use test-flags()!" ; } -has_hardened() { die "$0: deprecated, please use gcc-specs-{relro,now}()= !" ; } -has_pic() { die "$0: deprecated, please use gcc-specs-pie()!" ; } -has_pie() { die "$0: deprecated, please use gcc-specs-pie()!" ; } -has_ssp_all() { die "$0: deprecated, please use gcc-specs-ssp()!" ; } -has_ssp() { die "$0: deprecated, please use gcc-specs-ssp()!" ; } - # @FUNCTION: has_m64 # @DESCRIPTION: # This doesn't test if the flag is accepted, it tests if the flag actual= ly