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-dev+bounces-41927-garchives=archives.gentoo.org@lists.gentoo.org>) id 1Oat8b-0007FR-Pc for garchives@archives.gentoo.org; Mon, 19 Jul 2010 16:24:17 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 323A3E08E0; Mon, 19 Jul 2010 16:24:07 +0000 (UTC) Received: from mail-bw0-f53.google.com (mail-bw0-f53.google.com [209.85.214.53]) by pigeon.gentoo.org (Postfix) with ESMTP id DF627E08DA for <gentoo-dev@lists.gentoo.org>; Mon, 19 Jul 2010 16:23:42 +0000 (UTC) Received: by bwz6 with SMTP id 6so3864019bwz.40 for <gentoo-dev@lists.gentoo.org>; Mon, 19 Jul 2010 09:23:42 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:subject:date :user-agent:references:in-reply-to:disposition-notification-to :mime-version:content-type:content-transfer-encoding:message-id; bh=b1SJkuu1IrPc4Ugcm/4RyJ6rQy8LOUQM9M+UtHB8D/U=; b=BTvmo7QfCZkFW5KIvpCsBKwjB79DAqDDHyjvfegixBI+8iuvfnagi9S4deQd7Ui4Tw rMJdCCmqLDcWEMk/yawsRwrsgEtuIX56wVeo51NnM+RcDc8RkcIoEL4yk3hid9fQp24W Ieq1yOTIRcCi1eJBLm9tB6QvThhLSFndMPrdc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:subject:date:user-agent:references:in-reply-to :disposition-notification-to:mime-version:content-type :content-transfer-encoding:message-id; b=oZHjomtY3cmsaZCS2PoIqBuQuKnNBI7HWCs66n71tjERmE6sCL8wJbtd7uf34Bl0ZY p+ZxKoIHYafzbUILRvPYGUGjKkUpY9R0s+rXLFOvNryetdZuISHnDCFB532WT9VTcDFv gUZnd/mk/YsE6ywM1XWul9Z3/j6W7gI0b0jaY= Received: by 10.204.18.82 with SMTP id v18mr4121119bka.133.1279556622136; Mon, 19 Jul 2010 09:23:42 -0700 (PDT) Received: from lebrodyl.localnet (anj202.neoplus.adsl.tpnet.pl [83.26.91.202]) by mx.google.com with ESMTPS id x19sm26457839bkv.9.2010.07.19.09.23.40 (version=SSLv3 cipher=RC4-MD5); Mon, 19 Jul 2010 09:23:41 -0700 (PDT) From: Maciej Mrozowski <reavertm@gmail.com> To: gentoo-dev@lists.gentoo.org Subject: Re: [gentoo-dev] New eclass: autotools-utils.eclass Date: Mon, 19 Jul 2010 18:23:36 +0200 User-Agent: KMail/1.13.5 (Linux/2.6.34-gentoo-r1; KDE/4.4.93; x86_64; ; ) References: <201007171253.19649.reavertm@gmail.com> <20100718005823.GB28010@hrair> <4C425EE3.1040709@gentoo.org> In-Reply-To: <4C425EE3.1040709@gentoo.org> Precedence: bulk List-Post: <mailto:gentoo-dev@lists.gentoo.org> List-Help: <mailto:gentoo-dev+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-dev+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-dev+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-dev.gentoo.org> X-BeenThere: gentoo-dev@lists.gentoo.org Reply-to: gentoo-dev@lists.gentoo.org MIME-Version: 1.0 Content-Type: Text/Plain; charset="utf-8" Content-Transfer-Encoding: 7bit Message-Id: <201007191823.36683.reavertm@gmail.com> X-Archives-Salt: 6c4637d2-e8f1-4cf1-8356-3ff4e8bf00ca X-Archives-Hash: 560bfe292ed9bc60e09826b8eb84f904 On Sunday 18 of July 2010 03:54:43 Jorge Manuel B. S. Vicetto wrote: > grep EAPI-TOO-OLD $(portageq portdir)/eclass/* > /home/gentoo-cvs/gentoo-x86/eclass/kde4-functions.eclass: *) > DEPEND="EAPI-TOO-OLD" ;; > /home/gentoo-cvs/gentoo-x86/eclass/poppler.eclass:has 2 ${EAPI} || > DEPEND="EAPI-TOO-OLD" > /home/gentoo-cvs/gentoo-x86/eclass/virtuoso.eclass: *) > DEPEND='EAPI-TOO-OLD' ;; status quo should be challenged occasionally. Fixed autotools-utils.eclass, kde4-functions.eclass, virtuoso.eclass case ${EAPI:-0} in 2|3|4) ;; - *) DEPEND="EAPI-TOO-OLD" ;; + *) die "EAPI=${EAPI} is not supported" ;; esac Remaining poppler.eclass is not used anymore and probably subject to remove. -- regards MM