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 5BD25138334 for ; Sat, 23 Jun 2018 18:37:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7F930E0837; Sat, 23 Jun 2018 18:37:03 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 54460E081A for ; Sat, 23 Jun 2018 18:37:03 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 4464A335C9C for ; Sat, 23 Jun 2018 18:37:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C93C62E0 for ; Sat, 23 Jun 2018 18:37:00 +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: <1529779016.3abbba9a1777bc050e67c510c1327f8a378c6e6e.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-cluster/ucx/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-cluster/ucx/Manifest sys-cluster/ucx/ucx-1.3.0.ebuild X-VCS-Directories: sys-cluster/ucx/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 3abbba9a1777bc050e67c510c1327f8a378c6e6e X-VCS-Branch: master Date: Sat, 23 Jun 2018 18:37:00 +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: dd0c3b0a-32e6-49b8-988d-9d0d93dcb0e6 X-Archives-Hash: 7c10e75774903e1e4d3515bfe4018e49 commit: 3abbba9a1777bc050e67c510c1327f8a378c6e6e Author: Justin Lecher gentoo org> AuthorDate: Sat Jun 23 18:36:09 2018 +0000 Commit: Justin Lecher gentoo org> CommitDate: Sat Jun 23 18:36:56 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3abbba9a sys-cluster/ucx: Version Bump Signed-off-by: Justin Lecher gentoo.org> Package-Manager: Portage-2.3.40, Repoman-2.3.9 sys-cluster/ucx/Manifest | 1 + sys-cluster/ucx/ucx-1.3.0.ebuild | 25 +++++++++++++++++++++++++ 2 files changed, 26 insertions(+) diff --git a/sys-cluster/ucx/Manifest b/sys-cluster/ucx/Manifest index e0076771f8a..6382831bd8a 100644 --- a/sys-cluster/ucx/Manifest +++ b/sys-cluster/ucx/Manifest @@ -1 +1,2 @@ DIST ucx-1.2.2.tar.gz 1513611 BLAKE2B 488b9b3cecc2c617b1209036e1342e4378459db6a5e93eab1d88dfe80cb0d9c8013c767413206f0fbd0105557ed89994ab510421068d709101336a7b3d2eac5e SHA512 515c382826310b9aa7179ab19ceb76a881a41e6786514219b7f703c6144fa57ca141bceb3b80523ae1b4e2a4b13e9abcb9df063612b376d894c5cd81cdc00571 +DIST ucx-1.3.0.tar.gz 1707317 BLAKE2B 740ab240663a26fde8abe631416dae6233febf3c587ba6bb7b27a9cb0aa041540ce71e106bb3c5618a719de66d479055961908b67125df61a4c7696999c0affb SHA512 0a2e32985e0225fc4ad15dbb1c422dba1d5552638e7329d67572924502e61e1a481ce30cde5ccc83c663fb4ec643df83efc08aed164dfbce6cf38d66a16b3e42 diff --git a/sys-cluster/ucx/ucx-1.3.0.ebuild b/sys-cluster/ucx/ucx-1.3.0.ebuild new file mode 100644 index 00000000000..eb6c279f645 --- /dev/null +++ b/sys-cluster/ucx/ucx-1.3.0.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DESCRIPTION="Unified Communication X" +HOMEPAGE="http://www.openucx.org" +SRC_URI="https://github.com/openucx/ucx/releases/download/v${PV}/${P}.tar.gz" + +SLOT="0" +LICENSE="BSD" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="+numa +openmp" + +RDEPEND=" + numa? ( sys-process/numactl ) +" + +src_configure() { + BASE_CFLAGS="" \ + econf \ + --disable-compiler-opt \ + $(use_enable numa) \ + $(use_enable openmp) +}