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 EA2B41382C5 for ; Wed, 4 Apr 2018 08:39:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 259BEE0DDE; Wed, 4 Apr 2018 08:39:04 +0000 (UTC) Received: from mx-out1.startmail.com (mx-out1.startmail.com [145.131.90.139]) (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 C66E8E0CCE for ; Wed, 4 Apr 2018 08:39:03 +0000 (UTC) Date: Wed, 4 Apr 2018 03:04:21 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=startmail.com; s=2017-11; t=1522831141; bh=vNiL09cvtkIu2s5qYBN+SghwYIG8VdGrA0cAgfV3D8E=; h=Date:From:To:Subject:References:In-Reply-To:From; b=SiWkzzskLRzac/PUkRzS+V4wmsaLgSJx/OtajHJE+m5yCdetfjZjszQx0TCSCTL9R RFaNO+2fQ5Q6b5IhOSErMPhbFbr0F/9+iKNx0xXkwj4Hv/hTzG0Use8ZOviZCiW2CD C/Hkyq2nkOmTc/Zr8P39sHxq0k7KxDAtl2ud+wx7tAgUlKhdVzVzzY6EnTrtpcutz2 ndZkXQwsJ0OUWV7VtmVg2uzArhWqSpSVUo+6q2jXY0mHti34C6NAO4mE4EmFGdc+8g YA7HIkLVR9Rgevyb86pIbezt6FZ66I89goAvaCNZ02n26+kIPZXt+AgsB3zqXwwCYG pYY9YkUkDqS9w== From: "Marty E. Plummer" To: gentoo-dev@lists.gentoo.org Subject: Re: [gentoo-dev] [PATCH] eclass: freedict: require EAPI=6 Message-ID: <20180404080420.iq2p4eyjhy7trh4p@proprietary-killer> References: <20180326213310.4507-1-hanetzer@startmail.com> <23226.3272.11913.791591@a1i15.kph.uni-mainz.de> <20180328073109.inqow7vsl6ja6jug@proprietary-killer.fossland> <23227.22488.110720.428667@a1i15.kph.uni-mainz.de> Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-dev@lists.gentoo.org Reply-to: gentoo-dev@lists.gentoo.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <23227.22488.110720.428667@a1i15.kph.uni-mainz.de> X-Archives-Salt: 35e68e70-f6cd-4400-bac0-3fd39b8ce36a X-Archives-Hash: 0cf6e34b53097bf4dff3e389f794a0eb Any action on this? On Wed, Mar 28, 2018 at 10:52:40AM +0200, Ulrich Mueller wrote: > >>>>> On Wed, 28 Mar 2018, Marty E Plummer wrote: > > > How's this: > > Looks good to me. > > > --- > > eclass/freedict.eclass | 18 ++++++++++-------- > > 1 file changed, 10 insertions(+), 8 deletions(-) > > > diff --git a/eclass/freedict.eclass b/eclass/freedict.eclass > > index 06419626d34..7c598aa6eaf 100644 > > --- a/eclass/freedict.eclass > > +++ b/eclass/freedict.eclass > > @@ -1,4 +1,4 @@ > > -# Copyright 1999-2014 Gentoo Foundation > > +# Copyright 1999-2018 Gentoo Foundation > > # Distributed under the terms of the GNU General Public License v2 > > > # @ECLASS: freedict.eclass > > @@ -21,21 +21,23 @@ > > # @DESCRIPTION: > > # Please see above for a description. > > > -inherit eutils multilib > > - > > -IUSE="" > > +case ${EAPI:-0} in > > + 6) ;; > > + *) die "${ECLASS}.eclass is banned in EAPI=${EAPI}" ;; > > +esac > > > MY_P=${PN/freedict-/} > > > -S="${WORKDIR}" > > DESCRIPTION="Freedict for language translation from ${FORLANG} to ${TOLANG}" > > -HOMEPAGE="http://www.freedict.de" > > +HOMEPAGE="http://freedict.sourceforge.net" > > SRC_URI="http://freedict.sourceforge.net/download/linux/${MY_P}.tar.gz" > > > +LICENSE="GPL-2+" > > SLOT="0" > > -LICENSE="GPL-2" > > > -DEPEND="app-text/dictd" > > +RDEPEND="app-text/dictd" > > + > > +S="${WORKDIR}" > > > # @FUNCTION: freedict_src_install > > # @DESCRIPTION: > > -- > > 2.16.3 > > >