Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/jags/
Date: Wed, 02 Mar 2016 08:33:01
Message-Id: 1456907540.392357d2153784f4a9e9111be19c69f30d7ebbbb.soap@gentoo
1 commit: 392357d2153784f4a9e9111be19c69f30d7ebbbb
2 Author: Xavier Fernández i Marín <xavier.fim <AT> gmail <DOT> com>
3 AuthorDate: Tue Mar 1 15:46:25 2016 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Wed Mar 2 08:32:20 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=392357d2
7
8 sci-mathematics/jags: version bump to 4.2.0
9
10 sci-mathematics/jags/Manifest | 1 +
11 sci-mathematics/jags/jags-4.2.0.ebuild | 46 ++++++++++++++++++++++++++++++++++
12 2 files changed, 47 insertions(+)
13
14 diff --git a/sci-mathematics/jags/Manifest b/sci-mathematics/jags/Manifest
15 index 0fe15b4..0fcedd6 100644
16 --- a/sci-mathematics/jags/Manifest
17 +++ b/sci-mathematics/jags/Manifest
18 @@ -1,3 +1,4 @@
19 DIST JAGS-3.4.0.tar.gz 1677450 SHA256 2beaa9a2672c2c95efc55ffa4c8b597a872f20232373daebd17ad539d3d7d82b SHA512 7a330ea41eab63b23d8ae3622c6920f0dc3dba653a18256957b9b862bb86b746ff706e9e9bf3f806524250b439161a6df4ad05af682354073f9b0074f9825896 WHIRLPOOL 48f2bf92f80ea0558697701320e142a61b3eb5cfefe234973a6a189096b7887ec5ea829f8f6183bf9ad4a0f6fb07d769c710b721ec1e211772cbeaea0187c8e2
20 DIST JAGS-4.0.0.tar.gz 1880476 SHA256 a1d572269029d90d4e8b25757fd7ae9678994bd682937ec505ddcf06185d2c4c SHA512 bbe4f4600dff0fc1db6f8548b8d386ea804174d69788646681de6d006a0e0ab018fb01257b5737f871d10c8b59865950fb91b6a9cad5d1e6addc415004c6f82c WHIRLPOOL d1f2ad15834252c63300259c789f69ca0fa008d0c2008d504db2c394642f7a63180baae76bc272a33a92c83addc373fd9ce026063ea74b40397ac902c2272aed
21 DIST JAGS-4.1.0.tar.gz 1872634 SHA256 45ecf31b5b2127620a79875745b8ea4203ca2430a8b3625f5e80adc897cdf522 SHA512 76b52764e57e6c4450cc52c7c7c3de384f93bd6e57d8b88f1863b7c329bdd2ec39834902c223d433d263bcf29362b958807a9cb96b9066d4f75832b366339fd8 WHIRLPOOL b0187c02a971ccc733c34aa2e4f8e1ed32d1c767d97fb667034cd6035c08f63c2a6c014dcb5d5dd7ed080fdc9fae34be7bf002d0d631a6a454b849cf7c3cec67
22 +DIST JAGS-4.2.0.tar.gz 1875538 SHA256 af3e9d2896d3e712f99e2a0c81091c6b08f096650af6aa9d0c631c0790409cf7 SHA512 316483cd1a879c70c9b8ad6f23665196b95b9745da3924a47e14f4b0fd7c1abf9237575561cb31044623594360b6e991de68e1d9746baedeb285c65b77baada8 WHIRLPOOL 84e13b5c581cb740a25bd94d95049d6e8830e3b9403b29b188d0ab1ec552e99015620fa93f0e6da85ce293db3bf8b07f1d763e48f6d7cef745c9d9a424ea637c
23
24 diff --git a/sci-mathematics/jags/jags-4.2.0.ebuild b/sci-mathematics/jags/jags-4.2.0.ebuild
25 new file mode 100644
26 index 0000000..8e83927
27 --- /dev/null
28 +++ b/sci-mathematics/jags/jags-4.2.0.ebuild
29 @@ -0,0 +1,46 @@
30 +# Copyright 1999-2016 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI=6
35 +
36 +inherit eutils toolchain-funcs
37 +
38 +MYP="JAGS-${PV}"
39 +
40 +DESCRIPTION="Just Another Gibbs Sampler for Bayesian MCMC simulation"
41 +HOMEPAGE="http://mcmc-jags.sourceforge.net/"
42 +SRC_URI="mirror://sourceforge/project/mcmc-jags/JAGS/4.x/Source/${MYP}.tar.gz"
43 +
44 +SLOT="0"
45 +LICENSE="GPL-2"
46 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
47 +IUSE="doc"
48 +
49 +RDEPEND="
50 + virtual/blas
51 + virtual/lapack"
52 +DEPEND="${RDEPEND}
53 + virtual/pkgconfig
54 + doc? (
55 + virtual/latex-base
56 + dev-texlive/texlive-latexextra
57 + )"
58 +
59 +S="${WORKDIR}/${MYP}"
60 +
61 +src_configure() {
62 + econf \
63 + --with-blas="$($(tc-getPKG_CONFIG) --libs blas)" \
64 + --with-lapack="$($(tc-getPKG_CONFIG) --libs lapack)"
65 +}
66 +
67 +src_compile() {
68 + emake all $(usex doc docs "")
69 +}
70 +
71 +src_install() {
72 + default
73 + use doc && dodoc doc/manual/*.pdf
74 + prune_libtool_files
75 +}