summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCraig Andrews <candrews@gentoo.org>2023-03-27 09:29:50 -0400
committerCraig Andrews <candrews@gentoo.org>2023-03-27 09:29:50 -0400
commita5d4dbb13bc71b38c9394005707d6d8fa193887c (patch)
treec783f90323d6318ed5c81336792c793edad7a7c7 /net-p2p
parentnet-p2p/cpuminer-opt: add 3.22.1 (diff)
downloadgentoo-a5d4dbb13bc71b38c9394005707d6d8fa193887c.tar.gz
gentoo-a5d4dbb13bc71b38c9394005707d6d8fa193887c.tar.bz2
gentoo-a5d4dbb13bc71b38c9394005707d6d8fa193887c.zip
net-p2p/cpuminer-opt: drop 3.21.5
Signed-off-by: Craig Andrews <candrews@gentoo.org>
Diffstat (limited to 'net-p2p')
-rw-r--r--net-p2p/cpuminer-opt/Manifest1
-rw-r--r--net-p2p/cpuminer-opt/cpuminer-opt-3.21.5.ebuild49
2 files changed, 0 insertions, 50 deletions
diff --git a/net-p2p/cpuminer-opt/Manifest b/net-p2p/cpuminer-opt/Manifest
index ebc8b8afda67..0bdc7703a4af 100644
--- a/net-p2p/cpuminer-opt/Manifest
+++ b/net-p2p/cpuminer-opt/Manifest
@@ -1,2 +1 @@
-DIST cpuminer-opt-3.21.5.tar.gz 1795555 BLAKE2B 835b799334445c8a0b6a531b6a270f0b3e6b2f34c9f6002e08560c57eb3beefbd41ab322fd42c6a796bf295bed2d8e182a8999b771133ae555ac335039965bfa SHA512 e5aed1e9f5e181c3df76669f8c3479608ae355b5b5fd33ea1fb6c7b8338826c7a853505f975b95ce82697ed5d04b7d193c80a13a94d26e9ae7e9a42b3fc15403
DIST cpuminer-opt-3.22.1.tar.gz 1788067 BLAKE2B 38fd425cdfed4378c66be41ee5021bfaab47adc9c8c53f1b99b05efb30dd891bc8ca7feceb7eb8e5998cf0c8536eb582370f9955a0117917f18e451dbd90e1a6 SHA512 39157cd22a9923dec15e040e5aa11b28d8197fd4b906384989354d6f9f13073671264de5b8c251283ad137d778c70b36be5a3f7bc4f11555579892ee0f61cc41
diff --git a/net-p2p/cpuminer-opt/cpuminer-opt-3.21.5.ebuild b/net-p2p/cpuminer-opt/cpuminer-opt-3.21.5.ebuild
deleted file mode 100644
index dd862b295bd0..000000000000
--- a/net-p2p/cpuminer-opt/cpuminer-opt-3.21.5.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools flag-o-matic systemd
-
-DESCRIPTION="Optimized multi algo CPU miner"
-HOMEPAGE="https://github.com/JayDDee/cpuminer-opt"
-IUSE="cpu_flags_x86_sse2 curl"
-LICENSE="GPL-2"
-SLOT="0"
-REQUIRED_USE="cpu_flags_x86_sse2"
-DEPEND="
- dev-libs/gmp:=
- dev-libs/jansson:=
- >=net-misc/curl-7.15[ssl]
- dev-libs/openssl:0=
-"
-RDEPEND="${DEPEND}"
-if [[ ${PV} == "9999" ]] ; then
- SRC_URI=""
- EGIT_REPO_URI="https://github.com/JayDDee/${PN}.git"
- inherit git-r3
-else
- KEYWORDS="~amd64"
- SRC_URI="https://github.com/JayDDee/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-fi
-
-src_prepare() {
- default
- eautoreconf
-}
-
-src_configure() {
- append-ldflags -Wl,-z,noexecstack
- econf --with-crypto --with-curl
-}
-
-src_install() {
- default
- systemd_dounit "${FILESDIR}"/${PN}.service
- insinto "/etc/${PN}"
- doins cpuminer-conf.json
-}
-
-src_test() {
- ./cpuminer --cputest || die
-}