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 3041D1396DC for ; Mon, 25 Dec 2017 00:24:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A059DE1049; Mon, 25 Dec 2017 00:24:54 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 7F65EE1049 for ; Mon, 25 Dec 2017 00:24:54 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C651033BE2E for ; Mon, 25 Dec 2017 00:24:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 85A0EAFE2 for ; Sun, 24 Dec 2017 18:00:42 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1514138427.ad80f329e6e91c1c6549c8df3c298a4d1d8a6657.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-biology/allpathslg/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-biology/allpathslg/allpathslg-52488-r2.ebuild X-VCS-Directories: sci-biology/allpathslg/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: ad80f329e6e91c1c6549c8df3c298a4d1d8a6657 X-VCS-Branch: master Date: Sun, 24 Dec 2017 18:00:42 +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: 550b9f1f-51cb-4a8a-ab8f-f7cc47401075 X-Archives-Hash: b3aa1b04ca3ae50bb0c39f91886f94d7 commit: ad80f329e6e91c1c6549c8df3c298a4d1d8a6657 Author: David Seifert gentoo org> AuthorDate: Sun Dec 24 17:59:40 2017 +0000 Commit: David Seifert gentoo org> CommitDate: Sun Dec 24 18:00:27 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad80f329 sci-biology/allpathslg: Sanitize ebuild Package-Manager: Portage-2.3.19, Repoman-2.3.6 sci-biology/allpathslg/allpathslg-52488-r2.ebuild | 19 ++----------------- 1 file changed, 2 insertions(+), 17 deletions(-) diff --git a/sci-biology/allpathslg/allpathslg-52488-r2.ebuild b/sci-biology/allpathslg/allpathslg-52488-r2.ebuild index 391575f4f05..964904d6655 100644 --- a/sci-biology/allpathslg/allpathslg-52488-r2.ebuild +++ b/sci-biology/allpathslg/allpathslg-52488-r2.ebuild @@ -29,26 +29,11 @@ PATCHES=( ) pkg_pretend() { - # as of release 44849, GCC 4.7.0 (or higher) is required - # seems pre gcc-4.7 users must stay with: - # ftp://ftp.broadinstitute.org/pub/crd/ALLPATHS/Release-LG/latest_source_code/2013/2013-01/allpathslg-44837.tar.gz - if [[ ${MERGE_TYPE} != binary ]]; then - tc-is-gcc && [[ $(gcc-version) < 4.7 ]] && \ - die "You need to use gcc >4.7" - fi + [[ ${MERGE_TYPE} != binary ]] && tc-check-openmp } pkg_setup() { - if ! tc-has-openmp; then - ewarn "OpenMP is not available in your current selected compiler" - - if tc-is-clang; then - ewarn "OpenMP support in sys-devel/clang is provided by sys-libs/libomp," - ewarn "which you will need to build ${CATEGORY}/${PN} with USE=\"openmp\"" - fi - - die "need openmp capable compiler" - fi + [[ ${MERGE_TYPE} != binary ]] && tc-check-openmp } src_prepare() {