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: Thu, 09 Jan 2020 19:19:32
Message-Id: 1578597561.0b29f373747430e689e6e1d73a7d7345573a5307.candrews@gentoo
1 commit: 0b29f373747430e689e6e1d73a7d7345573a5307
2 Author: Craig Andrews <candrews <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 9 17:17:10 2020 +0000
4 Commit: Craig Andrews <candrews <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 9 19:19:21 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b29f373
7
8 net-p2p/cpuminer-opt: 3.11.2 version bump
9
10 Package-Manager: Portage-2.3.84, Repoman-2.3.20
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.11.2.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 667df0ea680..c124d19986f 100644
19 --- a/net-p2p/cpuminer-opt/Manifest
20 +++ b/net-p2p/cpuminer-opt/Manifest
21 @@ -1 +1,2 @@
22 DIST cpuminer-opt-3.11.1.tar.gz 1924178 BLAKE2B 1ed7f07f89c94e7e15ac370e7873e5b37ec45c5b0132c3a8f2772558eb37666f1db41fbf78311f539d69f2b0858ef91478a9b1b469220e09fe07e20bd0147db3 SHA512 af6a70e0e60d7c6ab904fe29f37ba3f18327d9eb7b9700b53c28ca5d4f6693d124b01a9f382f608f4449f5a412ca57216bac354bc40d1793a1f1d40f7191dd7b
23 +DIST cpuminer-opt-3.11.2.tar.gz 1923535 BLAKE2B 24ee1f4e64771ac1f007fd5934569e53959692f95dfd9fe4a7b38d4d32cbd4d5dd3731a285ad4e9e1e9bbbfd56a86bc9a69de9d5392d6d9a858a816ad031575f SHA512 bdbe99b358e37d8170259e5575f28d0b8c2e7faa6159b389f173e1a74299483ae6c5b2173f7565943f4c36e8e99d436ffbb485e3012f53337599d9dbd004b1b9
24
25 diff --git a/net-p2p/cpuminer-opt/cpuminer-opt-3.11.2.ebuild b/net-p2p/cpuminer-opt/cpuminer-opt-3.11.2.ebuild
26 new file mode 100644
27 index 00000000000..a5d436b3b8b
28 --- /dev/null
29 +++ b/net-p2p/cpuminer-opt/cpuminer-opt-3.11.2.ebuild
30 @@ -0,0 +1,50 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +inherit autotools flag-o-matic systemd
37 +
38 +DESCRIPTION="Optimized multi algo CPU miner"
39 +HOMEPAGE="https://github.com/JayDDee/cpuminer-opt"
40 +IUSE="cpu_flags_x86_sse2 curl libressl"
41 +LICENSE="GPL-2"
42 +SLOT="0"
43 +REQUIRED_USE="cpu_flags_x86_sse2"
44 +DEPEND="
45 + dev-libs/gmp:0
46 + dev-libs/jansson
47 + >=net-misc/curl-7.15[ssl]
48 + !libressl? ( dev-libs/openssl:0= )
49 + libressl? ( dev-libs/libressl: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 +}