Gentoo Archives: gentoo-commits

From: Theo Anderson <telans@××××××.de>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-libs/randomx/
Date: Mon, 04 Oct 2021 08:11:32
Message-Id: 1633331909.a2b92de7fa71782d6f4e25590e78bba2a2b340c9.telans@gentoo
1 commit: a2b92de7fa71782d6f4e25590e78bba2a2b340c9
2 Author: James Beddek <telans <AT> posteo <DOT> de>
3 AuthorDate: Mon Oct 4 07:18:29 2021 +0000
4 Commit: Theo Anderson <telans <AT> posteo <DOT> de>
5 CommitDate: Mon Oct 4 07:18:29 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a2b92de7
7
8 dev-libs/randomx: add 1.1.9
9
10 Signed-off-by: James Beddek <telans <AT> posteo.de>
11
12 dev-libs/randomx/Manifest | 1 +
13 dev-libs/randomx/randomx-1.1.9.ebuild | 21 +++++++++++++++++++++
14 2 files changed, 22 insertions(+)
15
16 diff --git a/dev-libs/randomx/Manifest b/dev-libs/randomx/Manifest
17 index 5821b398e..a14ac8298 100644
18 --- a/dev-libs/randomx/Manifest
19 +++ b/dev-libs/randomx/Manifest
20 @@ -1 +1,2 @@
21 DIST randomx-1.1.8.tar.gz 163477 BLAKE2B 482f38a7e9f7b03ec5bd40ff923a1a1e575ed0c30431dcbecfe1072cdb10ccc93b61cf9d2177f4549e284125e17386e0314cb39734b22dc150193bd5d28bb813 SHA512 f41f13ba7b979a969e9d60e6c44cf289802e7459d6d817a64377428c3e833ea2f71a8a1e6559682ecc0ec2a33f958bb5b727d7faa28cb6ff69a524d713969bce
22 +DIST randomx-1.1.9.tar.gz 163669 BLAKE2B 41a665061c438c335825abfdf8fbde7f0c8a910fcca22e47babd015120b675378ad04afdc602f2b8e41cc6030ea6caa6298a27bce634034e95b5657d4ea06492 SHA512 89e0541bc849db270672acd7210a6c7109e4ca07765e6e656229ff8867792bfae933ee85b0aa4545dc3cf0c6515140ab782c8e231af17a82610718a80458c420
23
24 diff --git a/dev-libs/randomx/randomx-1.1.9.ebuild b/dev-libs/randomx/randomx-1.1.9.ebuild
25 new file mode 100644
26 index 000000000..1431d2374
27 --- /dev/null
28 +++ b/dev-libs/randomx/randomx-1.1.9.ebuild
29 @@ -0,0 +1,21 @@
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 cmake flag-o-matic
36 +
37 +DESCRIPTION="Proof of work algorithm based on random code execution"
38 +HOMEPAGE="https://github.com/tevador/RandomX"
39 +SRC_URI="https://github.com/tevador/RandomX/archive/v${PV}.tar.gz -> ${P}.tar.gz"
40 +
41 +LICENSE="BSD"
42 +SLOT="0"
43 +KEYWORDS="~amd64 ~arm ~arm64 ~x86"
44 +
45 +S="${WORKDIR}"/RandomX-${PV}
46 +
47 +src_configure() {
48 + append-ldflags -Wl,-z,noexecstack
49 + cmake_src_configure
50 +}