Gentoo Archives: gentoo-commits

From: Craig Andrews <candrews@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-p2p/cpuminer-opt/
Date: Fri, 01 Oct 2021 01:17:21
Message-Id: 1633051032.c52c28fe60dfe958f67928fc381bb1a335d7280e.candrews@gentoo
1 commit: c52c28fe60dfe958f67928fc381bb1a335d7280e
2 Author: Craig Andrews <candrews <AT> gentoo <DOT> org>
3 AuthorDate: Fri Oct 1 01:16:55 2021 +0000
4 Commit: Craig Andrews <candrews <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 1 01:17:12 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c52c28fe
7
8 net-p2p/cpuminer-opt: 3.18.0 version bump
9
10 Package-Manager: Portage-3.0.26, Repoman-3.0.3
11 Signed-off-by: Craig Andrews <candrews <AT> gentoo.org>
12
13 net-p2p/cpuminer-opt/Manifest | 1 +
14 net-p2p/cpuminer-opt/cpuminer-opt-3.18.0.ebuild | 49 +++++++++++++++++++++++++
15 2 files changed, 50 insertions(+)
16
17 diff --git a/net-p2p/cpuminer-opt/Manifest b/net-p2p/cpuminer-opt/Manifest
18 index 9675d0415ec..2bf67182dde 100644
19 --- a/net-p2p/cpuminer-opt/Manifest
20 +++ b/net-p2p/cpuminer-opt/Manifest
21 @@ -1,2 +1,3 @@
22 DIST cpuminer-opt-3.16.4.tar.gz 1830534 BLAKE2B c9fa07c36b634b0d1250b847baa4a971aad0b249aaf7792b4a69c42c5c98cc6b3e4fe20c95fdab9884520decc6e9d7071158a641863f1c0d2443dd096e372f2b SHA512 7459a9c6ad7afd85fdb8f7ff62c9deae2a2fc8341e3cf39da0f72e81bff8829e094bb830fb614fbce9665bbb259d764eb64b6d2a44ac45ecdd9ee870190d6539
23 DIST cpuminer-opt-3.17.1.tar.gz 1840571 BLAKE2B db07547ec79df92f644e903485fb51abfddeafe2ecaffd18c0438cf292d51c6167eafaf7aa2b89cb6b7698d4358a4ef970459bff7b063cfd6d3a95ad878126eb SHA512 463d755bbb3146ef94292ae64a8a2397485e28b55d4b510881dd91461e3bcc2786a323cf575dd070481236b150c35af2898b5ab2b0db90c34f528821988af74c
24 +DIST cpuminer-opt-3.18.0.tar.gz 1869910 BLAKE2B 23e090cb9c077fc69f6eee64a522676c078de268e512c588a7d93e1bd3e3904a9e5dbc937a58c21b031f685175b2f2164df04a4f7f22f8129d5183d1b990ec2f SHA512 9144a39b7470682835b57b5ff34810933af5712b4bb2e83a2b5241aeeb13747884f5f48e22e9a71512831b56d345ee5f0e6fd226a8a30d5d10243b4a99f1476c
25
26 diff --git a/net-p2p/cpuminer-opt/cpuminer-opt-3.18.0.ebuild b/net-p2p/cpuminer-opt/cpuminer-opt-3.18.0.ebuild
27 new file mode 100644
28 index 00000000000..1cd33b0d51c
29 --- /dev/null
30 +++ b/net-p2p/cpuminer-opt/cpuminer-opt-3.18.0.ebuild
31 @@ -0,0 +1,49 @@
32 +# Copyright 1999-2021 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +inherit autotools flag-o-matic systemd
38 +
39 +DESCRIPTION="Optimized multi algo CPU miner"
40 +HOMEPAGE="https://github.com/JayDDee/cpuminer-opt"
41 +IUSE="cpu_flags_x86_sse2 curl"
42 +LICENSE="GPL-2"
43 +SLOT="0"
44 +REQUIRED_USE="cpu_flags_x86_sse2"
45 +DEPEND="
46 + dev-libs/gmp:=
47 + dev-libs/jansson:=
48 + >=net-misc/curl-7.15[ssl]
49 + dev-libs/openssl:0=
50 +"
51 +RDEPEND="${DEPEND}"
52 +if [[ ${PV} == "9999" ]] ; then
53 + SRC_URI=""
54 + EGIT_REPO_URI="https://github.com/JayDDee/${PN}.git"
55 + inherit git-r3
56 +else
57 + KEYWORDS="~amd64"
58 + SRC_URI="https://github.com/JayDDee/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
59 +fi
60 +
61 +src_prepare() {
62 + default
63 + eautoreconf
64 +}
65 +
66 +src_configure() {
67 + append-ldflags -Wl,-z,noexecstack
68 + econf --with-crypto --with-curl
69 +}
70 +
71 +src_install() {
72 + default
73 + systemd_dounit "${FILESDIR}"/${PN}.service
74 + insinto "/etc/${PN}"
75 + doins cpuminer-conf.json
76 +}
77 +
78 +src_test() {
79 + ./cpuminer --cputest || die
80 +}