From cf0f38b43cc328a7b6e60d4df3e7d0e1a564c7ea Mon Sep 17 00:00:00 2001 From: Sebastian Parborg Date: Mon, 15 Aug 2011 19:19:27 +0200 Subject: Declare EAPI before you inherit something! --- ebuildgen/ebuildoutput.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ebuildgen/ebuildoutput.py b/ebuildgen/ebuildoutput.py index a8ca3a6..dd212e0 100644 --- a/ebuildgen/ebuildoutput.py +++ b/ebuildgen/ebuildoutput.py @@ -57,14 +57,14 @@ def outputebuild(iuse,deps,usedeps,dltype,adress,installmethod): '# Copyright 1999-' + strftime("%Y") + ' Gentoo Foundation', '# Distributed under the terms of the GNU General Public License v2', '# $Header: $', - '' + '', + 'EAPI=3', + '', ] inheritstr = 'inherit ' + eclass[dltype] + ' autotools' text.append(inheritstr) text += [ - '', - 'EAPI=3', '', 'DESCRIPTION=""', 'HOMEPAGE=""' -- cgit v1.2.3-65-gdbad