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: Mon, 12 Feb 2018 15:52:00
Message-Id: 1518450711.3919505924c6cf572796f4fb58fd0f00c53c37db.candrews@gentoo
1 commit: 3919505924c6cf572796f4fb58fd0f00c53c37db
2 Author: Craig Andrews <candrews <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 12 15:49:26 2018 +0000
4 Commit: Craig Andrews <candrews <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 12 15:51:51 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39195059
7
8 net-p2p/cpuminer-opt: 3.8.1.1 version bump
9
10 Package-Manager: Portage-2.3.24, Repoman-2.3.6
11
12 net-p2p/cpuminer-opt/Manifest | 1 +
13 net-p2p/cpuminer-opt/cpuminer-opt-3.8.1.1.ebuild | 46 ++++++++++++++++++++++++
14 2 files changed, 47 insertions(+)
15
16 diff --git a/net-p2p/cpuminer-opt/Manifest b/net-p2p/cpuminer-opt/Manifest
17 index c8fd48f4dfe..5cc816d5d27 100644
18 --- a/net-p2p/cpuminer-opt/Manifest
19 +++ b/net-p2p/cpuminer-opt/Manifest
20 @@ -1,3 +1,4 @@
21 DIST cpuminer-opt-3.8.0.1.tar.gz 1656058 BLAKE2B 685e5a7813f32e276a1cdd179c5d518c670e323b185270cce7368aa2f2c7b80a77076280d8604609d184e9e94776067050e65b722b20f1efdd5a4c3caba397c3 SHA512 0b7de89d37334c0c9867b65362c8664547a5b1f840446c071259cdd00848e9aab9ea3c160665a5d72efe9f50322f3c2e45f01035671b8eb4f341cb53abdd8452
22 DIST cpuminer-opt-3.8.0.tar.gz 1656474 BLAKE2B 145126762aeb245d042c1a208b60fd4727b450b77ab2585043b13b82b61b947dea0db2489de08e619dcd54b8eb1ec429f83f21ce1e49c34e140f585eccdd14f0 SHA512 c610d58236c5d84a850e68e172d3fdfede5b86aefa8ff09890ffc43d47efd4754aeb345f6b5fd48b6afcbc771541418f6fde1c9e621ad89c17d2dad4c16151f9
23 +DIST cpuminer-opt-3.8.1.1.tar.gz 1657624 BLAKE2B d408d3da10ea6c0d91d0aa7097e52fb233f9a3c8f921c638899d18f99c1b1522c2d627d6869af6e650929da251f2bf6df87882ffb7169ac5a5633608d9399565 SHA512 f41e175492514c96d088c7f11aec88796b63d91aa8496794fac2222db24090685b4c76439bff39b5c074a5527494dfa8d1be6611b0040f5fca6436a80ea933f4
24 DIST cpuminer-opt-3.8.1.tar.gz 1654969 BLAKE2B b8805e748b71d3c7049d5c97dd74a51da55f88c697963c938a372ff5ff0ac72fcabce81b86f373fdca2dcef7393bba3f53c049bc30dfbd02691ff5e9630cf5bc SHA512 800edbecf5edb0902adc54480a4984602c19087d55675212832ce24df109b7d66544d9db78112a04c3c374521737e2680013d354b6ff8195a17abeb213e2a556
25
26 diff --git a/net-p2p/cpuminer-opt/cpuminer-opt-3.8.1.1.ebuild b/net-p2p/cpuminer-opt/cpuminer-opt-3.8.1.1.ebuild
27 new file mode 100644
28 index 00000000000..a1f4a660f6b
29 --- /dev/null
30 +++ b/net-p2p/cpuminer-opt/cpuminer-opt-3.8.1.1.ebuild
31 @@ -0,0 +1,46 @@
32 +# Copyright 1999-2018 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=6
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 + curl? ( >=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 $(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 +}