* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/jags/
@ 2022-08-30 22:00 Andreas Sturmlechner
0 siblings, 0 replies; 15+ messages in thread
From: Andreas Sturmlechner @ 2022-08-30 22:00 UTC (permalink / raw
To: gentoo-commits
commit: c36025e619509e943bbfc33e6489f0daaee4bd82
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 30 21:33:08 2022 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Tue Aug 30 21:59:32 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c36025e6
sci-mathematics/jags: drop 4.2.0, EAPI-6--
Closes: https://bugs.gentoo.org/867538
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
sci-mathematics/jags/Manifest | 1 -
sci-mathematics/jags/jags-4.2.0.ebuild | 45 ----------------------------------
2 files changed, 46 deletions(-)
diff --git a/sci-mathematics/jags/Manifest b/sci-mathematics/jags/Manifest
index b4a2fcb4f2d0..e30aaf0e29f9 100644
--- a/sci-mathematics/jags/Manifest
+++ b/sci-mathematics/jags/Manifest
@@ -1,2 +1 @@
-DIST JAGS-4.2.0.tar.gz 1875538 BLAKE2B 039cefdb546ec28b905f22a4ec3dfe6d85c64064701283fe38be59f53da971b523d8bb5b7c5efe3e9da81a255b064cb8b66cac2fd4e844883b7fcf89cdabdbb1 SHA512 316483cd1a879c70c9b8ad6f23665196b95b9745da3924a47e14f4b0fd7c1abf9237575561cb31044623594360b6e991de68e1d9746baedeb285c65b77baada8
DIST JAGS-4.3.0.tar.gz 2057409 BLAKE2B 5820c66dd10cc90343d53b901b7dbc1acf85dca0f5f80280864190882f0af865edad877eb2cfd421ec2035d3ae843373da1facee8a10b6735e2fc0387d452949 SHA512 d0564c73ff45484afad532ed788353f9c0945cd9667030eed5be674492bf97524d05903b22d4995c1de8a331dba7b04425d009e114d98a38b4bfce5214518b36
diff --git a/sci-mathematics/jags/jags-4.2.0.ebuild b/sci-mathematics/jags/jags-4.2.0.ebuild
deleted file mode 100644
index 0ed77c62577f..000000000000
--- a/sci-mathematics/jags/jags-4.2.0.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit toolchain-funcs
-
-MYP="JAGS-${PV}"
-
-DESCRIPTION="Just Another Gibbs Sampler for Bayesian MCMC simulation"
-HOMEPAGE="http://mcmc-jags.sourceforge.net/"
-SRC_URI="mirror://sourceforge/project/mcmc-jags/JAGS/4.x/Source/${MYP}.tar.gz"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
-IUSE="doc"
-
-RDEPEND="
- virtual/blas
- virtual/lapack"
-DEPEND="${RDEPEND}
- virtual/pkgconfig
- doc? (
- virtual/latex-base
- dev-texlive/texlive-latexextra
- )"
-
-S="${WORKDIR}/${MYP}"
-
-src_configure() {
- econf \
- --with-blas="$($(tc-getPKG_CONFIG) --libs blas)" \
- --with-lapack="$($(tc-getPKG_CONFIG) --libs lapack)"
-}
-
-src_compile() {
- emake all $(usex doc docs "")
-}
-
-src_install() {
- default
- use doc && dodoc doc/manual/*.pdf
- find "${ED}" -name '*.la' -delete || die
-}
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/jags/
@ 2024-08-06 0:20 Eli Schwartz
0 siblings, 0 replies; 15+ messages in thread
From: Eli Schwartz @ 2024-08-06 0:20 UTC (permalink / raw
To: gentoo-commits
commit: 44d876fa0ae1e1410845269e2819d415c59d47a8
Author: Eli Schwartz <eschwartz <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 5 18:09:11 2024 +0000
Commit: Eli Schwartz <eschwartz <AT> gentoo <DOT> org>
CommitDate: Tue Aug 6 00:18:30 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44d876fa
sci-mathematics/jags: add missing automagic dependency
ltdl is internally used, and also included as a "convenience copy". If
it's not available on the system then the code copy is used; if it is
available, we have a missing runtime dep.
The bundled copy also results in an LTO error.
Closes: https://bugs.gentoo.org/927674
Signed-off-by: Eli Schwartz <eschwartz <AT> gentoo.org>
sci-mathematics/jags/{jags-4.3.1.ebuild => jags-4.3.1-r1.ebuild} | 1 +
1 file changed, 1 insertion(+)
diff --git a/sci-mathematics/jags/jags-4.3.1.ebuild b/sci-mathematics/jags/jags-4.3.1-r1.ebuild
similarity index 98%
rename from sci-mathematics/jags/jags-4.3.1.ebuild
rename to sci-mathematics/jags/jags-4.3.1-r1.ebuild
index 24618ca40553..46f46bbac45e 100644
--- a/sci-mathematics/jags/jags-4.3.1.ebuild
+++ b/sci-mathematics/jags/jags-4.3.1-r1.ebuild
@@ -18,6 +18,7 @@ KEYWORDS="amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="doc"
RDEPEND="
+ dev-libs/libltdl
virtual/blas
virtual/lapack
"
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/jags/
@ 2024-08-06 0:20 Eli Schwartz
0 siblings, 0 replies; 15+ messages in thread
From: Eli Schwartz @ 2024-08-06 0:20 UTC (permalink / raw
To: gentoo-commits
commit: 1fcac3194b23e7a4f9b1ae6a99d373f36d35013f
Author: Eli Schwartz <eschwartz <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 5 18:19:41 2024 +0000
Commit: Eli Schwartz <eschwartz <AT> gentoo <DOT> org>
CommitDate: Tue Aug 6 00:18:31 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1fcac319
sci-mathematics/jags: make sure elibtoolize is applied
Signed-off-by: Eli Schwartz <eschwartz <AT> gentoo.org>
sci-mathematics/jags/jags-4.3.1-r1.ebuild | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/sci-mathematics/jags/jags-4.3.1-r1.ebuild b/sci-mathematics/jags/jags-4.3.1-r1.ebuild
index 46f46bbac45e..6ee9e9025d55 100644
--- a/sci-mathematics/jags/jags-4.3.1-r1.ebuild
+++ b/sci-mathematics/jags/jags-4.3.1-r1.ebuild
@@ -3,7 +3,7 @@
EAPI=8
-inherit toolchain-funcs
+inherit libtool toolchain-funcs
MYP="JAGS-${PV}"
@@ -31,6 +31,11 @@ BDEPEND="
)
"
+src_prepare() {
+ default
+ elibtoolize
+}
+
src_configure() {
econf \
--with-blas="$($(tc-getPKG_CONFIG) --libs blas)" \
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/jags/
@ 2023-06-10 4:20 Sam James
0 siblings, 0 replies; 15+ messages in thread
From: Sam James @ 2023-06-10 4:20 UTC (permalink / raw
To: gentoo-commits
commit: 273dd62873c4c3da3677f92b3f3f14f515456ea1
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Jun 10 04:19:00 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jun 10 04:19:00 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=273dd628
sci-mathematics/jags: Stabilize 4.3.1 amd64, #908183
Signed-off-by: Sam James <sam <AT> gentoo.org>
sci-mathematics/jags/jags-4.3.1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sci-mathematics/jags/jags-4.3.1.ebuild b/sci-mathematics/jags/jags-4.3.1.ebuild
index 3b7d97d08930..450c8d50908b 100644
--- a/sci-mathematics/jags/jags-4.3.1.ebuild
+++ b/sci-mathematics/jags/jags-4.3.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -14,7 +14,7 @@ S="${WORKDIR}/${MYP}"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="doc"
RDEPEND="
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/jags/
@ 2022-11-22 7:57 Sam James
0 siblings, 0 replies; 15+ messages in thread
From: Sam James @ 2022-11-22 7:57 UTC (permalink / raw
To: gentoo-commits
commit: 89eab812522679c4aa55b7b47a79ef3b42ee1986
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 22 07:56:58 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Nov 22 07:57:06 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89eab812
sci-mathematics/jags: add 4.3.1
Signed-off-by: Sam James <sam <AT> gentoo.org>
sci-mathematics/jags/Manifest | 1 +
sci-mathematics/jags/jags-4.3.1.ebuild | 47 ++++++++++++++++++++++++++++++++++
2 files changed, 48 insertions(+)
diff --git a/sci-mathematics/jags/Manifest b/sci-mathematics/jags/Manifest
index e30aaf0e29f9..92f5e020e39c 100644
--- a/sci-mathematics/jags/Manifest
+++ b/sci-mathematics/jags/Manifest
@@ -1 +1,2 @@
DIST JAGS-4.3.0.tar.gz 2057409 BLAKE2B 5820c66dd10cc90343d53b901b7dbc1acf85dca0f5f80280864190882f0af865edad877eb2cfd421ec2035d3ae843373da1facee8a10b6735e2fc0387d452949 SHA512 d0564c73ff45484afad532ed788353f9c0945cd9667030eed5be674492bf97524d05903b22d4995c1de8a331dba7b04425d009e114d98a38b4bfce5214518b36
+DIST JAGS-4.3.1.tar.gz 2019687 BLAKE2B dd464675f1aab59d007ffb29844b50ddcc26320cf8159b5ca108bf0e6db9878499aa40e090250b84ff4c8733100149037b2b3cee00b3ff2ec4fb23769157b944 SHA512 dceb97c92ad3ce3ebf62e1e68e822857f170f797f81a79fe5a56d8a81f8ea619e6e06356335e44def8f50ff82af55b2f9f7a880b84e092262a2d78e46c43acf2
diff --git a/sci-mathematics/jags/jags-4.3.1.ebuild b/sci-mathematics/jags/jags-4.3.1.ebuild
new file mode 100644
index 000000000000..3b7d97d08930
--- /dev/null
+++ b/sci-mathematics/jags/jags-4.3.1.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit toolchain-funcs
+
+MYP="JAGS-${PV}"
+
+DESCRIPTION="Just Another Gibbs Sampler for Bayesian MCMC simulation"
+HOMEPAGE="https://mcmc-jags.sourceforge.io/"
+SRC_URI="mirror://sourceforge/project/mcmc-jags/JAGS/$(ver_cut 1).x/Source/${MYP}.tar.gz"
+S="${WORKDIR}/${MYP}"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="doc"
+
+RDEPEND="
+ virtual/blas
+ virtual/lapack
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+ virtual/pkgconfig
+ doc? (
+ virtual/latex-base
+ dev-texlive/texlive-latexextra
+ )
+"
+
+src_configure() {
+ econf \
+ --with-blas="$($(tc-getPKG_CONFIG) --libs blas)" \
+ --with-lapack="$($(tc-getPKG_CONFIG) --libs lapack)"
+}
+
+src_compile() {
+ emake all $(usev doc docs)
+}
+
+src_install() {
+ default
+ use doc && dodoc doc/manual/*.pdf
+ find "${ED}" -name '*.la' -delete || die
+}
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/jags/
@ 2022-11-22 7:57 Sam James
0 siblings, 0 replies; 15+ messages in thread
From: Sam James @ 2022-11-22 7:57 UTC (permalink / raw
To: gentoo-commits
commit: 6ced732a91320728c0ee9a750d08512d1edaa5c9
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 22 07:08:47 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Nov 22 07:57:05 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ced732a
sci-mathematics/jags: use ver_cut in SRC_URI
Signed-off-by: Sam James <sam <AT> gentoo.org>
sci-mathematics/jags/jags-4.3.0.ebuild | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/sci-mathematics/jags/jags-4.3.0.ebuild b/sci-mathematics/jags/jags-4.3.0.ebuild
index 719d2d152ee1..6c2ad95e6bdc 100644
--- a/sci-mathematics/jags/jags-4.3.0.ebuild
+++ b/sci-mathematics/jags/jags-4.3.0.ebuild
@@ -9,10 +9,11 @@ MYP="JAGS-${PV}"
DESCRIPTION="Just Another Gibbs Sampler for Bayesian MCMC simulation"
HOMEPAGE="https://mcmc-jags.sourceforge.io/"
-SRC_URI="mirror://sourceforge/project/mcmc-jags/JAGS/4.x/Source/${MYP}.tar.gz"
+SRC_URI="mirror://sourceforge/project/mcmc-jags/JAGS/$(ver_cut 1).x/Source/${MYP}.tar.gz"
+S="${WORKDIR}/${MYP}"
-SLOT="0"
LICENSE="GPL-2"
+SLOT="0"
KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
IUSE="doc"
@@ -26,9 +27,8 @@ BDEPEND="
doc? (
virtual/latex-base
dev-texlive/texlive-latexextra
- )"
-
-S="${WORKDIR}/${MYP}"
+ )
+"
src_configure() {
econf \
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/jags/
@ 2022-08-30 18:40 Jakov Smolić
0 siblings, 0 replies; 15+ messages in thread
From: Jakov Smolić @ 2022-08-30 18:40 UTC (permalink / raw
To: gentoo-commits
commit: d15334b377525226ef887317525caf35fd7f976a
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 30 18:40:29 2022 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Tue Aug 30 18:40:29 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d15334b3
sci-mathematics/jags: Stabilize 4.3.0 x86, #867538
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
sci-mathematics/jags/jags-4.3.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sci-mathematics/jags/jags-4.3.0.ebuild b/sci-mathematics/jags/jags-4.3.0.ebuild
index 494001af7daf..719d2d152ee1 100644
--- a/sci-mathematics/jags/jags-4.3.0.ebuild
+++ b/sci-mathematics/jags/jags-4.3.0.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://sourceforge/project/mcmc-jags/JAGS/4.x/Source/${MYP}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
-KEYWORDS="amd64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
IUSE="doc"
RDEPEND="
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/jags/
@ 2022-08-30 18:40 Jakov Smolić
0 siblings, 0 replies; 15+ messages in thread
From: Jakov Smolić @ 2022-08-30 18:40 UTC (permalink / raw
To: gentoo-commits
commit: 5393827e5dedf7400f53ceb0aba7c94b99891422
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 30 18:39:02 2022 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Tue Aug 30 18:39:02 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5393827e
sci-mathematics/jags: Stabilize 4.3.0 amd64, #867538
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
sci-mathematics/jags/jags-4.3.0.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sci-mathematics/jags/jags-4.3.0.ebuild b/sci-mathematics/jags/jags-4.3.0.ebuild
index 0a07a6aa6740..494001af7daf 100644
--- a/sci-mathematics/jags/jags-4.3.0.ebuild
+++ b/sci-mathematics/jags/jags-4.3.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -13,7 +13,7 @@ SRC_URI="mirror://sourceforge/project/mcmc-jags/JAGS/4.x/Source/${MYP}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="doc"
RDEPEND="
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/jags/
@ 2021-07-26 11:48 Andrew Ammerlaan
0 siblings, 0 replies; 15+ messages in thread
From: Andrew Ammerlaan @ 2021-07-26 11:48 UTC (permalink / raw
To: gentoo-commits
commit: c73befec8e2b1bfae6cbf34fcb7b3aca2f840ee0
Author: xfim <xavier.fim <AT> gmail <DOT> com>
AuthorDate: Mon Mar 2 11:03:02 2020 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Mon Jul 26 11:48:13 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c73befec
sci-mathematics/jags: Version bump for 4.3.0
Also, updated to EAPI 7.
Closes: https://bugs.gentoo.org/711304
Closes: https://github.com/gentoo/gentoo/pull/14823
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>
Signed-off-by: Xavier Fernández i Marín <xavier.fim <AT> gmail.com>
Package-Manager: Portage-2.3.89, Repoman-2.3.20
sci-mathematics/jags/Manifest | 1 +
sci-mathematics/jags/jags-4.3.0.ebuild | 47 ++++++++++++++++++++++++++++++++++
2 files changed, 48 insertions(+)
diff --git a/sci-mathematics/jags/Manifest b/sci-mathematics/jags/Manifest
index c20bc1cbe76..b4a2fcb4f2d 100644
--- a/sci-mathematics/jags/Manifest
+++ b/sci-mathematics/jags/Manifest
@@ -1 +1,2 @@
DIST JAGS-4.2.0.tar.gz 1875538 BLAKE2B 039cefdb546ec28b905f22a4ec3dfe6d85c64064701283fe38be59f53da971b523d8bb5b7c5efe3e9da81a255b064cb8b66cac2fd4e844883b7fcf89cdabdbb1 SHA512 316483cd1a879c70c9b8ad6f23665196b95b9745da3924a47e14f4b0fd7c1abf9237575561cb31044623594360b6e991de68e1d9746baedeb285c65b77baada8
+DIST JAGS-4.3.0.tar.gz 2057409 BLAKE2B 5820c66dd10cc90343d53b901b7dbc1acf85dca0f5f80280864190882f0af865edad877eb2cfd421ec2035d3ae843373da1facee8a10b6735e2fc0387d452949 SHA512 d0564c73ff45484afad532ed788353f9c0945cd9667030eed5be674492bf97524d05903b22d4995c1de8a331dba7b04425d009e114d98a38b4bfce5214518b36
diff --git a/sci-mathematics/jags/jags-4.3.0.ebuild b/sci-mathematics/jags/jags-4.3.0.ebuild
new file mode 100644
index 00000000000..0a07a6aa674
--- /dev/null
+++ b/sci-mathematics/jags/jags-4.3.0.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit toolchain-funcs
+
+MYP="JAGS-${PV}"
+
+DESCRIPTION="Just Another Gibbs Sampler for Bayesian MCMC simulation"
+HOMEPAGE="https://mcmc-jags.sourceforge.io/"
+SRC_URI="mirror://sourceforge/project/mcmc-jags/JAGS/4.x/Source/${MYP}.tar.gz"
+
+SLOT="0"
+LICENSE="GPL-2"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="doc"
+
+RDEPEND="
+ virtual/blas
+ virtual/lapack
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+ virtual/pkgconfig
+ doc? (
+ virtual/latex-base
+ dev-texlive/texlive-latexextra
+ )"
+
+S="${WORKDIR}/${MYP}"
+
+src_configure() {
+ econf \
+ --with-blas="$($(tc-getPKG_CONFIG) --libs blas)" \
+ --with-lapack="$($(tc-getPKG_CONFIG) --libs lapack)"
+}
+
+src_compile() {
+ emake all $(usex doc docs "")
+}
+
+src_install() {
+ default
+ use doc && dodoc doc/manual/*.pdf
+ find "${ED}" -name '*.la' -delete || die
+}
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/jags/
@ 2021-05-31 9:20 David Seifert
0 siblings, 0 replies; 15+ messages in thread
From: David Seifert @ 2021-05-31 9:20 UTC (permalink / raw
To: gentoo-commits
commit: 442f1adea122d81bce0ea1cb946c06797377e8dd
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Mon May 31 09:19:30 2021 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Mon May 31 09:19:30 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=442f1ade
sci-mathematics/jags: drop deprecated ltprune eclass
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
Signed-off-by: David Seifert <soap <AT> gentoo.org>
sci-mathematics/jags/jags-4.2.0.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sci-mathematics/jags/jags-4.2.0.ebuild b/sci-mathematics/jags/jags-4.2.0.ebuild
index 6eaa6ccff4a..0ed77c62577 100644
--- a/sci-mathematics/jags/jags-4.2.0.ebuild
+++ b/sci-mathematics/jags/jags-4.2.0.ebuild
@@ -3,7 +3,7 @@
EAPI=6
-inherit ltprune toolchain-funcs
+inherit toolchain-funcs
MYP="JAGS-${PV}"
@@ -41,5 +41,5 @@ src_compile() {
src_install() {
default
use doc && dodoc doc/manual/*.pdf
- prune_libtool_files
+ find "${ED}" -name '*.la' -delete || die
}
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/jags/
@ 2016-03-02 8:32 David Seifert
0 siblings, 0 replies; 15+ messages in thread
From: David Seifert @ 2016-03-02 8:32 UTC (permalink / raw
To: gentoo-commits
commit: 392357d2153784f4a9e9111be19c69f30d7ebbbb
Author: Xavier Fernández i Marín <xavier.fim <AT> gmail <DOT> com>
AuthorDate: Tue Mar 1 15:46:25 2016 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Wed Mar 2 08:32:20 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=392357d2
sci-mathematics/jags: version bump to 4.2.0
sci-mathematics/jags/Manifest | 1 +
sci-mathematics/jags/jags-4.2.0.ebuild | 46 ++++++++++++++++++++++++++++++++++
2 files changed, 47 insertions(+)
diff --git a/sci-mathematics/jags/Manifest b/sci-mathematics/jags/Manifest
index 0fe15b4..0fcedd6 100644
--- a/sci-mathematics/jags/Manifest
+++ b/sci-mathematics/jags/Manifest
@@ -1,3 +1,4 @@
DIST JAGS-3.4.0.tar.gz 1677450 SHA256 2beaa9a2672c2c95efc55ffa4c8b597a872f20232373daebd17ad539d3d7d82b SHA512 7a330ea41eab63b23d8ae3622c6920f0dc3dba653a18256957b9b862bb86b746ff706e9e9bf3f806524250b439161a6df4ad05af682354073f9b0074f9825896 WHIRLPOOL 48f2bf92f80ea0558697701320e142a61b3eb5cfefe234973a6a189096b7887ec5ea829f8f6183bf9ad4a0f6fb07d769c710b721ec1e211772cbeaea0187c8e2
DIST JAGS-4.0.0.tar.gz 1880476 SHA256 a1d572269029d90d4e8b25757fd7ae9678994bd682937ec505ddcf06185d2c4c SHA512 bbe4f4600dff0fc1db6f8548b8d386ea804174d69788646681de6d006a0e0ab018fb01257b5737f871d10c8b59865950fb91b6a9cad5d1e6addc415004c6f82c WHIRLPOOL d1f2ad15834252c63300259c789f69ca0fa008d0c2008d504db2c394642f7a63180baae76bc272a33a92c83addc373fd9ce026063ea74b40397ac902c2272aed
DIST JAGS-4.1.0.tar.gz 1872634 SHA256 45ecf31b5b2127620a79875745b8ea4203ca2430a8b3625f5e80adc897cdf522 SHA512 76b52764e57e6c4450cc52c7c7c3de384f93bd6e57d8b88f1863b7c329bdd2ec39834902c223d433d263bcf29362b958807a9cb96b9066d4f75832b366339fd8 WHIRLPOOL b0187c02a971ccc733c34aa2e4f8e1ed32d1c767d97fb667034cd6035c08f63c2a6c014dcb5d5dd7ed080fdc9fae34be7bf002d0d631a6a454b849cf7c3cec67
+DIST JAGS-4.2.0.tar.gz 1875538 SHA256 af3e9d2896d3e712f99e2a0c81091c6b08f096650af6aa9d0c631c0790409cf7 SHA512 316483cd1a879c70c9b8ad6f23665196b95b9745da3924a47e14f4b0fd7c1abf9237575561cb31044623594360b6e991de68e1d9746baedeb285c65b77baada8 WHIRLPOOL 84e13b5c581cb740a25bd94d95049d6e8830e3b9403b29b188d0ab1ec552e99015620fa93f0e6da85ce293db3bf8b07f1d763e48f6d7cef745c9d9a424ea637c
diff --git a/sci-mathematics/jags/jags-4.2.0.ebuild b/sci-mathematics/jags/jags-4.2.0.ebuild
new file mode 100644
index 0000000..8e83927
--- /dev/null
+++ b/sci-mathematics/jags/jags-4.2.0.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit eutils toolchain-funcs
+
+MYP="JAGS-${PV}"
+
+DESCRIPTION="Just Another Gibbs Sampler for Bayesian MCMC simulation"
+HOMEPAGE="http://mcmc-jags.sourceforge.net/"
+SRC_URI="mirror://sourceforge/project/mcmc-jags/JAGS/4.x/Source/${MYP}.tar.gz"
+
+SLOT="0"
+LICENSE="GPL-2"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="doc"
+
+RDEPEND="
+ virtual/blas
+ virtual/lapack"
+DEPEND="${RDEPEND}
+ virtual/pkgconfig
+ doc? (
+ virtual/latex-base
+ dev-texlive/texlive-latexextra
+ )"
+
+S="${WORKDIR}/${MYP}"
+
+src_configure() {
+ econf \
+ --with-blas="$($(tc-getPKG_CONFIG) --libs blas)" \
+ --with-lapack="$($(tc-getPKG_CONFIG) --libs lapack)"
+}
+
+src_compile() {
+ emake all $(usex doc docs "")
+}
+
+src_install() {
+ default
+ use doc && dodoc doc/manual/*.pdf
+ prune_libtool_files
+}
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/jags/
@ 2016-01-21 19:44 David Seifert
0 siblings, 0 replies; 15+ messages in thread
From: David Seifert @ 2016-01-21 19:44 UTC (permalink / raw
To: gentoo-commits
commit: c1a9f9465003e2f54483034271d225fcc6cff5f3
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 21 19:44:10 2016 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Thu Jan 21 19:44:10 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1a9f946
sci-mathematics/jags: Remove 'autotools-utils.eclass', EAPI=6
Package-Manager: portage-2.2.27
sci-mathematics/jags/jags-4.1.0.ebuild | 17 ++++++++---------
1 file changed, 8 insertions(+), 9 deletions(-)
diff --git a/sci-mathematics/jags/jags-4.1.0.ebuild b/sci-mathematics/jags/jags-4.1.0.ebuild
index fc1d9f9..8e83927 100644
--- a/sci-mathematics/jags/jags-4.1.0.ebuild
+++ b/sci-mathematics/jags/jags-4.1.0.ebuild
@@ -2,9 +2,9 @@
# Distributed under the terms of the GNU General Public License v2
# $Id$
-EAPI=5
+EAPI=6
-inherit autotools-utils toolchain-funcs
+inherit eutils toolchain-funcs
MYP="JAGS-${PV}"
@@ -30,18 +30,17 @@ DEPEND="${RDEPEND}
S="${WORKDIR}/${MYP}"
src_configure() {
- local myeconfargs=(
- --with-blas="$($(tc-getPKG_CONFIG) --libs blas)"
+ econf \
+ --with-blas="$($(tc-getPKG_CONFIG) --libs blas)" \
--with-lapack="$($(tc-getPKG_CONFIG) --libs lapack)"
- )
- autotools-utils_src_configure
}
src_compile() {
- autotools-utils_src_compile all $(usex doc docs "")
+ emake all $(usex doc docs "")
}
src_install() {
- autotools-utils_src_install
- use doc && dodoc "${BUILD_DIR}"/doc/manual/*.pdf
+ default
+ use doc && dodoc doc/manual/*.pdf
+ prune_libtool_files
}
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/jags/
@ 2016-01-21 19:44 David Seifert
0 siblings, 0 replies; 15+ messages in thread
From: David Seifert @ 2016-01-21 19:44 UTC (permalink / raw
To: gentoo-commits
commit: b1376251f4604303695ee2c6949d825bceb82b71
Author: Xavier Fernández i Marín <xavier.fim <AT> gmail <DOT> com>
AuthorDate: Fri Oct 30 09:05:15 2015 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Thu Jan 21 19:11:14 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1376251
sci-mathematics/jags: version bump
sci-mathematics/jags/Manifest | 1 +
sci-mathematics/jags/jags-4.1.0.ebuild | 47 ++++++++++++++++++++++++++++++++++
2 files changed, 48 insertions(+)
diff --git a/sci-mathematics/jags/Manifest b/sci-mathematics/jags/Manifest
index a6e7e9e..0fe15b4 100644
--- a/sci-mathematics/jags/Manifest
+++ b/sci-mathematics/jags/Manifest
@@ -1,2 +1,3 @@
DIST JAGS-3.4.0.tar.gz 1677450 SHA256 2beaa9a2672c2c95efc55ffa4c8b597a872f20232373daebd17ad539d3d7d82b SHA512 7a330ea41eab63b23d8ae3622c6920f0dc3dba653a18256957b9b862bb86b746ff706e9e9bf3f806524250b439161a6df4ad05af682354073f9b0074f9825896 WHIRLPOOL 48f2bf92f80ea0558697701320e142a61b3eb5cfefe234973a6a189096b7887ec5ea829f8f6183bf9ad4a0f6fb07d769c710b721ec1e211772cbeaea0187c8e2
DIST JAGS-4.0.0.tar.gz 1880476 SHA256 a1d572269029d90d4e8b25757fd7ae9678994bd682937ec505ddcf06185d2c4c SHA512 bbe4f4600dff0fc1db6f8548b8d386ea804174d69788646681de6d006a0e0ab018fb01257b5737f871d10c8b59865950fb91b6a9cad5d1e6addc415004c6f82c WHIRLPOOL d1f2ad15834252c63300259c789f69ca0fa008d0c2008d504db2c394642f7a63180baae76bc272a33a92c83addc373fd9ce026063ea74b40397ac902c2272aed
+DIST JAGS-4.1.0.tar.gz 1872634 SHA256 45ecf31b5b2127620a79875745b8ea4203ca2430a8b3625f5e80adc897cdf522 SHA512 76b52764e57e6c4450cc52c7c7c3de384f93bd6e57d8b88f1863b7c329bdd2ec39834902c223d433d263bcf29362b958807a9cb96b9066d4f75832b366339fd8 WHIRLPOOL b0187c02a971ccc733c34aa2e4f8e1ed32d1c767d97fb667034cd6035c08f63c2a6c014dcb5d5dd7ed080fdc9fae34be7bf002d0d631a6a454b849cf7c3cec67
diff --git a/sci-mathematics/jags/jags-4.1.0.ebuild b/sci-mathematics/jags/jags-4.1.0.ebuild
new file mode 100644
index 0000000..fc1d9f9
--- /dev/null
+++ b/sci-mathematics/jags/jags-4.1.0.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit autotools-utils toolchain-funcs
+
+MYP="JAGS-${PV}"
+
+DESCRIPTION="Just Another Gibbs Sampler for Bayesian MCMC simulation"
+HOMEPAGE="http://mcmc-jags.sourceforge.net/"
+SRC_URI="mirror://sourceforge/project/mcmc-jags/JAGS/4.x/Source/${MYP}.tar.gz"
+
+SLOT="0"
+LICENSE="GPL-2"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="doc"
+
+RDEPEND="
+ virtual/blas
+ virtual/lapack"
+DEPEND="${RDEPEND}
+ virtual/pkgconfig
+ doc? (
+ virtual/latex-base
+ dev-texlive/texlive-latexextra
+ )"
+
+S="${WORKDIR}/${MYP}"
+
+src_configure() {
+ local myeconfargs=(
+ --with-blas="$($(tc-getPKG_CONFIG) --libs blas)"
+ --with-lapack="$($(tc-getPKG_CONFIG) --libs lapack)"
+ )
+ autotools-utils_src_configure
+}
+
+src_compile() {
+ autotools-utils_src_compile all $(usex doc docs "")
+}
+
+src_install() {
+ autotools-utils_src_install
+ use doc && dodoc "${BUILD_DIR}"/doc/manual/*.pdf
+}
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/jags/
@ 2015-11-28 17:41 Justin Lecher
0 siblings, 0 replies; 15+ messages in thread
From: Justin Lecher @ 2015-11-28 17:41 UTC (permalink / raw
To: gentoo-commits
commit: 241a72969aecd4e8c67dadfede0b867f51b4df92
Author: Xavier Fernández i Marín <xavier.fim <AT> gmail <DOT> com>
AuthorDate: Fri Oct 30 09:05:15 2015 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Fri Oct 30 09:05:15 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=241a7296
sci-mathematics/jags Version bump (solves bug #562644).
sci-mathematics/jags/Manifest | 1 +
sci-mathematics/jags/jags-4.0.0.ebuild | 47 ++++++++++++++++++++++++++++++++++
2 files changed, 48 insertions(+)
diff --git a/sci-mathematics/jags/Manifest b/sci-mathematics/jags/Manifest
index 345adf7..a6e7e9e 100644
--- a/sci-mathematics/jags/Manifest
+++ b/sci-mathematics/jags/Manifest
@@ -1 +1,2 @@
DIST JAGS-3.4.0.tar.gz 1677450 SHA256 2beaa9a2672c2c95efc55ffa4c8b597a872f20232373daebd17ad539d3d7d82b SHA512 7a330ea41eab63b23d8ae3622c6920f0dc3dba653a18256957b9b862bb86b746ff706e9e9bf3f806524250b439161a6df4ad05af682354073f9b0074f9825896 WHIRLPOOL 48f2bf92f80ea0558697701320e142a61b3eb5cfefe234973a6a189096b7887ec5ea829f8f6183bf9ad4a0f6fb07d769c710b721ec1e211772cbeaea0187c8e2
+DIST JAGS-4.0.0.tar.gz 1880476 SHA256 a1d572269029d90d4e8b25757fd7ae9678994bd682937ec505ddcf06185d2c4c SHA512 bbe4f4600dff0fc1db6f8548b8d386ea804174d69788646681de6d006a0e0ab018fb01257b5737f871d10c8b59865950fb91b6a9cad5d1e6addc415004c6f82c WHIRLPOOL d1f2ad15834252c63300259c789f69ca0fa008d0c2008d504db2c394642f7a63180baae76bc272a33a92c83addc373fd9ce026063ea74b40397ac902c2272aed
diff --git a/sci-mathematics/jags/jags-4.0.0.ebuild b/sci-mathematics/jags/jags-4.0.0.ebuild
new file mode 100644
index 0000000..a790fd6
--- /dev/null
+++ b/sci-mathematics/jags/jags-4.0.0.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2013 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit autotools-utils toolchain-funcs
+
+MYP="JAGS-${PV}"
+
+DESCRIPTION="Just Another Gibbs Sampler for Bayesian MCMC simulation"
+HOMEPAGE="http://mcmc-jags.sourceforge.net/"
+SRC_URI="mirror://sourceforge/project/mcmc-jags/JAGS/4.x/Source/${MYP}.tar.gz"
+LICENSE="GPL-2"
+IUSE="doc"
+
+SLOT="0"
+KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
+
+RDEPEND="
+ virtual/blas
+ virtual/lapack"
+DEPEND="${RDEPEND}
+ virtual/pkgconfig
+ doc? (
+ virtual/latex-base
+ dev-texlive/texlive-latexextra
+ )"
+
+S="${WORKDIR}/${MYP}"
+
+src_configure() {
+ local myeconfargs=(
+ --with-blas="$($(tc-getPKG_CONFIG) --libs blas)"
+ --with-lapack="$($(tc-getPKG_CONFIG) --libs lapack)"
+ )
+ autotools-utils_src_configure
+}
+
+src_compile() {
+ autotools-utils_src_compile all $(use doc && echo docs)
+}
+
+src_install() {
+ autotools-utils_src_install
+ use doc && dodoc "${BUILD_DIR}"/doc/manual/*.pdf
+}
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/jags/
@ 2015-11-28 17:41 Justin Lecher
0 siblings, 0 replies; 15+ messages in thread
From: Justin Lecher @ 2015-11-28 17:41 UTC (permalink / raw
To: gentoo-commits
commit: 2d28c5500127fefc4e88fe4069dc25cd8f7d301b
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 28 17:39:57 2015 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Sat Nov 28 17:39:57 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d28c550
sci-mathematics/jags: QA: formating and usex() usage
Package-Manager: portage-2.2.25
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
sci-mathematics/jags/jags-4.0.0.ebuild | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/sci-mathematics/jags/jags-4.0.0.ebuild b/sci-mathematics/jags/jags-4.0.0.ebuild
index a790fd6..83f5809 100644
--- a/sci-mathematics/jags/jags-4.0.0.ebuild
+++ b/sci-mathematics/jags/jags-4.0.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
@@ -11,11 +11,11 @@ MYP="JAGS-${PV}"
DESCRIPTION="Just Another Gibbs Sampler for Bayesian MCMC simulation"
HOMEPAGE="http://mcmc-jags.sourceforge.net/"
SRC_URI="mirror://sourceforge/project/mcmc-jags/JAGS/4.x/Source/${MYP}.tar.gz"
-LICENSE="GPL-2"
-IUSE="doc"
SLOT="0"
-KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
+LICENSE="GPL-2"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="doc"
RDEPEND="
virtual/blas
@@ -25,7 +25,7 @@ DEPEND="${RDEPEND}
doc? (
virtual/latex-base
dev-texlive/texlive-latexextra
- )"
+ )"
S="${WORKDIR}/${MYP}"
@@ -38,7 +38,7 @@ src_configure() {
}
src_compile() {
- autotools-utils_src_compile all $(use doc && echo docs)
+ autotools-utils_src_compile all $(usex doc docs "")
}
src_install() {
^ permalink raw reply related [flat|nested] 15+ messages in thread
end of thread, other threads:[~2024-08-06 0:20 UTC | newest]
Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-08-30 22:00 [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/jags/ Andreas Sturmlechner
-- strict thread matches above, loose matches on Subject: below --
2024-08-06 0:20 Eli Schwartz
2024-08-06 0:20 Eli Schwartz
2023-06-10 4:20 Sam James
2022-11-22 7:57 Sam James
2022-11-22 7:57 Sam James
2022-08-30 18:40 Jakov Smolić
2022-08-30 18:40 Jakov Smolić
2021-07-26 11:48 Andrew Ammerlaan
2021-05-31 9:20 David Seifert
2016-03-02 8:32 David Seifert
2016-01-21 19:44 David Seifert
2016-01-21 19:44 David Seifert
2015-11-28 17:41 Justin Lecher
2015-11-28 17:41 Justin Lecher
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox