Gentoo Archives: gentoo-commits

From: Andrea Arteaga <andyspiros@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: app-benchmarks/numbench/
Date: Tue, 28 Aug 2012 16:05:52
Message-Id: 1346169816.4afd5e65c0809c907d03e115c79e372bb5776846.spiros@gentoo
1 commit: 4afd5e65c0809c907d03e115c79e372bb5776846
2 Author: Andrea Arteaga <andyspiros <AT> gmail <DOT> com>
3 AuthorDate: Tue Aug 28 16:03:36 2012 +0000
4 Commit: Andrea Arteaga <andyspiros <AT> gmail <DOT> com>
5 CommitDate: Tue Aug 28 16:03:36 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=4afd5e65
7
8 [app-benchmarks/numbench] Version bump.
9
10 ---
11 app-benchmarks/numbench/ChangeLog | 10 +++++--
12 app-benchmarks/numbench/numbench-0.2.ebuild | 38 +++++++++++++++++++++++++++
13 2 files changed, 45 insertions(+), 3 deletions(-)
14
15 diff --git a/app-benchmarks/numbench/ChangeLog b/app-benchmarks/numbench/ChangeLog
16 index efdd331..2c3add6 100644
17 --- a/app-benchmarks/numbench/ChangeLog
18 +++ b/app-benchmarks/numbench/ChangeLog
19 @@ -1,6 +1,13 @@
20 # ChangeLog for app-benchmarks/numbench
21 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
22 # $Header: $
23 +
24 +*numbench-0.2
25 +
26 + 8 Aug 2012; Andrea Arteaga <andyspiros@×××××.com> +numbench-0.2.ebuild
27 + Version bump.
28 +
29 +*numbench-0.2_beta4
30
31 8 Aug 2012; Andrea Arteaga <andyspiros@×××××.com> +numbench-0.2_beta4-r1.ebuild
32 -numbench-0.2_beta1.ebuild -numbench-0.2_beta3.ebuild
33 @@ -8,9 +15,6 @@
34
35 7 Aug 2012; Andrea Arteaga <andyspiros@×××××.com> numbench-9999.ebuild
36 Updated live ebuild.
37 -
38 -*numbench-0.2_beta3
39 -
40 6 Aug 2012; Andrea Arteaga <andyspiros@×××××.com> +numbench-0.2_beta4.ebuild
41 Version 0.2_beta4 added.
42
43
44 diff --git a/app-benchmarks/numbench/numbench-0.2.ebuild b/app-benchmarks/numbench/numbench-0.2.ebuild
45 new file mode 100644
46 index 0000000..4cb74f6
47 --- /dev/null
48 +++ b/app-benchmarks/numbench/numbench-0.2.ebuild
49 @@ -0,0 +1,38 @@
50 +# Copyright 1999-2012 Gentoo Foundation
51 +# Distributed under the terms of the GNU General Public License v2
52 +# $Header: $
53 +
54 +EAPI=3
55 +
56 +inherit eutils distutils
57 +
58 +DESCRIPTION="Automated benchmarks suite"
59 +HOMEPAGE="http://soc.dev.gentoo.org/~spiros"
60 +SRC_URI="http://github.com/andyspiros/numbench/tarball/${PV} -> ${P}.tar.gz"
61 +CID="127a61c"
62 +
63 +LICENSE="GPL-2"
64 +SLOT="0"
65 +KEYWORDS="~amd64 ~x86"
66 +
67 +IUSE=""
68 +
69 +RDEPEND="!app-admin/eselect-blas
70 + !app-admin/eselect-cblas
71 + !app-admin/eselect-lapack
72 + >=dev-python/matplotlib-1.0.0
73 + =app-admin/eselect-1.3.1-r1"
74 +
75 +S="${WORKDIR}/andyspiros-numbench-${CID}"
76 +
77 +src_install() {
78 + distutils_src_install
79 +
80 + chmod +x exec.py
81 + newbin exec.py numbench
82 +
83 + insinto /usr/share/numbench/samples
84 + doins samples/*.xml
85 +
86 + doman doc/numbench.1
87 +}