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/xmr-stak-rx/
Date: Sun, 29 Dec 2019 19:46:32
Message-Id: 1577648782.316b08a7f952d114b3c6807f6a36d50902a5b77c.candrews@gentoo
1 commit: 316b08a7f952d114b3c6807f6a36d50902a5b77c
2 Author: Craig Andrews <candrews <AT> gentoo <DOT> org>
3 AuthorDate: Sun Dec 29 19:43:54 2019 +0000
4 Commit: Craig Andrews <candrews <AT> gentoo <DOT> org>
5 CommitDate: Sun Dec 29 19:46:22 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=316b08a7
7
8 net-p2p/xmr-stak-rx: Cleanup old versions
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/xmr-stak-rx/Manifest | 3 --
14 net-p2p/xmr-stak-rx/xmr-stak-rx-1.0.1.ebuild | 65 ----------------------------
15 net-p2p/xmr-stak-rx/xmr-stak-rx-1.0.2.ebuild | 65 ----------------------------
16 net-p2p/xmr-stak-rx/xmr-stak-rx-1.0.3.ebuild | 65 ----------------------------
17 4 files changed, 198 deletions(-)
18
19 diff --git a/net-p2p/xmr-stak-rx/Manifest b/net-p2p/xmr-stak-rx/Manifest
20 index acb9267b73d..1f52d9e56f6 100644
21 --- a/net-p2p/xmr-stak-rx/Manifest
22 +++ b/net-p2p/xmr-stak-rx/Manifest
23 @@ -1,4 +1 @@
24 -DIST xmr-stak-rx-1.0.1.tar.gz 500735 BLAKE2B 112b75122f35358c8558dec116a5f37bbbd13e9f57a767e03e85da37ab4a408831aa50bf5f2415451f776492b42c5a4a36de730fefc7d99bb13f437c9007d549 SHA512 488884948ad66445c37725397152201883feef8aff5afecaa93297a5bb45e65173b095e2e796d729bd8e9c778e94ee6fb65146250be54c39b10635a2569b6866
25 -DIST xmr-stak-rx-1.0.2.tar.gz 2590320 BLAKE2B e4bd4770ebd491182633a544a89e9ece25e471dfded7592680e0685883a805b26a0266982c0474f8a0db2c0ecf40412e4976c3ca7a4dc9f5f91f59bab947d277 SHA512 5a31ae5ae6e27c6bd2300c5e5056de733037d149fa7656b91da37f4e9dfb4f1cd1986503c30b84c4a5ee2539c12992dd5e5e883fb808d435d50484290cdb7e87
26 -DIST xmr-stak-rx-1.0.3.tar.gz 2590745 BLAKE2B 4b7d452728f9a18239a91de08fe3bda8e515fd96d47e3411b83d77ec254fac70d1ac9f334fffb6eb09bd57a4f7c533b214ad017a207190e5800ff27cdcccc6a4 SHA512 0836cde0766f781462957c196683b343ea48c10afee184db324ca6b62c4c7b53e381e8e4f4e41690148ae903b074d0cf0d51fed6a411b6bdaccb6f383e802935
27 DIST xmr-stak-rx-1.0.4.tar.gz 2595481 BLAKE2B acd0667301255ba145d42ea6a3f6acf731ca9946beccacd6db973a25a03c0e9f53dacb0e716f739f17f38e42b3ccb25e5af9052b7884ccfa0d5e89b6a3ab3c85 SHA512 ce2fb84e88cd3fe2d75d73c6027eea0823d3ac77463229ae838b97ba0e91d43d5f30365363049f7de7a7c1e8e85b5511850da86ecb07ae3db86d276241a7cce3
28
29 diff --git a/net-p2p/xmr-stak-rx/xmr-stak-rx-1.0.1.ebuild b/net-p2p/xmr-stak-rx/xmr-stak-rx-1.0.1.ebuild
30 deleted file mode 100644
31 index 5bd13426b52..00000000000
32 --- a/net-p2p/xmr-stak-rx/xmr-stak-rx-1.0.1.ebuild
33 +++ /dev/null
34 @@ -1,65 +0,0 @@
35 -# Copyright 1999-2019 Gentoo Authors
36 -# Distributed under the terms of the GNU General Public License v2
37 -
38 -EAPI=7
39 -
40 -inherit cmake-utils systemd
41 -
42 -if [[ ${PV} == "9999" ]] ; then
43 - EGIT_REPO_URI="https://github.com/fireice-uk/xmr-stak.git"
44 - EGIT_BRANCH="xmr-stak-rx-dev"
45 - inherit git-r3
46 - SRC_URI=""
47 -else
48 - SRC_URI="https://github.com/fireice-uk/xmr-stak/archive/${PV}-rx.tar.gz -> ${P}.tar.gz"
49 - S="${WORKDIR}/xmr-stak-${PV}-rx"
50 - KEYWORDS="~amd64"
51 -fi
52 -
53 -DESCRIPTION="Monero RandomX Miner"
54 -HOMEPAGE="https://github.com/fireice-uk/xmr-stak"
55 -LICENSE="GPL-3"
56 -SLOT="0"
57 -IUSE="cuda hwloc opencl ssl webserver"
58 -
59 -DEPEND="cuda? ( dev-util/nvidia-cuda-toolkit )
60 - hwloc? ( sys-apps/hwloc )
61 - opencl? ( virtual/opencl )
62 - ssl? ( dev-libs/openssl:0= )
63 - webserver? ( net-libs/libmicrohttpd )"
64 -RDEPEND="${DEPEND}"
65 -
66 -src_prepare() {
67 - cmake-utils_src_prepare
68 -}
69 -
70 -src_configure() {
71 - local mycmakeargs=(
72 - -DCUDA_ENABLE=$(usex cuda)
73 - -DHWLOC_ENABLE=$(usex hwloc)
74 - -DMICROHTTPD_ENABLE=$(usex webserver)
75 - -DOpenCL_ENABLE=$(usex opencl)
76 - -DOpenSSL_ENABLE=$(usex ssl)
77 - -DLIBRARY_OUTPUT_PATH=$(get_libdir)
78 - )
79 - cmake-utils_src_configure
80 -}
81 -
82 -src_install() {
83 - cmake-utils_src_install
84 - systemd_newunit "${FILESDIR}"/${PN}.service ${PN}.service
85 - doinitd "${FILESDIR}"/${PN}
86 - dodir /etc/xmr-stak-rx
87 -}
88 -
89 -pkg_postinst() {
90 - if [ ! -e "${ROOT}/etc/xmr-stak-rx/main.config" ]; then
91 - ewarn "To use xmr-stack-rx:"
92 - if use cuda || use opencl; then
93 - ewarn "As root or as a user that is a member of the 'video' group,"
94 - fi
95 - ewarn "run:"
96 - ewarn "/usr/bin/xmr-stak-rx --cpu /etc/xmr-stak-rx/cpu.config --amd /etc/xmr-stak-rx/amd.config --nvidia /etc/xmr-stak-rx/nvidia.config -c /etc/xmr-stak-rx/main.config -C /etc/xmr-stak-rx/pools.txt"
97 - ewarn "xmr-stak-rx can now be terminated and 'systemctl start xmr-stak-rx' or '/etc/init.d/xmr-stak-rx start' can be used."
98 - fi
99 -}
100
101 diff --git a/net-p2p/xmr-stak-rx/xmr-stak-rx-1.0.2.ebuild b/net-p2p/xmr-stak-rx/xmr-stak-rx-1.0.2.ebuild
102 deleted file mode 100644
103 index 5bd13426b52..00000000000
104 --- a/net-p2p/xmr-stak-rx/xmr-stak-rx-1.0.2.ebuild
105 +++ /dev/null
106 @@ -1,65 +0,0 @@
107 -# Copyright 1999-2019 Gentoo Authors
108 -# Distributed under the terms of the GNU General Public License v2
109 -
110 -EAPI=7
111 -
112 -inherit cmake-utils systemd
113 -
114 -if [[ ${PV} == "9999" ]] ; then
115 - EGIT_REPO_URI="https://github.com/fireice-uk/xmr-stak.git"
116 - EGIT_BRANCH="xmr-stak-rx-dev"
117 - inherit git-r3
118 - SRC_URI=""
119 -else
120 - SRC_URI="https://github.com/fireice-uk/xmr-stak/archive/${PV}-rx.tar.gz -> ${P}.tar.gz"
121 - S="${WORKDIR}/xmr-stak-${PV}-rx"
122 - KEYWORDS="~amd64"
123 -fi
124 -
125 -DESCRIPTION="Monero RandomX Miner"
126 -HOMEPAGE="https://github.com/fireice-uk/xmr-stak"
127 -LICENSE="GPL-3"
128 -SLOT="0"
129 -IUSE="cuda hwloc opencl ssl webserver"
130 -
131 -DEPEND="cuda? ( dev-util/nvidia-cuda-toolkit )
132 - hwloc? ( sys-apps/hwloc )
133 - opencl? ( virtual/opencl )
134 - ssl? ( dev-libs/openssl:0= )
135 - webserver? ( net-libs/libmicrohttpd )"
136 -RDEPEND="${DEPEND}"
137 -
138 -src_prepare() {
139 - cmake-utils_src_prepare
140 -}
141 -
142 -src_configure() {
143 - local mycmakeargs=(
144 - -DCUDA_ENABLE=$(usex cuda)
145 - -DHWLOC_ENABLE=$(usex hwloc)
146 - -DMICROHTTPD_ENABLE=$(usex webserver)
147 - -DOpenCL_ENABLE=$(usex opencl)
148 - -DOpenSSL_ENABLE=$(usex ssl)
149 - -DLIBRARY_OUTPUT_PATH=$(get_libdir)
150 - )
151 - cmake-utils_src_configure
152 -}
153 -
154 -src_install() {
155 - cmake-utils_src_install
156 - systemd_newunit "${FILESDIR}"/${PN}.service ${PN}.service
157 - doinitd "${FILESDIR}"/${PN}
158 - dodir /etc/xmr-stak-rx
159 -}
160 -
161 -pkg_postinst() {
162 - if [ ! -e "${ROOT}/etc/xmr-stak-rx/main.config" ]; then
163 - ewarn "To use xmr-stack-rx:"
164 - if use cuda || use opencl; then
165 - ewarn "As root or as a user that is a member of the 'video' group,"
166 - fi
167 - ewarn "run:"
168 - ewarn "/usr/bin/xmr-stak-rx --cpu /etc/xmr-stak-rx/cpu.config --amd /etc/xmr-stak-rx/amd.config --nvidia /etc/xmr-stak-rx/nvidia.config -c /etc/xmr-stak-rx/main.config -C /etc/xmr-stak-rx/pools.txt"
169 - ewarn "xmr-stak-rx can now be terminated and 'systemctl start xmr-stak-rx' or '/etc/init.d/xmr-stak-rx start' can be used."
170 - fi
171 -}
172
173 diff --git a/net-p2p/xmr-stak-rx/xmr-stak-rx-1.0.3.ebuild b/net-p2p/xmr-stak-rx/xmr-stak-rx-1.0.3.ebuild
174 deleted file mode 100644
175 index 5bd13426b52..00000000000
176 --- a/net-p2p/xmr-stak-rx/xmr-stak-rx-1.0.3.ebuild
177 +++ /dev/null
178 @@ -1,65 +0,0 @@
179 -# Copyright 1999-2019 Gentoo Authors
180 -# Distributed under the terms of the GNU General Public License v2
181 -
182 -EAPI=7
183 -
184 -inherit cmake-utils systemd
185 -
186 -if [[ ${PV} == "9999" ]] ; then
187 - EGIT_REPO_URI="https://github.com/fireice-uk/xmr-stak.git"
188 - EGIT_BRANCH="xmr-stak-rx-dev"
189 - inherit git-r3
190 - SRC_URI=""
191 -else
192 - SRC_URI="https://github.com/fireice-uk/xmr-stak/archive/${PV}-rx.tar.gz -> ${P}.tar.gz"
193 - S="${WORKDIR}/xmr-stak-${PV}-rx"
194 - KEYWORDS="~amd64"
195 -fi
196 -
197 -DESCRIPTION="Monero RandomX Miner"
198 -HOMEPAGE="https://github.com/fireice-uk/xmr-stak"
199 -LICENSE="GPL-3"
200 -SLOT="0"
201 -IUSE="cuda hwloc opencl ssl webserver"
202 -
203 -DEPEND="cuda? ( dev-util/nvidia-cuda-toolkit )
204 - hwloc? ( sys-apps/hwloc )
205 - opencl? ( virtual/opencl )
206 - ssl? ( dev-libs/openssl:0= )
207 - webserver? ( net-libs/libmicrohttpd )"
208 -RDEPEND="${DEPEND}"
209 -
210 -src_prepare() {
211 - cmake-utils_src_prepare
212 -}
213 -
214 -src_configure() {
215 - local mycmakeargs=(
216 - -DCUDA_ENABLE=$(usex cuda)
217 - -DHWLOC_ENABLE=$(usex hwloc)
218 - -DMICROHTTPD_ENABLE=$(usex webserver)
219 - -DOpenCL_ENABLE=$(usex opencl)
220 - -DOpenSSL_ENABLE=$(usex ssl)
221 - -DLIBRARY_OUTPUT_PATH=$(get_libdir)
222 - )
223 - cmake-utils_src_configure
224 -}
225 -
226 -src_install() {
227 - cmake-utils_src_install
228 - systemd_newunit "${FILESDIR}"/${PN}.service ${PN}.service
229 - doinitd "${FILESDIR}"/${PN}
230 - dodir /etc/xmr-stak-rx
231 -}
232 -
233 -pkg_postinst() {
234 - if [ ! -e "${ROOT}/etc/xmr-stak-rx/main.config" ]; then
235 - ewarn "To use xmr-stack-rx:"
236 - if use cuda || use opencl; then
237 - ewarn "As root or as a user that is a member of the 'video' group,"
238 - fi
239 - ewarn "run:"
240 - ewarn "/usr/bin/xmr-stak-rx --cpu /etc/xmr-stak-rx/cpu.config --amd /etc/xmr-stak-rx/amd.config --nvidia /etc/xmr-stak-rx/nvidia.config -c /etc/xmr-stak-rx/main.config -C /etc/xmr-stak-rx/pools.txt"
241 - ewarn "xmr-stak-rx can now be terminated and 'systemctl start xmr-stak-rx' or '/etc/init.d/xmr-stak-rx start' can be used."
242 - fi
243 -}