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, 06 Jan 2020 22:19:48
Message-Id: 1578349174.4360fdad53b77a40fe23cc715e3cbb2458a90ced.candrews@gentoo
1 commit: 4360fdad53b77a40fe23cc715e3cbb2458a90ced
2 Author: Craig Andrews <candrews <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jan 6 22:19:34 2020 +0000
4 Commit: Craig Andrews <candrews <AT> gentoo <DOT> org>
5 CommitDate: Mon Jan 6 22:19:34 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4360fdad
7
8 net-p2p/cpuminer-opt: Cleanup old version
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.0.ebuild | 50 -------------------------
15 2 files changed, 51 deletions(-)
16
17 diff --git a/net-p2p/cpuminer-opt/Manifest b/net-p2p/cpuminer-opt/Manifest
18 index a9f2fc785c9..667df0ea680 100644
19 --- a/net-p2p/cpuminer-opt/Manifest
20 +++ b/net-p2p/cpuminer-opt/Manifest
21 @@ -1,2 +1 @@
22 -DIST cpuminer-opt-3.11.0.tar.gz 1999976 BLAKE2B c411265ba9d9d380601cbf2e2ca314c95d299d91e900140c4f2a6f7452325c5e6315feadb2b9096df119483d08fe51262a09d535a28ac6b50bf7793ee1e357f6 SHA512 28868d525201d7f9e71601d048b64c82d68329c571d12ada0f681711d2d8b4a4644a6ccc12f2cbb4d0f67c38f991db3cdd39e5dd7e9ad9932cbc5ad9acdaf50b
23 DIST cpuminer-opt-3.11.1.tar.gz 1924178 BLAKE2B 1ed7f07f89c94e7e15ac370e7873e5b37ec45c5b0132c3a8f2772558eb37666f1db41fbf78311f539d69f2b0858ef91478a9b1b469220e09fe07e20bd0147db3 SHA512 af6a70e0e60d7c6ab904fe29f37ba3f18327d9eb7b9700b53c28ca5d4f6693d124b01a9f382f608f4449f5a412ca57216bac354bc40d1793a1f1d40f7191dd7b
24
25 diff --git a/net-p2p/cpuminer-opt/cpuminer-opt-3.11.0.ebuild b/net-p2p/cpuminer-opt/cpuminer-opt-3.11.0.ebuild
26 deleted file mode 100644
27 index a5d436b3b8b..00000000000
28 --- a/net-p2p/cpuminer-opt/cpuminer-opt-3.11.0.ebuild
29 +++ /dev/null
30 @@ -1,50 +0,0 @@
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 -}