[arch-commits] Commit in bfgminer/repos (8 files)

Felix Yan fyan at archlinux.org
Fri Aug 22 15:36:57 UTC 2014


    Date: Friday, August 22, 2014 @ 17:36:56
  Author: fyan
Revision: 117773

archrelease: copy trunk to community-i686, community-x86_64

Added:
  bfgminer/repos/community-i686/PKGBUILD
    (from rev 117772, bfgminer/trunk/PKGBUILD)
  bfgminer/repos/community-i686/remove-dangerous-rpath.patch
    (from rev 117772, bfgminer/trunk/remove-dangerous-rpath.patch)
  bfgminer/repos/community-x86_64/PKGBUILD
    (from rev 117772, bfgminer/trunk/PKGBUILD)
  bfgminer/repos/community-x86_64/remove-dangerous-rpath.patch
    (from rev 117772, bfgminer/trunk/remove-dangerous-rpath.patch)
Deleted:
  bfgminer/repos/community-i686/PKGBUILD
  bfgminer/repos/community-i686/remove-dangerous-rpath.patch
  bfgminer/repos/community-x86_64/PKGBUILD
  bfgminer/repos/community-x86_64/remove-dangerous-rpath.patch

-----------------------------------------------+
 /PKGBUILD                                     |   92 ++++++++++++++++++++++++
 /remove-dangerous-rpath.patch                 |   22 +++++
 community-i686/PKGBUILD                       |   46 ------------
 community-i686/remove-dangerous-rpath.patch   |   11 --
 community-x86_64/PKGBUILD                     |   46 ------------
 community-x86_64/remove-dangerous-rpath.patch |   11 --
 6 files changed, 114 insertions(+), 114 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2014-08-22 15:36:25 UTC (rev 117772)
+++ community-i686/PKGBUILD	2014-08-22 15:36:56 UTC (rev 117773)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli <timothy.redaelli at gmail.com>
-# Contributor: Andy Weidenbaum <archbaum at gmail.com>
-
-pkgname=bfgminer
-pkgver=4.5.0
-pkgrel=1
-pkgdesc="Bitcoin miner featuring overclocking, monitoring, fan speed control and remote management. For FPGA/GPU/CPU Bitcoin mining."
-arch=('i686' 'x86_64')
-depends=('curl' 'jansson' 'libevent' 'libmicrohttpd' 'libusb' 'lm_sensors')
-makedepends=('uthash' 'yasm')
-optdepends=('opencl-nvidia: OpenCL implementation for NVIDIA')
-url='http://bfgminer.org/'
-license=('GPL3')
-source=(http://luke.dashjr.org/programs/bitcoin/files/$pkgname/$pkgver/$pkgname-$pkgver.txz
-        remove-dangerous-rpath.patch)
-sha256sums=('bba1768c9f18d627d3395ab6805903d2266a18a2b8c8e9022c7603f8e5093e65'
-            'd26d07ca23ae25798c4db37cfda1a6a76f22d06e73efab1ddf62b3e1a7eef04c')
-
-prepare() {
-  cd "$srcdir"/$pkgname-$pkgver
-
-  patch -p0 < "${srcdir}"/remove-dangerous-rpath.patch
-  NOSUBMODULES=1 ./autogen.sh
-}
-
-build() {
-  cd "$srcdir"/$pkgname-$pkgver
-
-  ./configure --prefix=/usr \
-    --sbindir=/usr/bin \
-    --enable-cpumining \
-    --enable-bfsb \
-    --enable-metabank \
-    --enable-scrypt \
-    --enable-opencl \
-    --with-udevrulesdir=/usr/lib/udev/rules.d
-  # --enable-knc (FS#33640)
-  make
-}
-
-package() {
-  cd "$srcdir"/$pkgname-$pkgver
-
-  make DESTDIR="$pkgdir" install
-}

Copied: bfgminer/repos/community-i686/PKGBUILD (from rev 117772, bfgminer/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2014-08-22 15:36:56 UTC (rev 117773)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Timothy Redaelli <timothy.redaelli at gmail.com>
+# Contributor: Andy Weidenbaum <archbaum at gmail.com>
+
+pkgname=bfgminer
+pkgver=4.7.0
+pkgrel=1
+pkgdesc="Bitcoin miner featuring overclocking, monitoring, fan speed control and remote management. For FPGA/GPU/CPU Bitcoin mining."
+arch=('i686' 'x86_64')
+depends=('curl' 'jansson' 'libevent' 'libmicrohttpd' 'libusb' 'lm_sensors')
+makedepends=('uthash' 'yasm')
+optdepends=('opencl-nvidia: OpenCL implementation for NVIDIA')
+url='http://bfgminer.org/'
+license=('GPL3')
+source=(http://luke.dashjr.org/programs/bitcoin/files/$pkgname/$pkgver/$pkgname-$pkgver.txz
+        remove-dangerous-rpath.patch)
+sha256sums=('044636103f2c399d8c0290e6642ef896cff43de3c025d99a1465e670337aeb0a'
+            'd26d07ca23ae25798c4db37cfda1a6a76f22d06e73efab1ddf62b3e1a7eef04c')
+
+prepare() {
+  cd "$srcdir"/$pkgname-$pkgver
+
+  patch -p0 < "${srcdir}"/remove-dangerous-rpath.patch
+  NOSUBMODULES=1 ./autogen.sh
+}
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+
+  ./configure --prefix=/usr \
+    --sbindir=/usr/bin \
+    --enable-cpumining \
+    --enable-bfsb \
+    --enable-metabank \
+    --enable-scrypt \
+    --enable-opencl \
+    --with-udevrulesdir=/usr/lib/udev/rules.d
+  # --enable-knc (FS#33640)
+  make
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver
+
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-i686/remove-dangerous-rpath.patch
===================================================================
--- community-i686/remove-dangerous-rpath.patch	2014-08-22 15:36:25 UTC (rev 117772)
+++ community-i686/remove-dangerous-rpath.patch	2014-08-22 15:36:56 UTC (rev 117773)
@@ -1,11 +0,0 @@
---- configure.ac.orig
-+++ configure.ac
-@@ -514,7 +514,7 @@
- 	])
- else
- 	libblkmaker_CFLAGS='-Ilibblkmaker'
--	libblkmaker_LDFLAGS='-Llibblkmaker/.libs -Wl,-rpath,\$$ORIGIN/libblkmaker/.libs'"$origin_LDFLAGS"
-+	libblkmaker_LDFLAGS='-Llibblkmaker/.libs'
- 	libblkmaker_LIBS='-lblkmaker_jansson-0.1 -lblkmaker-0.1'
- 	AC_CONFIG_SUBDIRS([libblkmaker])
- fi

Copied: bfgminer/repos/community-i686/remove-dangerous-rpath.patch (from rev 117772, bfgminer/trunk/remove-dangerous-rpath.patch)
===================================================================
--- community-i686/remove-dangerous-rpath.patch	                        (rev 0)
+++ community-i686/remove-dangerous-rpath.patch	2014-08-22 15:36:56 UTC (rev 117773)
@@ -0,0 +1,11 @@
+--- configure.ac.orig
++++ configure.ac
+@@ -514,7 +514,7 @@
+ 	])
+ else
+ 	libblkmaker_CFLAGS='-Ilibblkmaker'
+-	libblkmaker_LDFLAGS='-Llibblkmaker/.libs -Wl,-rpath,\$$ORIGIN/libblkmaker/.libs'"$origin_LDFLAGS"
++	libblkmaker_LDFLAGS='-Llibblkmaker/.libs'
+ 	libblkmaker_LIBS='-lblkmaker_jansson-0.1 -lblkmaker-0.1'
+ 	AC_CONFIG_SUBDIRS([libblkmaker])
+ fi

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2014-08-22 15:36:25 UTC (rev 117772)
+++ community-x86_64/PKGBUILD	2014-08-22 15:36:56 UTC (rev 117773)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli <timothy.redaelli at gmail.com>
-# Contributor: Andy Weidenbaum <archbaum at gmail.com>
-
-pkgname=bfgminer
-pkgver=4.5.0
-pkgrel=1
-pkgdesc="Bitcoin miner featuring overclocking, monitoring, fan speed control and remote management. For FPGA/GPU/CPU Bitcoin mining."
-arch=('i686' 'x86_64')
-depends=('curl' 'jansson' 'libevent' 'libmicrohttpd' 'libusb' 'lm_sensors')
-makedepends=('uthash' 'yasm')
-optdepends=('opencl-nvidia: OpenCL implementation for NVIDIA')
-url='http://bfgminer.org/'
-license=('GPL3')
-source=(http://luke.dashjr.org/programs/bitcoin/files/$pkgname/$pkgver/$pkgname-$pkgver.txz
-        remove-dangerous-rpath.patch)
-sha256sums=('bba1768c9f18d627d3395ab6805903d2266a18a2b8c8e9022c7603f8e5093e65'
-            'd26d07ca23ae25798c4db37cfda1a6a76f22d06e73efab1ddf62b3e1a7eef04c')
-
-prepare() {
-  cd "$srcdir"/$pkgname-$pkgver
-
-  patch -p0 < "${srcdir}"/remove-dangerous-rpath.patch
-  NOSUBMODULES=1 ./autogen.sh
-}
-
-build() {
-  cd "$srcdir"/$pkgname-$pkgver
-
-  ./configure --prefix=/usr \
-    --sbindir=/usr/bin \
-    --enable-cpumining \
-    --enable-bfsb \
-    --enable-metabank \
-    --enable-scrypt \
-    --enable-opencl \
-    --with-udevrulesdir=/usr/lib/udev/rules.d
-  # --enable-knc (FS#33640)
-  make
-}
-
-package() {
-  cd "$srcdir"/$pkgname-$pkgver
-
-  make DESTDIR="$pkgdir" install
-}

Copied: bfgminer/repos/community-x86_64/PKGBUILD (from rev 117772, bfgminer/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2014-08-22 15:36:56 UTC (rev 117773)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Timothy Redaelli <timothy.redaelli at gmail.com>
+# Contributor: Andy Weidenbaum <archbaum at gmail.com>
+
+pkgname=bfgminer
+pkgver=4.7.0
+pkgrel=1
+pkgdesc="Bitcoin miner featuring overclocking, monitoring, fan speed control and remote management. For FPGA/GPU/CPU Bitcoin mining."
+arch=('i686' 'x86_64')
+depends=('curl' 'jansson' 'libevent' 'libmicrohttpd' 'libusb' 'lm_sensors')
+makedepends=('uthash' 'yasm')
+optdepends=('opencl-nvidia: OpenCL implementation for NVIDIA')
+url='http://bfgminer.org/'
+license=('GPL3')
+source=(http://luke.dashjr.org/programs/bitcoin/files/$pkgname/$pkgver/$pkgname-$pkgver.txz
+        remove-dangerous-rpath.patch)
+sha256sums=('044636103f2c399d8c0290e6642ef896cff43de3c025d99a1465e670337aeb0a'
+            'd26d07ca23ae25798c4db37cfda1a6a76f22d06e73efab1ddf62b3e1a7eef04c')
+
+prepare() {
+  cd "$srcdir"/$pkgname-$pkgver
+
+  patch -p0 < "${srcdir}"/remove-dangerous-rpath.patch
+  NOSUBMODULES=1 ./autogen.sh
+}
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+
+  ./configure --prefix=/usr \
+    --sbindir=/usr/bin \
+    --enable-cpumining \
+    --enable-bfsb \
+    --enable-metabank \
+    --enable-scrypt \
+    --enable-opencl \
+    --with-udevrulesdir=/usr/lib/udev/rules.d
+  # --enable-knc (FS#33640)
+  make
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver
+
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-x86_64/remove-dangerous-rpath.patch
===================================================================
--- community-x86_64/remove-dangerous-rpath.patch	2014-08-22 15:36:25 UTC (rev 117772)
+++ community-x86_64/remove-dangerous-rpath.patch	2014-08-22 15:36:56 UTC (rev 117773)
@@ -1,11 +0,0 @@
---- configure.ac.orig
-+++ configure.ac
-@@ -514,7 +514,7 @@
- 	])
- else
- 	libblkmaker_CFLAGS='-Ilibblkmaker'
--	libblkmaker_LDFLAGS='-Llibblkmaker/.libs -Wl,-rpath,\$$ORIGIN/libblkmaker/.libs'"$origin_LDFLAGS"
-+	libblkmaker_LDFLAGS='-Llibblkmaker/.libs'
- 	libblkmaker_LIBS='-lblkmaker_jansson-0.1 -lblkmaker-0.1'
- 	AC_CONFIG_SUBDIRS([libblkmaker])
- fi

Copied: bfgminer/repos/community-x86_64/remove-dangerous-rpath.patch (from rev 117772, bfgminer/trunk/remove-dangerous-rpath.patch)
===================================================================
--- community-x86_64/remove-dangerous-rpath.patch	                        (rev 0)
+++ community-x86_64/remove-dangerous-rpath.patch	2014-08-22 15:36:56 UTC (rev 117773)
@@ -0,0 +1,11 @@
+--- configure.ac.orig
++++ configure.ac
+@@ -514,7 +514,7 @@
+ 	])
+ else
+ 	libblkmaker_CFLAGS='-Ilibblkmaker'
+-	libblkmaker_LDFLAGS='-Llibblkmaker/.libs -Wl,-rpath,\$$ORIGIN/libblkmaker/.libs'"$origin_LDFLAGS"
++	libblkmaker_LDFLAGS='-Llibblkmaker/.libs'
+ 	libblkmaker_LIBS='-lblkmaker_jansson-0.1 -lblkmaker-0.1'
+ 	AC_CONFIG_SUBDIRS([libblkmaker])
+ fi




More information about the arch-commits mailing list