public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Anthony G. Basile" <blueness@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] dev/blueness:master commit in: net-misc/cgminer/
Date: Thu, 23 Feb 2012 14:46:09 +0000 (UTC)	[thread overview]
Message-ID: <1330008362.5232c46ac91725f3a60f7e6d16e06b6e42195ea3.blueness@gentoo> (raw)

commit:     5232c46ac91725f3a60f7e6d16e06b6e42195ea3
Author:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 23 14:46:02 2012 +0000
Commit:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Thu Feb 23 14:46:02 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=dev/blueness.git;a=commit;h=5232c46a

net-misc/cgminer: testing done, removed

---
 net-misc/cgminer/Manifest             |    3 -
 net-misc/cgminer/cgminer-2.2.7.ebuild |   88 ---------------------------------
 net-misc/cgminer/metadata.xml         |   20 -------
 3 files changed, 0 insertions(+), 111 deletions(-)

diff --git a/net-misc/cgminer/Manifest b/net-misc/cgminer/Manifest
deleted file mode 100644
index b91b052..0000000
--- a/net-misc/cgminer/Manifest
+++ /dev/null
@@ -1,3 +0,0 @@
-DIST cgminer-2.2.7.tar.bz2 387539 RMD160 2055e52f4ebe73c71018f040d106ea95348180a7 SHA1 587c47e3d4fc4f5e62b194c6c14db92c1d98840d SHA256 e0492f6454ab45ef3221e2a82aa0fbe676f8963b598e8e5c6d898066ebc2d55b
-EBUILD cgminer-2.2.7.ebuild 1913 RMD160 bf5f377d641f0536e55e0e7814f330bf21b162dc SHA1 b5cdd552bc84cf7f81e1a46e0f154c08d76ca633 SHA256 1b71c4d926cdf4683188aafa13e91f085223983903af49ce66223c61615403b7
-MISC metadata.xml 839 RMD160 9fdd575d1b53af90e41c7e0d84965b4671cbc0f2 SHA1 609bebc918e85da2965a3c6b221343ae5c490754 SHA256 6d855e24d2c2dd4a2af0c74b634a1759b6e01641a4522547b61689b5fa465ea7

diff --git a/net-misc/cgminer/cgminer-2.2.7.ebuild b/net-misc/cgminer/cgminer-2.2.7.ebuild
deleted file mode 100644
index c2c2eca..0000000
--- a/net-misc/cgminer/cgminer-2.2.7.ebuild
+++ /dev/null
@@ -1,88 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=4
-
-DESCRIPTION="CPU/GPU miner in c for bitcoin"
-HOMEPAGE="https://bitcointalk.org/index.php?topic=28402.0"
-SRC_URI="http://ck.kolivas.org/apps/${PN}/${PN}-2.2/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~x86 ~amd64"
-
-IUSE="altivec bitforce +cpumining examples +opencl padlock sse2 sse2_4way sse4"
-REQUIRED_USE='
-	|| ( bitforce cpumining opencl )
-	altivec? ( cpumining ppc ppc64 )
-	padlock? ( cpumining || ( amd64 x86 ) )
-	sse2? ( cpumining || ( amd64 x86 ) )
-	sse4? ( cpumining amd64 )
-'
-
-DEPEND='
-	net-misc/curl
-	sys-libs/ncurses
-	dev-libs/jansson
-	opencl? (
-		virtual/opencl
-	)
-'
-RDEPEND="${DEPEND}"
-DEPEND="${DEPEND}
-	dev-util/pkgconfig
-	sys-apps/sed
-	sse2? (
-		>=dev-lang/yasm-1.0.1
-	)
-	sse4? (
-		>=dev-lang/yasm-1.0.1
-	)
-"
-
-src_prepare() {
-	sed -i 's/\(^\#define WANT_.*\(SSE\|PADLOCK\|ALTIVEC\)\)/\/\/ \1/' miner.h
-}
-
-src_configure() {
-	local CFLAGS="${CFLAGS}"
-	if ! use altivec; then
-		sed -i 's/-faltivec//g' configure
-	else
-		CFLAGS="${CFLAGS} -DWANT_ALTIVEC=1"
-	fi
-	use padlock && CFLAGS="${CFLAGS} -DWANT_VIA_PADLOCK=1"
-	if use sse2; then
-		if use amd64; then
-			CFLAGS="${CFLAGS} -DWANT_X8664_SSE2=1"
-		else
-			CFLAGS="${CFLAGS} -DWANT_X8632_SSE2=1"
-		fi
-	fi
-	use sse2_4way && CFLAGS="${CFLAGS} -DWANT_SSE2_4WAY=1"
-	use sse4 && CFLAGS="${CFLAGS} -DWANT_X8664_SSE4=1"
-	CFLAGS="${CFLAGS}" \
-	econf \
-		--disable-adl \
-		$(use_enable bitforce) \
-		$(use_enable cpumining) \
-		$(use_enable opencl)
-	if use opencl; then
-		# sanitize directories
-		sed -i 's/^(\#define CGMINER_PREFIX ).*$/\1"'"${EPREFIX}/usr/share/cgminer"'"/' config.h
-	fi
-}
-
-src_install() {
-	dobin cgminer
-	dodoc AUTHORS NEWS README
-	if use opencl; then
-		insinto /usr/share/cgminer
-		doins *.cl
-	fi
-	if use examples; then
-		docinto examples
-		dodoc api-example.php miner.php API.java api-example.c
-	fi
-}

diff --git a/net-misc/cgminer/metadata.xml b/net-misc/cgminer/metadata.xml
deleted file mode 100644
index a26bd7b..0000000
--- a/net-misc/cgminer/metadata.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-	<maintainer>
-		<email>blueness@gentoo.org</email>
-		<name>Anthony G. Basile</name>
-	</maintainer>
-	<maintainer>
-		<email>luke_gentoo_bitcoin@dashjr.org</email>
-		<name>Luke Dashjr</name>
-	</maintainer>
-	<use>
-		<flag name='bitforce'>Enable support for mining with ButterFly Labs BitFORCE FPGAs</flag>
-		<flag name='cpumining'>Enable support for mining with CPUs</flag>
-		<flag name='opencl'>Enable support for mining with OpenCL-capable devices (GPUs)</flag>
-		<flag name='padlock'>Enable support for mining with VIA Padlock CPUs</flag>
-		<flag name='sse2_4way'>Enable support for CPU SSE2 4way mining algorithm</flag>
-		<flag name='sse4'>Enable support for CPU SSE4 mining algorithm</flag>
-	</use>
-</pkgmetadata>



             reply	other threads:[~2012-02-23 14:46 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-02-23 14:46 Anthony G. Basile [this message]
  -- strict thread matches above, loose matches on Subject: below --
2012-02-21 22:09 [gentoo-commits] dev/blueness:master commit in: net-misc/cgminer/ Anthony G. Basile

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1330008362.5232c46ac91725f3a60f7e6d16e06b6e42195ea3.blueness@gentoo \
    --to=blueness@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox