till pushed to bfgminer (f22). "2015-04-13: Retired orphaned package, because it was orphaned for more than six weeks."

notifications at fedoraproject.org notifications at fedoraproject.org
Mon Apr 13 18:14:11 UTC 2015


>From 82a32e0df3f9e109665b6fdac39b5078087dc589 Mon Sep 17 00:00:00 2001
From: Till Maas <opensource at till.name>
Date: Mon, 13 Apr 2015 20:13:22 +0200
Subject: 2015-04-13: Retired orphaned package, because it was orphaned for
 more than six weeks.


diff --git a/.gitignore b/.gitignore
deleted file mode 100644
index 335bd7e..0000000
--- a/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-/bfgminer-3.3.0.tbz2
diff --git a/bfgminer-3.3.0-configure.patch b/bfgminer-3.3.0-configure.patch
deleted file mode 100644
index bb915e1..0000000
--- a/bfgminer-3.3.0-configure.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-diff -Naur bfgminer-3.3.0-orig/configure bfgminer-3.3.0/configure
---- bfgminer-3.3.0-orig/configure	2013-10-11 16:58:30.000000000 -0400
-+++ bfgminer-3.3.0/configure	2013-10-22 21:20:09.442054255 -0400
-@@ -10688,7 +10688,7 @@
- 	LDFLAGS="$save_LDFLAGS"
- 
- 	libblkmaker_CFLAGS='-Ilibblkmaker'
--	libblkmaker_LDFLAGS='-Llibblkmaker/.libs -Wl,-rpath,\$$ORIGIN/libblkmaker/.libs'"$origin_LDFLAGS"
-+	libblkmaker_LDFLAGS='-Llibblkmaker/.libs -Wl'"$origin_LDFLAGS"
- 	libblkmaker_LIBS='-lblkmaker_jansson-0.1 -lblkmaker-0.1'
- 
- 
-diff -Naur bfgminer-3.3.0-orig/configure.ac bfgminer-3.3.0/configure.ac
---- bfgminer-3.3.0-orig/configure.ac	2013-10-11 16:56:54.000000000 -0400
-+++ bfgminer-3.3.0/configure.ac	2013-10-22 21:20:30.134408387 -0400
-@@ -769,7 +769,7 @@
- 	LDFLAGS="$save_LDFLAGS"
- 	
- 	libblkmaker_CFLAGS='-Ilibblkmaker'
--	libblkmaker_LDFLAGS='-Llibblkmaker/.libs -Wl,-rpath,\$$ORIGIN/libblkmaker/.libs'"$origin_LDFLAGS"
-+	libblkmaker_LDFLAGS='-Llibblkmaker/.libs -Wl'"$origin_LDFLAGS"
- 	libblkmaker_LIBS='-lblkmaker_jansson-0.1 -lblkmaker-0.1'
- 	AC_CONFIG_SUBDIRS([libblkmaker])
- 	_ROOTPATH=$PATH$PATH_SEPARATOR`echo $PATH | sed s/bin/sbin/g`
diff --git a/bfgminer-3.3.0-privs.patch b/bfgminer-3.3.0-privs.patch
deleted file mode 100644
index 80d0346..0000000
--- a/bfgminer-3.3.0-privs.patch
+++ /dev/null
@@ -1,23 +0,0 @@
---- bfgminer-3.3.0-orig/miner.c	2013-10-11 16:56:54.000000000 -0400
-+++ bfgminer-3.3.0/miner.c	2013-10-22 21:55:26.665382403 -0400
-@@ -10281,14 +10281,18 @@
-                 if (chroot(chroot_dir) != 0) {
-                        quit(1, "Unable to chroot");
-                 }
-+		chdir("/");
-         }
- #endif
- 
- #ifdef HAVE_PWD_H
- 		if (user_info != NULL) {
--			if (setgid((*user_info).pw_gid) == 0 && setuid((*user_info).pw_uid) != 0) {
-+			if (setgid((*user_info).pw_gid) != 0)
-+				quit(1, "Unable to setgid");
-+			if (setgroups(0, NULL) != 0)
-+				quit(1, "Unable to setgroups");
-+			if (setuid((*user_info).pw_uid) != 0) 
- 				quit(1, "Unable to setuid");
--			}
- 		}
- #endif
- 	raise_fd_limits();
diff --git a/bfgminer.spec b/bfgminer.spec
deleted file mode 100644
index 7e19848..0000000
--- a/bfgminer.spec
+++ /dev/null
@@ -1,115 +0,0 @@
-Summary: A BitCoin miner
-Name: bfgminer
-Version: 3.3.0
-Release: 3%{?dist}
-Group: Applications/Internet
-License: GPLv3 and MIT
-URL: https://github.com/luke-jr/bfgminer
-Source0: http://luke.dashjr.org/programs/bitcoin/files/bfgminer/%{version}/%{name}-%{version}.tbz2
-Patch1: bfgminer-3.3.0-configure.patch
-Patch2: bfgminer-3.3.0-privs.patch
-# Some software is bundled:
-# ADL/ files are writteb by luke-jr+redhatbugs at utopios.org
-# CL/ files are tge official OpenCL 1.0 headers, opencl-headers causes failure
-# lib/ is gnulib snippets, allowed to be bundled as per:
-#      https://fedorahosted.org/fpc/ticket/174
-# libblkmaker/  could be decoupled into its own library, the configure
-#               command accepts --with-system-libblkmaker for such a case
-# Our devel package only contains libblkmaker headers and would than not be needed anymore
-Provides: bundled(gnulib)
-
-BuildRequires: libcurl-devel libusb-devel libudev-devel ncurses-devel
-BuildRequires: jansson-devel libtool uthash yasm
-BuildRequires: automake autoconf libtool pkgconfig
-BuildRequires: chrpath
-
-# BuildRequires: opencl-headers
-
-%description
-This is a multi-threaded multi-pool FPGA, GPU and CPU miner with ATI GPU
-monitoring, (over)clocking and fanspeed support for bitcoin and derivative
-coins.
-
-%package devel
-Summary: Development library and include files for bfgminer
-Group: Development/Libraries
-Requires: %{name}%{?_isa} = %{version}-%{release}
-
-%description devel
-The devel package contains the library and include files.
-
-%prep
-%setup -q
-# TODO: use opencl-headers instead - currently fails to compile
-#rm -rf CL
-#ln -s /usr/include/CL
-
-%patch1 -p1
-%patch2 -p1
-
-NOSUBMODULES=1 ./autogen.sh
-
-%build
-%configure --enable-cpumining --enable-scrypt --disable-rpath --disable-static --disable-silent-rules
-sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libblkmaker/libtool
-sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libblkmaker/libtool
-
-make %{?_smp_mflags} CFLAGS="$RPM_OPT_FLAGS"
-cp ./libblkmaker/COPYING COPYING_libblkmaker
-
-%install
-
-%makeinstall INSTALLCMD='install -p' INSTALLMAN='install -p'
-rm $RPM_BUILD_ROOT%{_libdir}/*.la
-rm -r $RPM_BUILD_ROOT%{_docdir}/bfgminer
-rm api-example.o
-
-%files
-%doc LICENSE COPYING_* 
-%doc COPYING_libblkmaker NEWS README README.* AUTHORS HACKING
-%doc example.conf api-example.*
-%{_bindir}/bfgminer
-%{_bindir}/bfgminer-rpc
-%{_bindir}/bitforce-firmware-flash
-%{_libdir}/libblkmaker*.so.*
-%dir %{_datadir}/bfgminer
-# firmware binary blobs going in separate package, see README.FPGA
-#{_datadir}/bfgminer/bitstreams/*.b*
-%dir %{_datadir}/bfgminer
-%{_datadir}/bfgminer/opencl/*.cl
-
-%files devel
-%dir %{_includedir}/libblkmaker-0.1
-%{_includedir}/libblkmaker-0.1/*.h
-%{_libdir}/libblkmaker-0.1.so
-%{_libdir}/libblkmaker_jansson-0.1.so
-%{_libdir}/pkgconfig/libblkmaker_jansson-0.1.pc
-
-%post -p /sbin/ldconfig
-
-%postun -p /sbin/ldconfig
-
-%changelog
-* Fri Aug 15 2014 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 3.3.0-3
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
-
-* Sat Jun 07 2014 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 3.3.0-2
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
-
-* Tue Oct 22 2013 Paul Wouters <pwouters at redhat.com> - 3.3.0-1
-- Updated to 3.3.0
-- Fix rpath with patchlet and sed
-- Fix missing-call-to-setgroups-before-setuid in bfgminer
-- Fix missing-call-to-chdir-with-chroot in bfgminer
-
-* Tue Oct 22 2013 Paul Wouters <pwouters at redhat.com> - 3.1.3-3
-- Remove rpaths in libraries and binaries
-
-* Mon Oct 21 2013 Paul Wouters <pwouters at redhat.com> - 3.1.3-2
-- Fixed version number in changelog
-- Removed accidental install of api-example.o
-- Run ldconfig in post and postun
-- Make devel depend on arch
-
-* Fri Jul 26 2013 Paul Wouters <pwouters at redhat.com> - 3.1.3-1
-- Initial package for review
diff --git a/dead.package b/dead.package
new file mode 100644
index 0000000..9263c07
--- /dev/null
+++ b/dead.package
@@ -0,0 +1,2 @@
+2015-04-13: Retired orphaned package, because it was orphaned for more than six weeks.
+
diff --git a/sources b/sources
deleted file mode 100644
index ab0549c..0000000
--- a/sources
+++ /dev/null
@@ -1 +0,0 @@
-cb76145e8187bc5ebceec08fdb979a1a  bfgminer-3.3.0.tbz2
-- 
cgit v0.10.2


	http://pkgs.fedoraproject.org/cgit/bfgminer.git/commit/?h=f22&id=82a32e0df3f9e109665b6fdac39b5078087dc589


More information about the scm-commits mailing list