* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/unuran/
@ 2017-11-25 17:42 David Seifert
0 siblings, 0 replies; 4+ messages in thread
From: David Seifert @ 2017-11-25 17:42 UTC (permalink / raw
To: gentoo-commits
commit: 1f4b4480b3c11fb2651a80a6110ace1209a3209a
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 25 16:52:45 2017 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sat Nov 25 17:40:22 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f4b4480
sci-mathematics/unuran: [QA] Consistent whitespace in metadata.xml
sci-mathematics/unuran/metadata.xml | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/sci-mathematics/unuran/metadata.xml b/sci-mathematics/unuran/metadata.xml
index b1bc263b0c5..cbbcbbc4a58 100644
--- a/sci-mathematics/unuran/metadata.xml
+++ b/sci-mathematics/unuran/metadata.xml
@@ -6,12 +6,12 @@
<name>Gentoo Mathematics Project</name>
</maintainer>
<longdescription lang="en">
- UNU.RAN is an ANSI C library licensed under GPL.
- It contains universal (also called automatic or black-box) algorithms
- that can generate random numbers from large classes of continuous or
- discrete distributions, and also from practically all standard
- distributions.
-</longdescription>
+ UNU.RAN is an ANSI C library licensed under GPL.
+ It contains universal (also called automatic or black-box) algorithms
+ that can generate random numbers from large classes of continuous or
+ discrete distributions, and also from practically all standard
+ distributions.
+ </longdescription>
<use>
<flag name="rngstreams">Use <pkg>sci-mathematics/rngstreams</pkg> library</flag>
<flag name="prng">Use <pkg>sci-mathematics/prng</pkg> library</flag>
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/unuran/
@ 2019-12-07 23:37 David Seifert
0 siblings, 0 replies; 4+ messages in thread
From: David Seifert @ 2019-12-07 23:37 UTC (permalink / raw
To: gentoo-commits
commit: c08c38d7ce2117159df5b67b0cbca8cf77ec4818
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 7 23:37:11 2019 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sat Dec 7 23:37:11 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c08c38d7
sci-mathematics/unuran: Port to EAPI 7
Package-Manager: Portage-2.3.81, Repoman-2.3.20
Signed-off-by: David Seifert <soap <AT> gentoo.org>
sci-mathematics/unuran/unuran-1.8.1.ebuild | 45 ++++++++++++++++--------------
1 file changed, 24 insertions(+), 21 deletions(-)
diff --git a/sci-mathematics/unuran/unuran-1.8.1.ebuild b/sci-mathematics/unuran/unuran-1.8.1.ebuild
index f3fea32d662..27d0f064189 100644
--- a/sci-mathematics/unuran/unuran-1.8.1.ebuild
+++ b/sci-mathematics/unuran/unuran-1.8.1.ebuild
@@ -1,44 +1,47 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=4
+EAPI=7
-inherit autotools-utils
+inherit out-of-source
DESCRIPTION="Universal Non-Uniform Random number generator"
HOMEPAGE="http://statmath.wu.ac.at/unuran/"
-SRC_URI="${HOMEPAGE}${P}.tar.gz"
+SRC_URI="http://statmath.wu.ac.at/unuran/${P}.tar.gz"
LICENSE="GPL-2"
-SLOT=0
+SLOT="0"
KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
-IUSE="doc examples gsl prng +rngstreams static-libs"
+IUSE="doc examples gsl prng +rngstreams"
DEPEND="
- gsl? ( sci-libs/gsl )
+ gsl? ( sci-libs/gsl:= )
prng? ( sci-mathematics/prng )
- rngstreams? ( sci-mathematics/rngstreams )"
+ rngstreams? ( sci-mathematics/rngstreams:= )"
RDEPEND="${DEPEND}"
-src_configure() {
+my_src_configure() {
local udefault=builtin
use rngstreams && udefault=rngstream
- local myeconfargs=(
- --enable-shared
- --with-urng-default=${udefault}
- $(use_with gsl urng-gsl)
- $(use_with prng urng-prng)
+ econf \
+ --enable-shared \
+ --disable-static \
+ --with-urng-default="${udefault}" \
+ $(use_with gsl urng-gsl) \
+ $(use_with prng urng-prng) \
$(use_with rngstreams urng-rngstream)
- )
- autotools-utils_src_configure
}
-src_install() {
- autotools-utils_src_install
+my_src_install_all() {
use doc && dodoc doc/${PN}.pdf
+ einstalldocs
+
if use examples; then
- rm examples/Makefile*
- insinto /usr/share/doc/${PF}
- doins -r examples
+ rm examples/Makefile* || die
+ dodoc -r examples
+ docompress -x /usr/share/doc/${PF}/examples
fi
+
+ # no static archives
+ find "${D}" -name '*.la' -delete || die
}
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/unuran/
@ 2022-12-03 6:06 Sam James
0 siblings, 0 replies; 4+ messages in thread
From: Sam James @ 2022-12-03 6:06 UTC (permalink / raw
To: gentoo-commits
commit: e64f1d59070d447bc35af566ad99d800a834b293
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 3 05:05:24 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Dec 3 06:06:07 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e64f1d59
sci-mathematics/unuran: use HTTPS
Signed-off-by: Sam James <sam <AT> gentoo.org>
sci-mathematics/unuran/unuran-1.8.1.ebuild | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/sci-mathematics/unuran/unuran-1.8.1.ebuild b/sci-mathematics/unuran/unuran-1.8.1.ebuild
index 27d0f064189a..7dfbd8eacfeb 100644
--- a/sci-mathematics/unuran/unuran-1.8.1.ebuild
+++ b/sci-mathematics/unuran/unuran-1.8.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -6,8 +6,8 @@ EAPI=7
inherit out-of-source
DESCRIPTION="Universal Non-Uniform Random number generator"
-HOMEPAGE="http://statmath.wu.ac.at/unuran/"
-SRC_URI="http://statmath.wu.ac.at/unuran/${P}.tar.gz"
+HOMEPAGE="https://statmath.wu.ac.at/unuran/"
+SRC_URI="https://statmath.wu.ac.at/unuran/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/unuran/
@ 2023-06-09 16:42 Arthur Zamarin
0 siblings, 0 replies; 4+ messages in thread
From: Arthur Zamarin @ 2023-06-09 16:42 UTC (permalink / raw
To: gentoo-commits
commit: 6544a074fba8948864b85beded072a090d5c9c6e
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 9 16:42:19 2023 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Jun 9 16:42:19 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6544a074
sci-mathematics/unuran: Stabilize 1.9.0 amd64, #908185
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
sci-mathematics/unuran/unuran-1.9.0.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sci-mathematics/unuran/unuran-1.9.0.ebuild b/sci-mathematics/unuran/unuran-1.9.0.ebuild
index 971d2638952a..3cc0fe7faa9f 100644
--- a/sci-mathematics/unuran/unuran-1.9.0.ebuild
+++ b/sci-mathematics/unuran/unuran-1.9.0.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=7
@@ -11,7 +11,7 @@ SRC_URI="https://statmath.wu.ac.at/unuran/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="doc examples gsl prng +rngstreams"
DEPEND="
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2023-06-09 16:42 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-06-09 16:42 [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/unuran/ Arthur Zamarin
-- strict thread matches above, loose matches on Subject: below --
2022-12-03 6:06 Sam James
2019-12-07 23:37 David Seifert
2017-11-25 17:42 David Seifert
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox