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 C704058973 for ; Sat, 30 Jan 2016 15:47:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 32AFE21C002; Sat, 30 Jan 2016 15:47:12 +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 A134E21C002 for ; Sat, 30 Jan 2016 15:47:11 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B2FBD3409D7 for ; Sat, 30 Jan 2016 15:47:10 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1FC828ED for ; Sat, 30 Jan 2016 15:47:08 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1454168825.a5596388fbb1521d2b8e87c7357cc026909b0544.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/fortran-2.eclass X-VCS-Directories: eclass/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: a5596388fbb1521d2b8e87c7357cc026909b0544 X-VCS-Branch: master Date: Sat, 30 Jan 2016 15:47:08 +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: 12c4d451-974a-40ad-9e39-98d7ee08af94 X-Archives-Hash: 54362b151f3dc9ac862f9ee2d65f6df6 commit: a5596388fbb1521d2b8e87c7357cc026909b0544 Author: Justin Lecher gentoo org> AuthorDate: Sat Jan 30 15:45:46 2016 +0000 Commit: Justin Lecher gentoo org> CommitDate: Sat Jan 30 15:47:05 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5596388 fortran-2.eclass: Fix fortran-2_pkg_setup() for EAPI=6 case statement ignored EAPI > 5 Gentoo-Bugs: https://bugs.gentoo.org/show_bug.cgi?id=573368 Signed-off-by: Justin Lecher gentoo.org> eclass/fortran-2.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/fortran-2.eclass b/eclass/fortran-2.eclass index 8627965..66b8100 100644 --- a/eclass/fortran-2.eclass +++ b/eclass/fortran-2.eclass @@ -278,7 +278,7 @@ fortran-2_pkg_setup() { eqawarn "Please migrate your package to a higher EAPI" eqawarn "or file a bug at https://bugs.gentoo.org" _fortran-2_pkg_setup ;; - 4|5) + *) if [[ ${MERGE_TYPE} != binary ]]; then _fortran-2_pkg_setup fi