Gentoo Archives: gentoo-commits

From: Christoph Junghans <ottxor@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-cluster/libcircle/
Date: Sat, 10 Oct 2015 14:49:38
Message-Id: 1444488636.f372e8337de2ac74e6766883be3320e8bea009f6.ottxor@gentoo
1 commit: f372e8337de2ac74e6766883be3320e8bea009f6
2 Author: Christoph Junghans <ottxor <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 10 14:49:55 2015 +0000
4 Commit: Christoph Junghans <ottxor <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 10 14:50:36 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f372e833
7
8 sys-cluster/libcircle: version bump
9
10 Package-Manager: portage-2.2.20.1
11
12 sys-cluster/libcircle/Manifest | 1 +
13 sys-cluster/libcircle/libcircle-0.2.1_rc1.ebuild | 44 ++++++++++++++++++++++++
14 2 files changed, 45 insertions(+)
15
16 diff --git a/sys-cluster/libcircle/Manifest b/sys-cluster/libcircle/Manifest
17 index 28bac28..2aea371 100644
18 --- a/sys-cluster/libcircle/Manifest
19 +++ b/sys-cluster/libcircle/Manifest
20 @@ -1 +1,2 @@
21 DIST libcircle-0.2.0_rc1.tar.gz 351901 SHA256 59ed75c0bdf2b24f96fbc0230848a5aab57d4eab5a68895489d59a7f68ddd2ee SHA512 1ce07ae012c281fe3e6fbae29bf48e1079768ed5f92f9375c3be02880bed1b1feee6630b31560d7129f76640990e94da1753f55b11a0a8977adaaf9e51144044 WHIRLPOOL 984713d28ee80f686daea7d419a1135360bcda542f904a1aa4ea0ef03b87482e60c2c0858a9e6fd85d7bde1ef557bd61c717ba924f942dfd82d7cbeb9a2e0359
22 +DIST libcircle-0.2.1_rc1.tar.gz 354251 SHA256 a0d0d75db2be9e47045572ad40f7e1077b7c3540f79180ad1db265ca89438db3 SHA512 9a125bc9f95b1dfb1c777dece4310a709cec46f820651216cd3a34486260f80221e564b82dfaf1ba58b8091b18c6d6b87b0c64d24a940cae6593dc144426fb54 WHIRLPOOL ec77f629c8d5b2391a8f25aa888e0606a0d0240ccf86e6bbe5ba8a04c5e411a6d3f077777da6cdd7badaa87c40b44b6a67b7b901ceb94fb3bec3b118b8465a0a
23
24 diff --git a/sys-cluster/libcircle/libcircle-0.2.1_rc1.ebuild b/sys-cluster/libcircle/libcircle-0.2.1_rc1.ebuild
25 new file mode 100644
26 index 0000000..c702e273
27 --- /dev/null
28 +++ b/sys-cluster/libcircle/libcircle-0.2.1_rc1.ebuild
29 @@ -0,0 +1,44 @@
30 +# Copyright 1999-2015 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI=5
35 +
36 +inherit autotools-utils
37 +
38 +if [ "${PV}" = "9999" ]; then
39 + EGIT_REPO_URI="git://github.com/hpc/${PN}.git https://github.com/hpc/${PN}.git"
40 + inherit git-2
41 + KEYWORDS=""
42 +else
43 + inherit vcs-snapshot
44 + SRC_URI="https://github.com/hpc/${PN}/archive/${PV/_rc/-rc.}.tar.gz -> ${P}.tar.gz"
45 + KEYWORDS="~amd64 ~x86 ~amd64-linux"
46 +fi
47 +
48 +DESCRIPTION="an API for distributing embarrassingly parallel workloads using self-stabilization"
49 +HOMEPAGE="https://github.com/hpc/libcircle"
50 +
51 +SLOT="0"
52 +LICENSE="BSD"
53 +IUSE="doc test"
54 +
55 +RDEPEND="virtual/mpi"
56 +DEPEND="${RDEPEND}
57 + doc? ( app-doc/doxygen )
58 + test? ( dev-libs/check )"
59 +
60 +DOCS=( HACKING.md README.md )
61 +
62 +src_configure() {
63 + local myeconfargs=(
64 + $(use_enable test tests)
65 + $(use_enable doc doxygen)
66 + )
67 + autotools-utils_src_configure
68 +}
69 +
70 +src_install() {
71 + use doc && HTML_DOCS=( "${BUILD_DIR}/doc/html/" )
72 + autotools-utils_src_install
73 +}