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 A3F4858973 for ; Tue, 2 Feb 2016 18:35:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 55B6C21C112; Tue, 2 Feb 2016 18:35:34 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0ACC621C112 for ; Tue, 2 Feb 2016 18:35:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C5403340E10 for ; Tue, 2 Feb 2016 18:35:31 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 33DF9E6C for ; Tue, 2 Feb 2016 18:35: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: <1454438101.9fede9308d704a29a3a04bfd78159fbf0fac3af2.pesa@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/qt5-build.eclass X-VCS-Directories: eclass/ X-VCS-Committer: pesa X-VCS-Committer-Name: Davide Pesavento X-VCS-Revision: 9fede9308d704a29a3a04bfd78159fbf0fac3af2 X-VCS-Branch: master Date: Tue, 2 Feb 2016 18:35: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: 7e703f0f-b2d3-4a24-97f4-5e3ab3e15c4e X-Archives-Hash: 7a89ce9cfeebc5d1d521b0aee304be36 commit: 9fede9308d704a29a3a04bfd78159fbf0fac3af2 Author: Michael Palimaka gentoo org> AuthorDate: Thu Jan 14 18:28:06 2016 +0000 Commit: Davide Pesavento gentoo org> CommitDate: Tue Feb 2 18:35:01 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9fede930 qt5-build.eclass: stop the eclass from being used accidentally (cherry picked from proj/qt commit 8aae5020b96f9e252e9f3a562c89551493877bba) eclass/qt5-build.eclass | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass index dc9e19a..db08161 100644 --- a/eclass/qt5-build.eclass +++ b/eclass/qt5-build.eclass @@ -12,6 +12,10 @@ # This eclass contains various functions that are used when building Qt5. # Requires EAPI 5 or 6. +if [[ ${CATEGORY} != dev-qt ]]; then + die "qt5-build.eclass is only to be used for building Qt 5." +fi + case ${EAPI} in 5|6) : ;; *) die "qt5-build.eclass: unsupported EAPI=${EAPI:-0}" ;;