From 5cd823a20ac41c3b8c7a77aa81ac829e2f82870f Mon Sep 17 00:00:00 2001 From: Adam Miller Date: Tue, 21 Apr 2009 16:32:10 +0000 Subject: [PATCH 01/27] Fixed the debuginfo issue --- import.log | 1 + shed-1.15-configure_cflags.patch | 11 +++++++++++ shed-1.15-makefile_in.patch | 32 ++++++++++++++++++++++++++++++++ shed.spec | 16 +++++++++++++++- 4 files changed, 59 insertions(+), 1 deletion(-) create mode 100644 shed-1.15-configure_cflags.patch create mode 100644 shed-1.15-makefile_in.patch diff --git a/import.log b/import.log index e1f7a87..7151cc2 100644 --- a/import.log +++ b/import.log @@ -1,3 +1,4 @@ shed-1_13-2:HEAD:shed-1.13-2.src.rpm:1225481433 shed-1_14-1:HEAD:shed-1.14-1.src.rpm:1227821254 shed-1_15-1:HEAD:shed-1.15-1.src.rpm:1239650206 +shed-1_15-3:HEAD:shed-1.15-3.src.rpm:1240331396 diff --git a/shed-1.15-configure_cflags.patch b/shed-1.15-configure_cflags.patch new file mode 100644 index 0000000..7a1e7c9 --- /dev/null +++ b/shed-1.15-configure_cflags.patch @@ -0,0 +1,11 @@ +--- configure 2009-03-24 08:42:37.000000000 -0500 ++++ configure.patched 2009-04-21 11:13:11.000000000 -0500 +@@ -3367,7 +3367,7 @@ + + test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' + +-CFLAGS="-Wall" ++CFLAGS="$CFLAGS -Wall" + + + # Check whether --enable-debug was given. diff --git a/shed-1.15-makefile_in.patch b/shed-1.15-makefile_in.patch new file mode 100644 index 0000000..84ad676 --- /dev/null +++ b/shed-1.15-makefile_in.patch @@ -0,0 +1,32 @@ +--- Makefile.in 2009-04-20 13:24:18.000000000 -0500 ++++ Makefile.in.patched 2009-04-20 13:20:53.000000000 -0500 +@@ -34,7 +34,7 @@ + subdir = . + DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \ + $(srcdir)/Makefile.in $(top_srcdir)/configure AUTHORS COPYING \ +- ChangeLog INSTALL NEWS TODO depcomp install-sh missing ++ ChangeLog INSTALL NEWS TODO depcomp missing + ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 + am__aclocal_m4_deps = $(top_srcdir)/configure.in + am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ +@@ -489,11 +489,6 @@ + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + + installcheck: installcheck-am +-install-strip: +- $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ +- install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ +- `test -z '$(STRIP)' || \ +- echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install + mostlyclean-generic: + + clean-generic: +@@ -566,7 +561,7 @@ + + uninstall-man: uninstall-man1 + +-.MAKE: install-am install-strip ++.MAKE: install-am + + .PHONY: CTAGS GTAGS all all-am am--refresh check check-am clean \ + clean-binPROGRAMS clean-generic ctags dist dist-all dist-bzip2 \ diff --git a/shed.spec b/shed.spec index 494ad17..0bc710a 100644 --- a/shed.spec +++ b/shed.spec @@ -1,12 +1,15 @@ Name: shed Version: 1.15 -Release: 1%{?dist} +Release: 3%{?dist} Summary: Easy to use hex editor Group: Applications/Editors License: GPLv2+ URL: http://shed.sourceforge.net/ Source0: http://master.dl.sourceforge.net/shed/%{name}-%{version}.tar.gz +Patch0: shed-1.15-makefile_in.patch +Patch1: shed-1.15-configure_cflags.patch + BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root BuildRequires: ncurses-devel @@ -18,6 +21,8 @@ with a friendly pico-style interface. %prep %setup -q +%patch0 -p0 +%patch1 -p0 %build %configure @@ -40,6 +45,12 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Apr 21 2009 Adam Miller - 1.15-3 +- Patched the configure cflags + +* Mon Apr 20 2009 Adam Miller - 1.15-2 +- Fixed debuginfo issue, patched Makefile.in to not strip + * Mon Apr 13 2009 Adam Miller - 1.15-1 - New upstream release. @@ -48,10 +59,13 @@ rm -rf $RPM_BUILD_ROOT * Thu Nov 27 2008 Adam Miller - 1.14-1 - New upstream release. + * Sun Nov 02 2008 Adam Miller - 1.13-3 - Fixed the license listing for the project. + * Wed Oct 29 2008 Adam Miller - 1.13-2 - Fixed issues that were brought to my attention from package review - Typo in download, removed chmod, added changelog, incremented release + * Fri Oct 24 2008 Adam Miller - 1.13-1 - First build of shed for fedora From 197eccff205b3dd243cab2fe7de924e2ac28f752 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Mon, 27 Jul 2009 04:16:29 +0000 Subject: [PATCH 02/27] - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild --- shed.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/shed.spec b/shed.spec index 0bc710a..f3d16db 100644 --- a/shed.spec +++ b/shed.spec @@ -1,6 +1,6 @@ Name: shed Version: 1.15 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Easy to use hex editor Group: Applications/Editors @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.15-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 21 2009 Adam Miller - 1.15-3 - Patched the configure cflags From 47be1dd6b95d7897959d996ad61d4ceed86e2c80 Mon Sep 17 00:00:00 2001 From: Adam Miller Date: Mon, 10 Aug 2009 16:36:30 +0000 Subject: [PATCH 03/27] Fixed source0 as per https://www.redhat.com/archives/fedora-devel-list/2009-August/msg00591. html --- shed.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/shed.spec b/shed.spec index f3d16db..470a0d9 100644 --- a/shed.spec +++ b/shed.spec @@ -1,12 +1,12 @@ Name: shed Version: 1.15 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Easy to use hex editor Group: Applications/Editors License: GPLv2+ URL: http://shed.sourceforge.net/ -Source0: http://master.dl.sourceforge.net/shed/%{name}-%{version}.tar.gz +Source0: http://downloads.sourceforge.net/shed/%{name}-%{version}.tar.gz Patch0: shed-1.15-makefile_in.patch Patch1: shed-1.15-configure_cflags.patch @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Aug 10 2009 Adam Miller - 1.15-5 +- Fixed Source0 as per https://www.redhat.com/archives/fedora-devel-list/2009-August/msg00591.html + * Sun Jul 26 2009 Fedora Release Engineering - 1.15-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From 9f8641ba99535a78184097c888f0ed469a5ffa3c Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Wed, 25 Nov 2009 23:15:30 +0000 Subject: [PATCH 04/27] Fix typo that causes a failure to update the common directory. (releng #2781) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 99ca2a0..2d6f27d 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ # Makefile for source rpm: shed -# $Id$ +# $Id: Makefile,v 1.1 2008/10/31 17:01:25 kevin Exp $ NAME := shed SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done +for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) From 49cda6b11112dea8f9062a22c19f40408ff7ead3 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 12:44:08 +0000 Subject: [PATCH 05/27] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- import.log | 4 ---- 3 files changed, 25 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 import.log diff --git a/.cvsignore b/.gitignore similarity index 100% rename from .cvsignore rename to .gitignore diff --git a/Makefile b/Makefile deleted file mode 100644 index 2d6f27d..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: shed -# $Id: Makefile,v 1.1 2008/10/31 17:01:25 kevin Exp $ -NAME := shed -SPECFILE = $(firstword $(wildcard *.spec)) - -define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done -endef - -MAKEFILE_COMMON := $(shell $(find-makefile-common)) - -ifeq ($(MAKEFILE_COMMON),) -# attept a checkout -define checkout-makefile-common -test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 -endef - -MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) -endif - -include $(MAKEFILE_COMMON) diff --git a/import.log b/import.log deleted file mode 100644 index 7151cc2..0000000 --- a/import.log +++ /dev/null @@ -1,4 +0,0 @@ -shed-1_13-2:HEAD:shed-1.13-2.src.rpm:1225481433 -shed-1_14-1:HEAD:shed-1.14-1.src.rpm:1227821254 -shed-1_15-1:HEAD:shed-1.15-1.src.rpm:1239650206 -shed-1_15-3:HEAD:shed-1.15-3.src.rpm:1240331396 From 1f3d240d106b9091b23f93780bc2731b1a11dd01 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 9 Feb 2011 07:34:00 -0600 Subject: [PATCH 06/27] - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild --- shed.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/shed.spec b/shed.spec index 470a0d9..1e46b80 100644 --- a/shed.spec +++ b/shed.spec @@ -1,6 +1,6 @@ Name: shed Version: 1.15 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Easy to use hex editor Group: Applications/Editors @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Feb 09 2011 Fedora Release Engineering - 1.15-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + * Mon Aug 10 2009 Adam Miller - 1.15-5 - Fixed Source0 as per https://www.redhat.com/archives/fedora-devel-list/2009-August/msg00591.html From ecdef0cb5722e413040003cc72c3d0a5a5acb441 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 13 Jan 2012 21:53:44 -0600 Subject: [PATCH 07/27] - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild --- shed.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/shed.spec b/shed.spec index 1e46b80..465ebb0 100644 --- a/shed.spec +++ b/shed.spec @@ -1,6 +1,6 @@ Name: shed Version: 1.15 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Easy to use hex editor Group: Applications/Editors @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jan 14 2012 Fedora Release Engineering - 1.15-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + * Wed Feb 09 2011 Fedora Release Engineering - 1.15-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild From e13538a35c7c8301d38fc5a136f150306b67ed18 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 21 Jul 2012 14:31:26 -0500 Subject: [PATCH 08/27] - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild --- shed.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/shed.spec b/shed.spec index 465ebb0..654de92 100644 --- a/shed.spec +++ b/shed.spec @@ -1,6 +1,6 @@ Name: shed Version: 1.15 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Easy to use hex editor Group: Applications/Editors @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 21 2012 Fedora Release Engineering - 1.15-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + * Sat Jan 14 2012 Fedora Release Engineering - 1.15-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild From b700fe3ec769b5c4693eff0290e877688bbe9674 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 14 Feb 2013 17:51:59 -0600 Subject: [PATCH 09/27] - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild --- shed.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/shed.spec b/shed.spec index 654de92..61fce8e 100644 --- a/shed.spec +++ b/shed.spec @@ -1,6 +1,6 @@ Name: shed Version: 1.15 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Easy to use hex editor Group: Applications/Editors @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Feb 14 2013 Fedora Release Engineering - 1.15-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + * Sat Jul 21 2012 Fedora Release Engineering - 1.15-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild From 711d9e6d77062ac51bfacdb7e31f70e3ea35860d Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sun, 4 Aug 2013 09:20:14 -0500 Subject: [PATCH 10/27] - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild --- shed.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/shed.spec b/shed.spec index 61fce8e..02b5e66 100644 --- a/shed.spec +++ b/shed.spec @@ -1,6 +1,6 @@ Name: shed Version: 1.15 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Easy to use hex editor Group: Applications/Editors @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Aug 04 2013 Fedora Release Engineering - 1.15-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + * Thu Feb 14 2013 Fedora Release Engineering - 1.15-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild From 29998b85e41b5544ac3075bd5871d4b6efadf49b Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sun, 8 Jun 2014 01:15:58 -0500 Subject: [PATCH 11/27] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild --- shed.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/shed.spec b/shed.spec index 02b5e66..779a003 100644 --- a/shed.spec +++ b/shed.spec @@ -1,6 +1,6 @@ Name: shed Version: 1.15 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Easy to use hex editor Group: Applications/Editors @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jun 08 2014 Fedora Release Engineering - 1.15-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + * Sun Aug 04 2013 Fedora Release Engineering - 1.15-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild From 13eff320c2dbfc2e9344d27a50b822ba842898e9 Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Mon, 18 Aug 2014 02:11:53 +0000 Subject: [PATCH 12/27] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild --- shed.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/shed.spec b/shed.spec index 779a003..88017b1 100644 --- a/shed.spec +++ b/shed.spec @@ -1,6 +1,6 @@ Name: shed Version: 1.15 -Release: 11%{?dist} +Release: 12%{?dist} Summary: Easy to use hex editor Group: Applications/Editors @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Aug 18 2014 Fedora Release Engineering - 1.15-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + * Sun Jun 08 2014 Fedora Release Engineering - 1.15-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild From 5b8b5e5541242d2fa7c831072a0fecbde3ab8740 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 19 Jun 2015 00:45:44 +0000 Subject: [PATCH 13/27] - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild --- shed.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/shed.spec b/shed.spec index 88017b1..d148ba8 100644 --- a/shed.spec +++ b/shed.spec @@ -1,6 +1,6 @@ Name: shed Version: 1.15 -Release: 12%{?dist} +Release: 13%{?dist} Summary: Easy to use hex editor Group: Applications/Editors @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jun 19 2015 Fedora Release Engineering - 1.15-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + * Mon Aug 18 2014 Fedora Release Engineering - 1.15-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild From 9fad737a93ddfd417c96417981a9c0f19b4dedb6 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 4 Feb 2016 23:56:30 +0000 Subject: [PATCH 14/27] - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild --- shed.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/shed.spec b/shed.spec index d148ba8..d359b08 100644 --- a/shed.spec +++ b/shed.spec @@ -1,6 +1,6 @@ Name: shed Version: 1.15 -Release: 13%{?dist} +Release: 14%{?dist} Summary: Easy to use hex editor Group: Applications/Editors @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Feb 04 2016 Fedora Release Engineering - 1.15-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + * Fri Jun 19 2015 Fedora Release Engineering - 1.15-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild From f426d3b289ea93d1890a7012c6b693962df337ff Mon Sep 17 00:00:00 2001 From: Adam Miller Date: Wed, 16 Mar 2016 11:50:16 -0500 Subject: [PATCH 15/27] remove unnecessary clean section --- shed.spec | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/shed.spec b/shed.spec index d359b08..c9a7520 100644 --- a/shed.spec +++ b/shed.spec @@ -15,8 +15,8 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root BuildRequires: ncurses-devel %description -shed is an easy to use hex editor written for unix/linux using ncurses, -with a friendly pico-style interface. +shed is an easy to use hex editor written for unix/linux using ncurses, +with a friendly pico-style interface. %prep @@ -26,16 +26,13 @@ with a friendly pico-style interface. %build %configure -make %{?_smp_mflags} +make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT -%clean -rm -rf $RPM_BUILD_ROOT - %files %defattr(-,root,root,-) From 986c52576f91cee7d17456af4559e52173b0cea4 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 11 Feb 2017 13:23:06 +0000 Subject: [PATCH 16/27] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild --- shed.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/shed.spec b/shed.spec index c9a7520..87999f1 100644 --- a/shed.spec +++ b/shed.spec @@ -1,6 +1,6 @@ Name: shed Version: 1.15 -Release: 14%{?dist} +Release: 15%{?dist} Summary: Easy to use hex editor Group: Applications/Editors @@ -42,6 +42,9 @@ make install DESTDIR=$RPM_BUILD_ROOT %changelog +* Sat Feb 11 2017 Fedora Release Engineering - 1.15-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + * Thu Feb 04 2016 Fedora Release Engineering - 1.15-14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild From 5e5dddbf4f27e221e0dbd1f177f78ee456690f4e Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 27 Jul 2017 18:32:08 +0000 Subject: [PATCH 17/27] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild --- shed.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/shed.spec b/shed.spec index 87999f1..b6c9f6b 100644 --- a/shed.spec +++ b/shed.spec @@ -1,6 +1,6 @@ Name: shed Version: 1.15 -Release: 15%{?dist} +Release: 16%{?dist} Summary: Easy to use hex editor Group: Applications/Editors @@ -42,6 +42,9 @@ make install DESTDIR=$RPM_BUILD_ROOT %changelog +* Thu Jul 27 2017 Fedora Release Engineering - 1.15-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + * Sat Feb 11 2017 Fedora Release Engineering - 1.15-15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild From d170f494d288caef7efbe7bb2688e7d1d64aa26d Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 3 Aug 2017 08:24:23 +0000 Subject: [PATCH 18/27] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild --- shed.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/shed.spec b/shed.spec index b6c9f6b..1239570 100644 --- a/shed.spec +++ b/shed.spec @@ -1,6 +1,6 @@ Name: shed Version: 1.15 -Release: 16%{?dist} +Release: 17%{?dist} Summary: Easy to use hex editor Group: Applications/Editors @@ -42,6 +42,9 @@ make install DESTDIR=$RPM_BUILD_ROOT %changelog +* Thu Aug 03 2017 Fedora Release Engineering - 1.15-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + * Thu Jul 27 2017 Fedora Release Engineering - 1.15-16 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild From 2cc69dca335f9d85a3fb9c526eee4eb9d353c764 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 9 Feb 2018 16:37:55 +0000 Subject: [PATCH 19/27] - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- shed.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/shed.spec b/shed.spec index 1239570..944882b 100644 --- a/shed.spec +++ b/shed.spec @@ -1,6 +1,6 @@ Name: shed Version: 1.15 -Release: 17%{?dist} +Release: 18%{?dist} Summary: Easy to use hex editor Group: Applications/Editors @@ -42,6 +42,9 @@ make install DESTDIR=$RPM_BUILD_ROOT %changelog +* Fri Feb 09 2018 Fedora Release Engineering - 1.15-18 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + * Thu Aug 03 2017 Fedora Release Engineering - 1.15-17 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild From ef8b18b33eaddd2e2fd053cc7247ebe05d3b613c Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Wed, 14 Feb 2018 00:37:16 +0100 Subject: [PATCH 20/27] Remove BuildRoot definition None of currently supported distributions need that. It was needed last for EL5 which is EOL now Signed-off-by: Igor Gnatenko --- shed.spec | 1 - 1 file changed, 1 deletion(-) diff --git a/shed.spec b/shed.spec index 944882b..7f2d47d 100644 --- a/shed.spec +++ b/shed.spec @@ -10,7 +10,6 @@ Source0: http://downloads.sourceforge.net/shed/%{name}-%{version}.tar.gz Patch0: shed-1.15-makefile_in.patch Patch1: shed-1.15-configure_cflags.patch -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root BuildRequires: ncurses-devel From ac69e7a215738b6d652dc90b0d74172e16291be1 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Mon, 9 Jul 2018 19:06:51 +0200 Subject: [PATCH 21/27] add BuildRequires: gcc Reference: https://fedoraproject.org/wiki/Changes/Remove_GCC_from_BuildRoot --- shed.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/shed.spec b/shed.spec index 7f2d47d..98068a2 100644 --- a/shed.spec +++ b/shed.spec @@ -11,6 +11,7 @@ Patch0: shed-1.15-makefile_in.patch Patch1: shed-1.15-configure_cflags.patch +BuildRequires: gcc BuildRequires: ncurses-devel %description From 8393139c6014374e0042816aa933225683fb9b20 Mon Sep 17 00:00:00 2001 From: Jason Tibbitts Date: Tue, 10 Jul 2018 01:21:03 -0500 Subject: [PATCH 22/27] Remove needless use of %defattr --- shed.spec | 1 - 1 file changed, 1 deletion(-) diff --git a/shed.spec b/shed.spec index 98068a2..1db58f3 100644 --- a/shed.spec +++ b/shed.spec @@ -35,7 +35,6 @@ make install DESTDIR=$RPM_BUILD_ROOT %files -%defattr(-,root,root,-) %doc AUTHORS COPYING ChangeLog README TODO BUGS %{_bindir}/%{name} %{_mandir}/man1/shed.1* From 78ef50732049216e48ed5157d0c9edf1ae2ef74d Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 14 Jul 2018 06:03:42 +0000 Subject: [PATCH 23/27] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- shed.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/shed.spec b/shed.spec index 1db58f3..f5c91d0 100644 --- a/shed.spec +++ b/shed.spec @@ -1,6 +1,6 @@ Name: shed Version: 1.15 -Release: 18%{?dist} +Release: 19%{?dist} Summary: Easy to use hex editor Group: Applications/Editors @@ -41,6 +41,9 @@ make install DESTDIR=$RPM_BUILD_ROOT %changelog +* Sat Jul 14 2018 Fedora Release Engineering - 1.15-19 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Fri Feb 09 2018 Fedora Release Engineering - 1.15-18 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild From 3bcd48537826e54f0c8d1a26e801ec93f8ba72e1 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Mon, 28 Jan 2019 20:18:25 +0100 Subject: [PATCH 24/27] Remove obsolete Group tag References: https://fedoraproject.org/wiki/Changes/Remove_Group_Tag --- shed.spec | 1 - 1 file changed, 1 deletion(-) diff --git a/shed.spec b/shed.spec index f5c91d0..22d0ee0 100644 --- a/shed.spec +++ b/shed.spec @@ -3,7 +3,6 @@ Version: 1.15 Release: 19%{?dist} Summary: Easy to use hex editor -Group: Applications/Editors License: GPLv2+ URL: http://shed.sourceforge.net/ Source0: http://downloads.sourceforge.net/shed/%{name}-%{version}.tar.gz From 146f493625f39a4ac783eadf53d596745f0d3c2e Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 2 Feb 2019 15:19:10 +0000 Subject: [PATCH 25/27] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- shed.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/shed.spec b/shed.spec index 22d0ee0..1edb7ee 100644 --- a/shed.spec +++ b/shed.spec @@ -1,6 +1,6 @@ Name: shed Version: 1.15 -Release: 19%{?dist} +Release: 20%{?dist} Summary: Easy to use hex editor License: GPLv2+ @@ -40,6 +40,9 @@ make install DESTDIR=$RPM_BUILD_ROOT %changelog +* Sat Feb 02 2019 Fedora Release Engineering - 1.15-20 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Sat Jul 14 2018 Fedora Release Engineering - 1.15-19 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild From a308945e3165536a1c6e7cd006d9a3300f091da6 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 26 Jul 2019 23:12:43 +0000 Subject: [PATCH 26/27] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- shed.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/shed.spec b/shed.spec index 1edb7ee..b3274b2 100644 --- a/shed.spec +++ b/shed.spec @@ -1,6 +1,6 @@ Name: shed Version: 1.15 -Release: 20%{?dist} +Release: 21%{?dist} Summary: Easy to use hex editor License: GPLv2+ @@ -40,6 +40,9 @@ make install DESTDIR=$RPM_BUILD_ROOT %changelog +* Fri Jul 26 2019 Fedora Release Engineering - 1.15-21 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Sat Feb 02 2019 Fedora Release Engineering - 1.15-20 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild From a4210e41f01a417e43b5575d77d9d671e26a70b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Thu, 23 Jan 2020 00:59:03 +0100 Subject: [PATCH 27/27] Orphaned for 6+ weeks --- .gitignore | 1 - dead.package | 1 + shed-1.15-configure_cflags.patch | 11 --- shed-1.15-makefile_in.patch | 32 --------- shed.spec | 120 ------------------------------- sources | 1 - 6 files changed, 1 insertion(+), 165 deletions(-) delete mode 100644 .gitignore create mode 100644 dead.package delete mode 100644 shed-1.15-configure_cflags.patch delete mode 100644 shed-1.15-makefile_in.patch delete mode 100644 shed.spec delete mode 100644 sources diff --git a/.gitignore b/.gitignore deleted file mode 100644 index c4add80..0000000 --- a/.gitignore +++ /dev/null @@ -1 +0,0 @@ -shed-1.15.tar.gz diff --git a/dead.package b/dead.package new file mode 100644 index 0000000..5204a84 --- /dev/null +++ b/dead.package @@ -0,0 +1 @@ +Orphaned for 6+ weeks diff --git a/shed-1.15-configure_cflags.patch b/shed-1.15-configure_cflags.patch deleted file mode 100644 index 7a1e7c9..0000000 --- a/shed-1.15-configure_cflags.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- configure 2009-03-24 08:42:37.000000000 -0500 -+++ configure.patched 2009-04-21 11:13:11.000000000 -0500 -@@ -3367,7 +3367,7 @@ - - test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' - --CFLAGS="-Wall" -+CFLAGS="$CFLAGS -Wall" - - - # Check whether --enable-debug was given. diff --git a/shed-1.15-makefile_in.patch b/shed-1.15-makefile_in.patch deleted file mode 100644 index 84ad676..0000000 --- a/shed-1.15-makefile_in.patch +++ /dev/null @@ -1,32 +0,0 @@ ---- Makefile.in 2009-04-20 13:24:18.000000000 -0500 -+++ Makefile.in.patched 2009-04-20 13:20:53.000000000 -0500 -@@ -34,7 +34,7 @@ - subdir = . - DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \ - $(srcdir)/Makefile.in $(top_srcdir)/configure AUTHORS COPYING \ -- ChangeLog INSTALL NEWS TODO depcomp install-sh missing -+ ChangeLog INSTALL NEWS TODO depcomp missing - ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 - am__aclocal_m4_deps = $(top_srcdir)/configure.in - am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ -@@ -489,11 +489,6 @@ - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - - installcheck: installcheck-am --install-strip: -- $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ -- install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ -- `test -z '$(STRIP)' || \ -- echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install - mostlyclean-generic: - - clean-generic: -@@ -566,7 +561,7 @@ - - uninstall-man: uninstall-man1 - --.MAKE: install-am install-strip -+.MAKE: install-am - - .PHONY: CTAGS GTAGS all all-am am--refresh check check-am clean \ - clean-binPROGRAMS clean-generic ctags dist dist-all dist-bzip2 \ diff --git a/shed.spec b/shed.spec deleted file mode 100644 index b3274b2..0000000 --- a/shed.spec +++ /dev/null @@ -1,120 +0,0 @@ -Name: shed -Version: 1.15 -Release: 21%{?dist} -Summary: Easy to use hex editor - -License: GPLv2+ -URL: http://shed.sourceforge.net/ -Source0: http://downloads.sourceforge.net/shed/%{name}-%{version}.tar.gz -Patch0: shed-1.15-makefile_in.patch -Patch1: shed-1.15-configure_cflags.patch - - -BuildRequires: gcc -BuildRequires: ncurses-devel - -%description -shed is an easy to use hex editor written for unix/linux using ncurses, -with a friendly pico-style interface. - - -%prep -%setup -q -%patch0 -p0 -%patch1 -p0 - -%build -%configure -make %{?_smp_mflags} - - -%install -rm -rf $RPM_BUILD_ROOT -make install DESTDIR=$RPM_BUILD_ROOT - - -%files -%doc AUTHORS COPYING ChangeLog README TODO BUGS -%{_bindir}/%{name} -%{_mandir}/man1/shed.1* - - -%changelog -* Fri Jul 26 2019 Fedora Release Engineering - 1.15-21 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild - -* Sat Feb 02 2019 Fedora Release Engineering - 1.15-20 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild - -* Sat Jul 14 2018 Fedora Release Engineering - 1.15-19 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild - -* Fri Feb 09 2018 Fedora Release Engineering - 1.15-18 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild - -* Thu Aug 03 2017 Fedora Release Engineering - 1.15-17 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild - -* Thu Jul 27 2017 Fedora Release Engineering - 1.15-16 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild - -* Sat Feb 11 2017 Fedora Release Engineering - 1.15-15 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild - -* Thu Feb 04 2016 Fedora Release Engineering - 1.15-14 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild - -* Fri Jun 19 2015 Fedora Release Engineering - 1.15-13 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild - -* Mon Aug 18 2014 Fedora Release Engineering - 1.15-12 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild - -* Sun Jun 08 2014 Fedora Release Engineering - 1.15-11 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild - -* Sun Aug 04 2013 Fedora Release Engineering - 1.15-10 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild - -* Thu Feb 14 2013 Fedora Release Engineering - 1.15-9 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild - -* Sat Jul 21 2012 Fedora Release Engineering - 1.15-8 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild - -* Sat Jan 14 2012 Fedora Release Engineering - 1.15-7 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild - -* Wed Feb 09 2011 Fedora Release Engineering - 1.15-6 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild - -* Mon Aug 10 2009 Adam Miller - 1.15-5 -- Fixed Source0 as per https://www.redhat.com/archives/fedora-devel-list/2009-August/msg00591.html - -* Sun Jul 26 2009 Fedora Release Engineering - 1.15-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild - -* Tue Apr 21 2009 Adam Miller - 1.15-3 -- Patched the configure cflags - -* Mon Apr 20 2009 Adam Miller - 1.15-2 -- Fixed debuginfo issue, patched Makefile.in to not strip - -* Mon Apr 13 2009 Adam Miller - 1.15-1 -- New upstream release. - -* Wed Feb 25 2009 Fedora Release Engineering - 1.14-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild - -* Thu Nov 27 2008 Adam Miller - 1.14-1 -- New upstream release. - -* Sun Nov 02 2008 Adam Miller - 1.13-3 -- Fixed the license listing for the project. - -* Wed Oct 29 2008 Adam Miller - 1.13-2 -- Fixed issues that were brought to my attention from package review -- Typo in download, removed chmod, added changelog, incremented release - -* Fri Oct 24 2008 Adam Miller - 1.13-1 -- First build of shed for fedora diff --git a/sources b/sources deleted file mode 100644 index 385b42f..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -c7d7d464d6b4fa28a7980270d03e0906 shed-1.15.tar.gz