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 3DCCA139085 for ; Mon, 16 Jan 2017 00:17:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 637FF234003; Mon, 16 Jan 2017 00:17:56 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 401C6234003 for ; Mon, 16 Jan 2017 00:17:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A5253341134 for ; Mon, 16 Jan 2017 00:17:54 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0C9C3286F for ; Mon, 16 Jan 2017 00:17:53 +0000 (UTC) From: "Christoph Junghans" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Christoph Junghans" Message-ID: <1484525821.23ab613d3391c7124b9d83c65dfa6bb842535c93.junghans@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-cluster/libquo/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-cluster/libquo/libquo-9999.ebuild X-VCS-Directories: sys-cluster/libquo/ X-VCS-Committer: junghans X-VCS-Committer-Name: Christoph Junghans X-VCS-Revision: 23ab613d3391c7124b9d83c65dfa6bb842535c93 X-VCS-Branch: master Date: Mon, 16 Jan 2017 00:17:53 +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: e6503ccd-78cd-4719-8dcb-10955789f168 X-Archives-Hash: e8b47025749add0c5709fd56ff1800df commit: 23ab613d3391c7124b9d83c65dfa6bb842535c93 Author: Christoph Junghans gentoo org> AuthorDate: Mon Jan 16 00:16:44 2017 +0000 Commit: Christoph Junghans gentoo org> CommitDate: Mon Jan 16 00:17:01 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23ab613d sys-cluster/libquo: import live ebuild for sci overlay Package-Manager: portage-2.3.0 sys-cluster/libquo/libquo-9999.ebuild | 42 +++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/sys-cluster/libquo/libquo-9999.ebuild b/sys-cluster/libquo/libquo-9999.ebuild new file mode 100644 index 00000000..68615e0 --- /dev/null +++ b/sys-cluster/libquo/libquo-9999.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +FORTRAN_NEEDED=fortran +FORTRAN_STANDARD=90 + +inherit fortran-2 + +if [ "${PV}" = "9999" ]; then + EGIT_REPO_URI="git://github.com/lanl/${PN}.git https://github.com/lanl/${PN}.git" + inherit autotools git-r3 + KEYWORDS="" +else + SRC_URI="http://lanl.github.io/${PN}/dists/${P}.tar.gz" + KEYWORDS="~amd64" +fi + +DESCRIPTION="run-time tuning of process binding policies made easy" +HOMEPAGE="http://lanl.github.io/libquo/" + +LICENSE="BSD" +SLOT="0" +IUSE="fortran static-libs test" + +DEPEND=" + virtual/mpi[fortran?] + sys-process/numactl + sys-apps/hwloc[numa,xml] + " +RDEPEND="${DEPEND}" + +src_prepare() { + default + [[ ${PV} = 9999 ]] && eautoreconf +} + +src_configure() { + econf CC=mpicc FC=$(usex fortran mpif90 false) +}