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: Tue, 09 Jan 2018 14:22:41
Message-Id: 1515507747.a4f17e42067217bbd66a3184e15a3bd8197f3129.candrews@gentoo
1 commit: a4f17e42067217bbd66a3184e15a3bd8197f3129
2 Author: Craig Andrews <candrews <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 9 14:22:05 2018 +0000
4 Commit: Craig Andrews <candrews <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 9 14:22:27 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4f17e42
7
8 net-p2p/cpuminer-opt: 3.7.9 version bump
9
10 Package-Manager: Portage-2.3.19, Repoman-2.3.6
11
12 net-p2p/cpuminer-opt/Manifest | 1 +
13 net-p2p/cpuminer-opt/cpuminer-opt-3.7.9.ebuild | 47 ++++++++++++++++++++++++++
14 2 files changed, 48 insertions(+)
15
16 diff --git a/net-p2p/cpuminer-opt/Manifest b/net-p2p/cpuminer-opt/Manifest
17 index cfd65256dd0..18bbc514037 100644
18 --- a/net-p2p/cpuminer-opt/Manifest
19 +++ b/net-p2p/cpuminer-opt/Manifest
20 @@ -1,2 +1,3 @@
21 DIST cpuminer-opt-3.7.7.tar.gz 1602520 BLAKE2B 059afdbd90ff062c698432d352fbb9f32807219a24659f5e27990a32b791d868147cf6fa027dff60d2e16d5f43b36b826dbabdc971e4dae4e1473aaf8795b222 SHA512 85989257ef8ee945000621598f6a9c4ed1b8099c57902d570db3038617b787254a925865567541d75e4433aaff564ffc82bd659f645ca812f809602bef8bc7c7
22 DIST cpuminer-opt-3.7.8.tar.gz 1611178 BLAKE2B 12082a378fa4656a38e634d692b182a7b5fa09aae24ba4d0226968e35680ed6175999e2daf789cdc7bda960ddd246a663ff54ff6b15435798a84268cfcff4fcc SHA512 19dcfde77405eef78061c13600dfef9ee69f62443e64c4019bdc18f98658ac1c41517f2c12f383edfd94ebcc35a58fbd2fe34037e530705bd2d1465f0355a9ab
23 +DIST cpuminer-opt-3.7.9.tar.gz 1623402 BLAKE2B f9e225989bf1f2dd249de1ed43e7e1532c8e825f6fb25e54020a0f4382ab156a9fd7463e82510a90c5c6f71b8a9749c94cc4acc01d05b6f189766099a5772fec SHA512 17457900cad97b57d92160aba8d22256a39660dc29afbcd5be35b3e9c9045f81cd43332c7890cbde44427345eff61a6a1346ce31620e281160b5acaf729863d3
24
25 diff --git a/net-p2p/cpuminer-opt/cpuminer-opt-3.7.9.ebuild b/net-p2p/cpuminer-opt/cpuminer-opt-3.7.9.ebuild
26 new file mode 100644
27 index 00000000000..912415ee00c
28 --- /dev/null
29 +++ b/net-p2p/cpuminer-opt/cpuminer-opt-3.7.9.ebuild
30 @@ -0,0 +1,47 @@
31 +# Copyright 1999-2018 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
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_avx2 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 + curl? ( >=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 + use cpu_flags_x86_avx2 && append-cflags "-DFOUR_WAY"
69 + econf --with-crypto $(use_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 +}