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

Timothy Redaelli tredaelli at nymeria.archlinux.org
Wed Jun 19 11:32:54 UTC 2013


    Date: Wednesday, June 19, 2013 @ 13:32:54
  Author: tredaelli
Revision: 92927

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

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

-----------------------------------------------+
 /PKGBUILD                                     |   78 +++++++++++++++++++
 /remove-dangerous-rpath.patch                 |   22 +++++
 community-i686/PKGBUILD                       |   39 ---------
 community-i686/change-kernel-path.patch       |   98 ------------------------
 community-i686/remove-dangerous-rpath.patch   |   11 --
 community-x86_64/PKGBUILD                     |   39 ---------
 community-x86_64/change-kernel-path.patch     |   98 ------------------------
 community-x86_64/remove-dangerous-rpath.patch |   11 --
 8 files changed, 100 insertions(+), 296 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2013-06-19 11:32:21 UTC (rev 92926)
+++ community-i686/PKGBUILD	2013-06-19 11:32:54 UTC (rev 92927)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli <timothy.redaelli at gmail.com>
-# Contributor: Andy Weidenbaum <archbaum at gmail.com>
-
-pkgname=bfgminer
-pkgver=3.0.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')
-optdepends=('opencl-nvidia: OpenCL implementation for NVIDIA'
-            'opencl-catalyst: OpenCL implementation for AMD')
-url='https://bitcointalk.org/index.php?topic=168174.0'
-license=('GPL3')
-options=(!libtool)
-source=(http://luke.dashjr.org/programs/bitcoin/files/$pkgname/$pkgver/$pkgname-$pkgver.tbz2
-        change-kernel-path.patch
-        remove-dangerous-rpath.patch)
-sha256sums=('86f7f977ed57b8d61c728f88a3e5962aa1df0723d667c45b1e1bfa5152292400'
-            'a551f73a430809a9b13bb535a503d24f8fd6d35a07bc579b5616d270a1bbf369'
-            '2c6d09a5e567f5099c9b117415013bf28e7b7aa75c436515d28bc7640f905db2')
-
-[[ "$CARCH" == "x86_64" ]] && makedepends+=('yasm')
-
-build() {
-  cd "$srcdir"/$pkgname-$pkgver
-
-  patch -p0 < "${srcdir}"/change-kernel-path.patch
-  patch -p0 < "${srcdir}"/remove-dangerous-rpath.patch
-  autoreconf -fi
-  ./configure --prefix=/usr --enable-cpumining --enable-scrypt
-  make
-}
-
-package() {
-  cd "$srcdir"/$pkgname-$pkgver
-
-  make DESTDIR="$pkgdir" install
-}

Copied: bfgminer/repos/community-i686/PKGBUILD (from rev 92926, bfgminer/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2013-06-19 11:32:54 UTC (rev 92927)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Timothy Redaelli <timothy.redaelli at gmail.com>
+# Contributor: Andy Weidenbaum <archbaum at gmail.com>
+
+pkgname=bfgminer
+pkgver=3.1.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' 'libusbx' 'lm_sensors')
+makedepends=('uthash' 'yasm')
+optdepends=('opencl-nvidia: OpenCL implementation for NVIDIA')
+url='https://bitcointalk.org/index.php?topic=168174.0'
+license=('GPL3')
+options=(!libtool)
+source=(http://luke.dashjr.org/programs/bitcoin/files/$pkgname/$pkgver/$pkgname-$pkgver.tbz2
+        remove-dangerous-rpath.patch)
+sha256sums=('2f0537c361c1e2e41afff788d7a10e527a555c8d1d63f7997b3fa29afcdf4c19'
+            'c47eb443b870262e3e1a5d6441a06f72c9ca06c0abae459ab577a3f289a91e7a')
+
+prepare() {
+  cd "$srcdir"/$pkgname-$pkgver
+
+  patch -p0 < "${srcdir}"/remove-dangerous-rpath.patch
+  NOSUBMODULES=1 ./autogen.sh
+}
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+
+  ./configure --prefix=/usr --enable-cpumining --enable-scrypt
+  make
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver
+
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-i686/change-kernel-path.patch
===================================================================
--- community-i686/change-kernel-path.patch	2013-06-19 11:32:21 UTC (rev 92926)
+++ community-i686/change-kernel-path.patch	2013-06-19 11:32:54 UTC (rev 92927)
@@ -1,98 +0,0 @@
---- /dev/null
-+++ m4/as-ac-expand.m4
-@@ -0,0 +1,49 @@
-+dnl as-ac-expand.m4 0.2.1
-+dnl autostars m4 macro for expanding directories using configure's prefix
-+dnl thomas at apestaart.org
-+
-+dnl AS_AC_EXPAND(VAR, CONFIGURE_VAR)
-+dnl example
-+dnl AS_AC_EXPAND(SYSCONFDIR, $sysconfdir)
-+dnl will set SYSCONFDIR to /usr/local/etc if prefix=/usr/local
-+dnl Note: when using $prefix or $exec_prefix, avoid it expanding to NONE
-+dnl by calling it like this:
-+dnl AS_AC_EXPAND(PYTHONLIBDIR, "\${exec_prefix}/lib/python$PYVER/site-packages")
-+
-+AC_DEFUN([AS_AC_EXPAND],
-+[
-+  EXP_VAR=[$1]
-+  FROM_VAR=[$2]
-+
-+  dnl echo DEBUG: expand FROM_VAR $FROM_VAR
-+
-+  dnl first expand prefix and exec_prefix if necessary
-+  prefix_save=$prefix
-+  exec_prefix_save=$exec_prefix
-+
-+  dnl if no prefix given, then use /usr/local, the default prefix
-+  if test "x$prefix" = "xNONE"; then
-+    prefix="$ac_default_prefix"
-+  fi
-+  dnl if no exec_prefix given, then use prefix
-+  if test "x$exec_prefix" = "xNONE"; then
-+    exec_prefix=$prefix
-+  fi
-+
-+  full_var="$FROM_VAR"
-+  dnl loop until it doesn't change anymore
-+  while true; do
-+    dnl echo DEBUG: full_var: $full_var
-+    new_full_var="`eval echo $full_var`"
-+    if test "x$new_full_var" = "x$full_var"; then break; fi
-+    full_var=$new_full_var
-+  done
-+
-+  dnl clean up
-+  full_var=$new_full_var
-+  AC_SUBST([$1], "$full_var")
-+
-+  dnl restore prefix and exec_prefix
-+  prefix=$prefix_save
-+  exec_prefix=$exec_prefix_save
-+])
---- configure.ac.orig
-+++ configure.ac
-@@ -655,7 +655,8 @@
- 	prefix=/usr/local
- fi
- 
--AC_DEFINE_UNQUOTED([CGMINER_PREFIX], ["$prefix/bin"], [Path to bfgminer install])
-+AS_AC_EXPAND(DATAROOTDIR, $datarootdir)
-+AC_DEFINE_UNQUOTED([CGMINER_PREFIX], ["$DATAROOTDIR/bfgminer"], [Path to bfgminer install])
- 
- AC_DEFINE_UNQUOTED([PHATK_KERNNAME], ["phatk121016"], [Filename for phatk kernel])
- AC_DEFINE_UNQUOTED([POCLBM_KERNNAME], ["poclbm121016"], [Filename for poclbm kernel])
---- Makefile.am.orig
-+++ Makefile.am
-@@ -13,7 +13,7 @@
- 
- bin_PROGRAMS	= bfgminer
- 
--bin_SCRIPTS	= *.cl
-+pkgdata_SCRIPTS	= *.cl
- 
- bfgminer_LDFLAGS	= $(PTHREAD_FLAGS)
- bfgminer_LDADD	= $(DLOPEN_FLAGS) @LIBCURL_LIBS@ @JANSSON_LIBS@ @PTHREAD_LIBS@ \
-@@ -117,19 +117,19 @@
- 
- if HAS_MODMINER
- bfgminer_SOURCES += driver-modminer.c
--bitstreamsdir = $(bindir)/bitstreams
-+bitstreamsdir = $(pkgdatadir)/bitstreams
- dist_bitstreams_DATA = bitstreams/*
- endif
- 
- if HAS_X6500
- bfgminer_SOURCES += driver-x6500.c ft232r.c ft232r.h jtag.c jtag.h
--bitstreamsdir = $(bindir)/bitstreams
-+bitstreamsdir = $(pkgdatadir)/bitstreams
- dist_bitstreams_DATA = bitstreams/*
- endif
- 
- if HAS_ZTEX
- bfgminer_SOURCES += driver-ztex.c libztex.c libztex.h
--bitstreamsdir = $(bindir)/bitstreams
-+bitstreamsdir = $(pkgdatadir)/bitstreams
- dist_bitstreams_DATA = bitstreams/*
- endif
- 

Deleted: community-i686/remove-dangerous-rpath.patch
===================================================================
--- community-i686/remove-dangerous-rpath.patch	2013-06-19 11:32:21 UTC (rev 92926)
+++ community-i686/remove-dangerous-rpath.patch	2013-06-19 11:32:54 UTC (rev 92927)
@@ -1,11 +0,0 @@
---- Makefile.am.orig
-+++ Makefile.am
-@@ -38,7 +38,7 @@
- if NEED_LIBBLKMAKER
- SUBDIRS           += libblkmaker
- bfgminer_CPPFLAGS += -Ilibblkmaker
--bfgminer_LDFLAGS  += -Llibblkmaker/.libs -Wl,-rpath,libblkmaker/.libs
-+bfgminer_LDFLAGS  += -Llibblkmaker/.libs
- bfgminer_LDADD    += -lblkmaker_jansson-0.1 -lblkmaker-0.1
- 
- if HAVE_CYGWIN

Copied: bfgminer/repos/community-i686/remove-dangerous-rpath.patch (from rev 92926, bfgminer/trunk/remove-dangerous-rpath.patch)
===================================================================
--- community-i686/remove-dangerous-rpath.patch	                        (rev 0)
+++ community-i686/remove-dangerous-rpath.patch	2013-06-19 11:32:54 UTC (rev 92927)
@@ -0,0 +1,11 @@
+--- configure.ac.orig
++++ configure.ac
+@@ -514,7 +514,7 @@
+ 	])
+ else
+ 	libblkmaker_CFLAGS='-Ilibblkmaker'
+-	libblkmaker_LDFLAGS='-Llibblkmaker/.libs -Wl,-rpath,libblkmaker/.libs'
++	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	2013-06-19 11:32:21 UTC (rev 92926)
+++ community-x86_64/PKGBUILD	2013-06-19 11:32:54 UTC (rev 92927)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli <timothy.redaelli at gmail.com>
-# Contributor: Andy Weidenbaum <archbaum at gmail.com>
-
-pkgname=bfgminer
-pkgver=3.0.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')
-optdepends=('opencl-nvidia: OpenCL implementation for NVIDIA'
-            'opencl-catalyst: OpenCL implementation for AMD')
-url='https://bitcointalk.org/index.php?topic=168174.0'
-license=('GPL3')
-options=(!libtool)
-source=(http://luke.dashjr.org/programs/bitcoin/files/$pkgname/$pkgver/$pkgname-$pkgver.tbz2
-        change-kernel-path.patch
-        remove-dangerous-rpath.patch)
-sha256sums=('86f7f977ed57b8d61c728f88a3e5962aa1df0723d667c45b1e1bfa5152292400'
-            'a551f73a430809a9b13bb535a503d24f8fd6d35a07bc579b5616d270a1bbf369'
-            '2c6d09a5e567f5099c9b117415013bf28e7b7aa75c436515d28bc7640f905db2')
-
-[[ "$CARCH" == "x86_64" ]] && makedepends+=('yasm')
-
-build() {
-  cd "$srcdir"/$pkgname-$pkgver
-
-  patch -p0 < "${srcdir}"/change-kernel-path.patch
-  patch -p0 < "${srcdir}"/remove-dangerous-rpath.patch
-  autoreconf -fi
-  ./configure --prefix=/usr --enable-cpumining --enable-scrypt
-  make
-}
-
-package() {
-  cd "$srcdir"/$pkgname-$pkgver
-
-  make DESTDIR="$pkgdir" install
-}

Copied: bfgminer/repos/community-x86_64/PKGBUILD (from rev 92926, bfgminer/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2013-06-19 11:32:54 UTC (rev 92927)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Timothy Redaelli <timothy.redaelli at gmail.com>
+# Contributor: Andy Weidenbaum <archbaum at gmail.com>
+
+pkgname=bfgminer
+pkgver=3.1.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' 'libusbx' 'lm_sensors')
+makedepends=('uthash' 'yasm')
+optdepends=('opencl-nvidia: OpenCL implementation for NVIDIA')
+url='https://bitcointalk.org/index.php?topic=168174.0'
+license=('GPL3')
+options=(!libtool)
+source=(http://luke.dashjr.org/programs/bitcoin/files/$pkgname/$pkgver/$pkgname-$pkgver.tbz2
+        remove-dangerous-rpath.patch)
+sha256sums=('2f0537c361c1e2e41afff788d7a10e527a555c8d1d63f7997b3fa29afcdf4c19'
+            'c47eb443b870262e3e1a5d6441a06f72c9ca06c0abae459ab577a3f289a91e7a')
+
+prepare() {
+  cd "$srcdir"/$pkgname-$pkgver
+
+  patch -p0 < "${srcdir}"/remove-dangerous-rpath.patch
+  NOSUBMODULES=1 ./autogen.sh
+}
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+
+  ./configure --prefix=/usr --enable-cpumining --enable-scrypt
+  make
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver
+
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-x86_64/change-kernel-path.patch
===================================================================
--- community-x86_64/change-kernel-path.patch	2013-06-19 11:32:21 UTC (rev 92926)
+++ community-x86_64/change-kernel-path.patch	2013-06-19 11:32:54 UTC (rev 92927)
@@ -1,98 +0,0 @@
---- /dev/null
-+++ m4/as-ac-expand.m4
-@@ -0,0 +1,49 @@
-+dnl as-ac-expand.m4 0.2.1
-+dnl autostars m4 macro for expanding directories using configure's prefix
-+dnl thomas at apestaart.org
-+
-+dnl AS_AC_EXPAND(VAR, CONFIGURE_VAR)
-+dnl example
-+dnl AS_AC_EXPAND(SYSCONFDIR, $sysconfdir)
-+dnl will set SYSCONFDIR to /usr/local/etc if prefix=/usr/local
-+dnl Note: when using $prefix or $exec_prefix, avoid it expanding to NONE
-+dnl by calling it like this:
-+dnl AS_AC_EXPAND(PYTHONLIBDIR, "\${exec_prefix}/lib/python$PYVER/site-packages")
-+
-+AC_DEFUN([AS_AC_EXPAND],
-+[
-+  EXP_VAR=[$1]
-+  FROM_VAR=[$2]
-+
-+  dnl echo DEBUG: expand FROM_VAR $FROM_VAR
-+
-+  dnl first expand prefix and exec_prefix if necessary
-+  prefix_save=$prefix
-+  exec_prefix_save=$exec_prefix
-+
-+  dnl if no prefix given, then use /usr/local, the default prefix
-+  if test "x$prefix" = "xNONE"; then
-+    prefix="$ac_default_prefix"
-+  fi
-+  dnl if no exec_prefix given, then use prefix
-+  if test "x$exec_prefix" = "xNONE"; then
-+    exec_prefix=$prefix
-+  fi
-+
-+  full_var="$FROM_VAR"
-+  dnl loop until it doesn't change anymore
-+  while true; do
-+    dnl echo DEBUG: full_var: $full_var
-+    new_full_var="`eval echo $full_var`"
-+    if test "x$new_full_var" = "x$full_var"; then break; fi
-+    full_var=$new_full_var
-+  done
-+
-+  dnl clean up
-+  full_var=$new_full_var
-+  AC_SUBST([$1], "$full_var")
-+
-+  dnl restore prefix and exec_prefix
-+  prefix=$prefix_save
-+  exec_prefix=$exec_prefix_save
-+])
---- configure.ac.orig
-+++ configure.ac
-@@ -655,7 +655,8 @@
- 	prefix=/usr/local
- fi
- 
--AC_DEFINE_UNQUOTED([CGMINER_PREFIX], ["$prefix/bin"], [Path to bfgminer install])
-+AS_AC_EXPAND(DATAROOTDIR, $datarootdir)
-+AC_DEFINE_UNQUOTED([CGMINER_PREFIX], ["$DATAROOTDIR/bfgminer"], [Path to bfgminer install])
- 
- AC_DEFINE_UNQUOTED([PHATK_KERNNAME], ["phatk121016"], [Filename for phatk kernel])
- AC_DEFINE_UNQUOTED([POCLBM_KERNNAME], ["poclbm121016"], [Filename for poclbm kernel])
---- Makefile.am.orig
-+++ Makefile.am
-@@ -13,7 +13,7 @@
- 
- bin_PROGRAMS	= bfgminer
- 
--bin_SCRIPTS	= *.cl
-+pkgdata_SCRIPTS	= *.cl
- 
- bfgminer_LDFLAGS	= $(PTHREAD_FLAGS)
- bfgminer_LDADD	= $(DLOPEN_FLAGS) @LIBCURL_LIBS@ @JANSSON_LIBS@ @PTHREAD_LIBS@ \
-@@ -117,19 +117,19 @@
- 
- if HAS_MODMINER
- bfgminer_SOURCES += driver-modminer.c
--bitstreamsdir = $(bindir)/bitstreams
-+bitstreamsdir = $(pkgdatadir)/bitstreams
- dist_bitstreams_DATA = bitstreams/*
- endif
- 
- if HAS_X6500
- bfgminer_SOURCES += driver-x6500.c ft232r.c ft232r.h jtag.c jtag.h
--bitstreamsdir = $(bindir)/bitstreams
-+bitstreamsdir = $(pkgdatadir)/bitstreams
- dist_bitstreams_DATA = bitstreams/*
- endif
- 
- if HAS_ZTEX
- bfgminer_SOURCES += driver-ztex.c libztex.c libztex.h
--bitstreamsdir = $(bindir)/bitstreams
-+bitstreamsdir = $(pkgdatadir)/bitstreams
- dist_bitstreams_DATA = bitstreams/*
- endif
- 

Deleted: community-x86_64/remove-dangerous-rpath.patch
===================================================================
--- community-x86_64/remove-dangerous-rpath.patch	2013-06-19 11:32:21 UTC (rev 92926)
+++ community-x86_64/remove-dangerous-rpath.patch	2013-06-19 11:32:54 UTC (rev 92927)
@@ -1,11 +0,0 @@
---- Makefile.am.orig
-+++ Makefile.am
-@@ -38,7 +38,7 @@
- if NEED_LIBBLKMAKER
- SUBDIRS           += libblkmaker
- bfgminer_CPPFLAGS += -Ilibblkmaker
--bfgminer_LDFLAGS  += -Llibblkmaker/.libs -Wl,-rpath,libblkmaker/.libs
-+bfgminer_LDFLAGS  += -Llibblkmaker/.libs
- bfgminer_LDADD    += -lblkmaker_jansson-0.1 -lblkmaker-0.1
- 
- if HAVE_CYGWIN

Copied: bfgminer/repos/community-x86_64/remove-dangerous-rpath.patch (from rev 92926, bfgminer/trunk/remove-dangerous-rpath.patch)
===================================================================
--- community-x86_64/remove-dangerous-rpath.patch	                        (rev 0)
+++ community-x86_64/remove-dangerous-rpath.patch	2013-06-19 11:32:54 UTC (rev 92927)
@@ -0,0 +1,11 @@
+--- configure.ac.orig
++++ configure.ac
+@@ -514,7 +514,7 @@
+ 	])
+ else
+ 	libblkmaker_CFLAGS='-Ilibblkmaker'
+-	libblkmaker_LDFLAGS='-Llibblkmaker/.libs -Wl,-rpath,libblkmaker/.libs'
++	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