net-p2p/xmr-stak: 2.7.0 version bump

Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Craig Andrews <candrews@gentoo.org>
This commit is contained in:
Craig Andrews
2018-12-03 16:40:26 -05:00
parent 2d1b0d92e3
commit ddfa83fc2e
2 changed files with 68 additions and 0 deletions

View File

@@ -7,3 +7,4 @@ DIST xmr-stak-2.5.0.tar.gz 356770 BLAKE2B faf4fe59b8038e3bdac8941a6bac8939e1244d
DIST xmr-stak-2.5.1.tar.gz 357295 BLAKE2B cbb91144f56abb3bb21d9b56d0e530847081698a90260e9e01f055138ff61a62e939e7546f359ac48afd3fb1d6b1bd7c10dc46c7ae628df02ec6d7a14e73f6dd SHA512 3899476430b50cf697588bce9b8b821c1cb6a5c4c24f0fa31c36030246a8092f6e3f959b8c0548fe26967d49cd0943843a53e49bf7420710382120292f1f2d2e
DIST xmr-stak-2.5.2.tar.gz 357306 BLAKE2B 333011250d2df3a699ec00066b1f2e45182b33b74178579756fb29b553d1d8b5abc171241f9586ef80c2c34ada40fd350046b998a7ac3c6a905b78f5e00facb0 SHA512 d9c1e851588d7e995c11cd02873a49612f862550635afe311a654fb3e0f80c80dec15a99b83e33a6d090d6e32d87f29746291e06effa05df4fc9f2f78c0a6a9c
DIST xmr-stak-2.6.0.tar.gz 358899 BLAKE2B adf581dc13c680066e6aa6ff7b4e6f98e07fa5a336e8676f8aca34017359c294289d4ef28b8c9e92a183b71a00c30e693b4d602ef8e1fde888ca217f343d5cfe SHA512 aba471ba7867909815b2c0cb7366949e42a888999686dd3ff69243b6a567793bc0e08e1f8e892c711842ace4a764e2d577393ba9ea4de4c3de1e80cf31d3e70c
DIST xmr-stak-2.7.0.tar.gz 376873 BLAKE2B 78dd64acf7fbae46bf150d97b00c8443fbd097789b6e1aef99a954d966b8a75add358c82636621bb8b5639883a6d79b17ba3691e72354034bd944fa1f44d8c1e SHA512 cb56de595225ab22f1c53f1dd971898fcb14610a11d1cbc789e144a5b34f24e56f44fb75bdefc809bde17e434a5e6d02830874b9b825af179cd4699587f5e7c7

View File

@@ -0,0 +1,67 @@
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit cmake-utils systemd
if [[ ${PV} == "9999" ]] ; then
EGIT_REPO_URI="https://github.com/fireice-uk/xmr-stak.git"
EGIT_BRANCH="dev"
inherit git-r3
SRC_URI=""
else
SRC_URI="https://github.com/fireice-uk/xmr-stak/archive/${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64"
fi
DESCRIPTION="Unified all-in-one Monero miner"
HOMEPAGE="https://github.com/fireice-uk/xmr-stak"
LICENSE="GPL-3"
SLOT="0"
IUSE="cuda devfee hwloc opencl ssl webserver"
DEPEND="cuda? ( dev-util/nvidia-cuda-toolkit )
hwloc? ( sys-apps/hwloc )
opencl? ( virtual/opencl )
ssl? ( dev-libs/openssl:0= )
webserver? ( net-libs/libmicrohttpd )"
RDEPEND="${DEPEND}"
src_prepare() {
cmake-utils_src_prepare
if ! use devfee; then
sed -i -e 's!fDevDonationLevel = .*;!fDevDonationLevel = 0.0;!' xmrstak/donate-level.hpp || die
fi
}
src_configure() {
local mycmakeargs=(
-DCUDA_ENABLE=$(usex cuda)
-DHWLOC_ENABLE=$(usex hwloc)
-DMICROHTTPD_ENABLE=$(usex webserver)
-DOpenCL_ENABLE=$(usex opencl)
-DOpenSSL_ENABLE=$(usex ssl)
-DLIBRARY_OUTPUT_PATH=$(get_libdir)
)
cmake-utils_src_configure
}
src_install() {
cmake-utils_src_install
systemd_newunit "${FILESDIR}"/${PN}-2.3.0.service ${PN}.service
doinitd "${FILESDIR}"/${PN}
dodir /etc/xmr-stak
}
pkg_postinst() {
if [ ! -e "${ROOT}etc/xmr-stak/main.config" ]; then
ewarn "To use xmr-stack:"
if use cuda || use opencl; then
ewarn "As root or as a user that is a member of the 'video' group,"
fi
ewarn "run:"
ewarn "/usr/bin/xmr-stak --cpu /etc/xmr-stak/cpu.config --amd /etc/xmr-stak/amd.config --nvidia /etc/xmr-stak/nvidia.config -c /etc/xmr-stak/main.config -C /etc/xmr-stak/pools.txt"
ewarn "xmr-stak can now be terminated and 'systemctl start xmr-stak' or '/etc/init.d/xmr-stak start' can be used."
fi
}