Gentoo Archives: gentoo-commits

From: "Jakov Smolić" <jsmolic@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/random123/
Date: Fri, 01 Oct 2021 07:24:47
Message-Id: 1633073065.638ed990f3b04f95265619dc5c7c8875beacf3b0.jsmolic@gentoo
1 commit: 638ed990f3b04f95265619dc5c7c8875beacf3b0
2 Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
3 AuthorDate: Fri Oct 1 07:01:00 2021 +0000
4 Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 1 07:24:25 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=638ed990
7
8 dev-cpp/random123: Version bump to 1.14.0
9
10 Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
11
12 dev-cpp/random123/Manifest | 1 +
13 dev-cpp/random123/random123-1.14.0.ebuild | 23 +++++++++++++++++++++++
14 2 files changed, 24 insertions(+)
15
16 diff --git a/dev-cpp/random123/Manifest b/dev-cpp/random123/Manifest
17 index 2364f07d19c..ea096e868fc 100644
18 --- a/dev-cpp/random123/Manifest
19 +++ b/dev-cpp/random123/Manifest
20 @@ -1 +1,2 @@
21 DIST Random123-1.13.2.tar.gz 694636 BLAKE2B e238d2f19eee56ac6388b5d63dbda4e5c4f41f3c9e18e4aa0f4cbadc5e6dc62aa10a1c37425ce1e51f95fea9927655bdb0cfed82d3bd468cb55ad6ec051bd247 SHA512 543ed679911177c2da00b920c376abc8c5f4496c9a6a4ed823c295f5222e370bc2b8c9c5b63e93ae507252999eecfc112ae3203a2a82f9deb8747a9f9d387b18
22 +DIST v1.14.0.tar.gz 318306 BLAKE2B 23248741359f0158fbb775ff723693c37c085b8acc1e162968555a5109abf0ac4e028f7731488b1bca385659f8f50f5c91b381f3ee6d1630ac7c62c41fadf2b4 SHA512 1c7d139193f5404e5d14d229f55e0a14b11de596a4cfbf0a39c1419f5ae146055dccc61e9430f724a2d7c1efb8bd01edb72866d4f4705508fcc6ebda6e90e91e
23
24 diff --git a/dev-cpp/random123/random123-1.14.0.ebuild b/dev-cpp/random123/random123-1.14.0.ebuild
25 new file mode 100644
26 index 00000000000..3b92a0eac61
27 --- /dev/null
28 +++ b/dev-cpp/random123/random123-1.14.0.ebuild
29 @@ -0,0 +1,23 @@
30 +# Copyright 1999-2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +inherit toolchain-funcs
36 +
37 +DESCRIPTION="library of counter-based random number generators (CBRNGs)"
38 +HOMEPAGE="https://www.deshawresearch.com/resources_random123.html"
39 +SRC_URI="https://github.com/DEShawResearch/random123/archive/refs/tags/v${PV}.tar.gz"
40 +
41 +LICENSE="BSD-2"
42 +SLOT="0"
43 +KEYWORDS="~amd64 ~x86"
44 +
45 +src_configure() {
46 + tc-export CC CXX
47 +}
48 +
49 +src_install() {
50 + insinto /usr/include/Random123
51 + doins -r include/Random123
52 +}