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, 27 Sep 2019 19:41:01
Message-Id: 1569613251.5d7793b6b058c1946776abe1119e2297f7db6b31.candrews@gentoo
1 commit: 5d7793b6b058c1946776abe1119e2297f7db6b31
2 Author: Craig Andrews <candrews <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 27 19:38:51 2019 +0000
4 Commit: Craig Andrews <candrews <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 27 19:40:51 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d7793b6
7
8 net-p2p/cpuminer-opt: 3.9.8 version bump
9
10 Package-Manager: Portage-2.3.76, Repoman-2.3.17
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.9.8.ebuild | 50 ++++++++++++++++++++++++++
15 2 files changed, 51 insertions(+)
16
17 diff --git a/net-p2p/cpuminer-opt/Manifest b/net-p2p/cpuminer-opt/Manifest
18 index 0fcf8ab2b1e..8ae8a99f315 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.9.6.2.tar.gz 1796238 BLAKE2B 5c9ef9e04897ac8e62196bb54606b407ae5df7f48074f91c202a7323f9ebfa5c44361df99ed83f9c67e69080580c9bf1e29607b491c872a2f1385c8c42444940 SHA512 92e96724fc40d974cd80d61c19c7d46b6581ec0e63328bf940cade12231240fa17f26639a6c344cf19c20ea6e6f7dc4178dea7db51a4c7ec85a66ab5e4a5e59d
23 DIST cpuminer-opt-3.9.7.tar.gz 1797055 BLAKE2B 33f978139a04e5bedd76bf37f20d55e1a910e38bb877adf611b9a3b5a9c83193bde6adf5a93562a57e5b12c5e05b59824709714143b9df9abffb751f20e9543d SHA512 a696847b9c7283e1a05cfae2785311e82a1b84496ca1da2b30bb960d3fcc37991f9ab866b8e32125f66718d89b2b8ac3e680b53da2ec68deff910745603ce6d7
24 +DIST cpuminer-opt-3.9.8.tar.gz 1792693 BLAKE2B e08866a17e29491430ef2896b79336a78b8fd74696812c406be9454c59ec07c5d65237714375888a06d15cceaaf8465658004f73d0371f0e95f7954fae2c22fe SHA512 af50d7cbc4890697cc006887053d7fe7ec516dc13709bdb61c77ba1322fa7c6ce0c942ea9fc1881ce9ae43524b20f7182d574e546ef4e0fc479a0827658329af
25
26 diff --git a/net-p2p/cpuminer-opt/cpuminer-opt-3.9.8.ebuild b/net-p2p/cpuminer-opt/cpuminer-opt-3.9.8.ebuild
27 new file mode 100644
28 index 00000000000..666d27ee1c0
29 --- /dev/null
30 +++ b/net-p2p/cpuminer-opt/cpuminer-opt-3.9.8.ebuild
31 @@ -0,0 +1,50 @@
32 +# Copyright 1999-2019 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 libressl"
42 +LICENSE="GPL-2"
43 +SLOT="0"
44 +REQUIRED_USE="cpu_flags_x86_sse2"
45 +DEPEND="
46 + dev-libs/gmp:0
47 + dev-libs/jansson
48 + >=net-misc/curl-7.15[ssl]
49 + !libressl? ( dev-libs/openssl:0= )
50 + libressl? ( dev-libs/libressl:0= )
51 +"
52 +RDEPEND="${DEPEND}"
53 +if [[ ${PV} == "9999" ]] ; then
54 + SRC_URI=""
55 + EGIT_REPO_URI="https://github.com/JayDDee/${PN}.git"
56 + inherit git-r3
57 +else
58 + KEYWORDS="~amd64"
59 + SRC_URI="https://github.com/JayDDee/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
60 +fi
61 +
62 +src_prepare() {
63 + default
64 + eautoreconf
65 +}
66 +
67 +src_configure() {
68 + append-ldflags -Wl,-z,noexecstack
69 + econf --with-crypto --with-curl
70 +}
71 +
72 +src_install() {
73 + default
74 + systemd_dounit "${FILESDIR}"/${PN}.service
75 + insinto "/etc/${PN}"
76 + doins cpuminer-conf.json
77 +}
78 +
79 +src_test() {
80 + ./cpuminer --cputest || die
81 +}