From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id BD89D138010 for ; Thu, 4 Oct 2012 03:57:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 76371E043A; Thu, 4 Oct 2012 03:57:30 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 455CBE043A for ; Thu, 4 Oct 2012 03:57:30 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A69D333CAAD for ; Thu, 4 Oct 2012 03:57:29 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 228ECE5436 for ; Thu, 4 Oct 2012 03:57:28 +0000 (UTC) From: "Davide Pesavento" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Davide Pesavento" Message-ID: <1349323009.7a3c9b705558841ccb6517ac4382158818e79023.pesa@gentoo> Subject: [gentoo-commits] proj/qt:master commit in: eclass/ X-VCS-Repository: proj/qt X-VCS-Files: eclass/qt4-build.eclass eclass/qt4-r2.eclass X-VCS-Directories: eclass/ X-VCS-Committer: pesa X-VCS-Committer-Name: Davide Pesavento X-VCS-Revision: 7a3c9b705558841ccb6517ac4382158818e79023 X-VCS-Branch: master Date: Thu, 4 Oct 2012 03:57:28 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 57353ba9-1985-48fd-bb3b-10c87b15d61f X-Archives-Hash: 8773033c2c016aade9822bcb683ea242 commit: 7a3c9b705558841ccb6517ac4382158818e79023 Author: Davide Pesavento gmail com> AuthorDate: Thu Oct 4 03:56:49 2012 +0000 Commit: Davide Pesavento gentoo org> CommitDate: Thu Oct 4 03:56:49 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=7a3c9b70 [qt4-{build,r2}.eclass] Allow EAPI=5 --- eclass/qt4-build.eclass | 4 ++-- eclass/qt4-r2.eclass | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/eclass/qt4-build.eclass b/eclass/qt4-build.eclass index 2d41d13..df37b64 100644 --- a/eclass/qt4-build.eclass +++ b/eclass/qt4-build.eclass @@ -10,8 +10,8 @@ # This eclass contains various functions that are used when building Qt4. case ${EAPI} in - 2|3|4) : ;; - *) die "qt4-build.eclass requires EAPI 2, 3 or 4." ;; + 2|3|4|5) : ;; + *) die "qt4-build.eclass: unsupported EAPI=${EAPI:-0}" ;; esac inherit eutils flag-o-matic multilib toolchain-funcs versionator diff --git a/eclass/qt4-r2.eclass b/eclass/qt4-r2.eclass index 8916110..a35975c 100644 --- a/eclass/qt4-r2.eclass +++ b/eclass/qt4-r2.eclass @@ -11,8 +11,8 @@ # dealing with packages using Qt4 libraries. Requires EAPI=2 or later. case ${EAPI} in - 2|3|4) : ;; - *) die "EAPI=${EAPI} is not supported by ${ECLASS} eclass." ;; + 2|3|4|5) : ;; + *) die "qt4-r2.eclass: unsupported EAPI=${EAPI:-0}" ;; esac inherit base eutils multilib toolchain-funcs