Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-cluster/ucx/
Date: Sun, 01 Apr 2018 20:51:40
Message-Id: 1522615893.978c8e081d9b625ce7414fa19839afe80cac52f1.jlec@gentoo
1 commit: 978c8e081d9b625ce7414fa19839afe80cac52f1
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Sun Apr 1 20:36:57 2018 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Sun Apr 1 20:51:33 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=978c8e08
7
8 sys-cluster/ucx: New package
9
10 Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
11 Package-Manager: Portage-2.3.27, Repoman-2.3.9
12
13 sys-cluster/ucx/Manifest | 1 +
14 sys-cluster/ucx/metadata.xml | 12 ++++++++++++
15 sys-cluster/ucx/ucx-1.2.2.ebuild | 29 +++++++++++++++++++++++++++++
16 3 files changed, 42 insertions(+)
17
18 diff --git a/sys-cluster/ucx/Manifest b/sys-cluster/ucx/Manifest
19 new file mode 100644
20 index 00000000000..e0076771f8a
21 --- /dev/null
22 +++ b/sys-cluster/ucx/Manifest
23 @@ -0,0 +1 @@
24 +DIST ucx-1.2.2.tar.gz 1513611 BLAKE2B 488b9b3cecc2c617b1209036e1342e4378459db6a5e93eab1d88dfe80cb0d9c8013c767413206f0fbd0105557ed89994ab510421068d709101336a7b3d2eac5e SHA512 515c382826310b9aa7179ab19ceb76a881a41e6786514219b7f703c6144fa57ca141bceb3b80523ae1b4e2a4b13e9abcb9df063612b376d894c5cd81cdc00571
25
26 diff --git a/sys-cluster/ucx/metadata.xml b/sys-cluster/ucx/metadata.xml
27 new file mode 100644
28 index 00000000000..d11a30befa7
29 --- /dev/null
30 +++ b/sys-cluster/ucx/metadata.xml
31 @@ -0,0 +1,12 @@
32 +<?xml version="1.0" encoding="UTF-8"?>
33 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
34 +<pkgmetadata>
35 + <maintainer type="person">
36 + <email>jlec@g.o</email>
37 + <name>Justin Lecher</name>
38 + </maintainer>
39 + <maintainer type="project">
40 + <email>cluster@g.o</email>
41 + <name>Gentoo Cluster Project</name>
42 + </maintainer>
43 +</pkgmetadata>
44
45 diff --git a/sys-cluster/ucx/ucx-1.2.2.ebuild b/sys-cluster/ucx/ucx-1.2.2.ebuild
46 new file mode 100644
47 index 00000000000..0b581f7bf56
48 --- /dev/null
49 +++ b/sys-cluster/ucx/ucx-1.2.2.ebuild
50 @@ -0,0 +1,29 @@
51 +# Copyright 1999-2018 Gentoo Foundation
52 +# Distributed under the terms of the GNU General Public License v2
53 +
54 +EAPI=6
55 +
56 +inherit autotools
57 +
58 +DESCRIPTION="Unified Communication X"
59 +HOMEPAGE="http://www.openucx.org"
60 +SRC_URI="https://github.com/openucx/ucx/releases/download/v${PV}/${P}.tar.gz"
61 +
62 +SLOT="0"
63 +LICENSE="BSD"
64 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
65 +IUSE=""
66 +
67 +src_prepare() {
68 + default
69 + sed \
70 + -e '/^BASE_CFLAGS/s:=.*:=:g' \
71 + -i config/m4/compiler.m4 || die
72 + eautoreconf
73 +}
74 +
75 +src_configure() {
76 + BASE_CFLAGS="" \
77 + econf \
78 + --disable-compiler-opt
79 +}