Compare commits
No commits in common. "rawhide" and "f22" have entirely different histories.
6 changed files with 143 additions and 1 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
shed-1.15.tar.gz
|
||||
|
|
@ -1 +0,0 @@
|
|||
Orphaned for 6+ weeks
|
||||
11
shed-1.15-configure_cflags.patch
Normal file
11
shed-1.15-configure_cflags.patch
Normal file
|
|
@ -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.
|
||||
32
shed-1.15-makefile_in.patch
Normal file
32
shed-1.15-makefile_in.patch
Normal file
|
|
@ -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 \
|
||||
98
shed.spec
Normal file
98
shed.spec
Normal file
|
|
@ -0,0 +1,98 @@
|
|||
Name: shed
|
||||
Version: 1.15
|
||||
Release: 12%{?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
|
||||
Patch0: shed-1.15-makefile_in.patch
|
||||
Patch1: shed-1.15-configure_cflags.patch
|
||||
|
||||
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.
|
||||
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
%patch0 -p0
|
||||
%patch1 -p0
|
||||
|
||||
%build
|
||||
%configure
|
||||
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,-)
|
||||
%doc AUTHORS COPYING ChangeLog README TODO BUGS
|
||||
%{_bindir}/%{name}
|
||||
%{_mandir}/man1/shed.1*
|
||||
|
||||
|
||||
%changelog
|
||||
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.15-12
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
||||
|
||||
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.15-11
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||
|
||||
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.15-10
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||
|
||||
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.15-9
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
||||
|
||||
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.15-8
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||
|
||||
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.15-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
||||
|
||||
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.15-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
||||
|
||||
* Mon Aug 10 2009 Adam Miller <maxamillion [AT] gmail.com> - 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 <rel-eng@lists.fedoraproject.org> - 1.15-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
||||
|
||||
* Tue Apr 21 2009 Adam Miller <maxamillion [AT] gmail.com> - 1.15-3
|
||||
- Patched the configure cflags
|
||||
|
||||
* Mon Apr 20 2009 Adam Miller <maxamillion [AT] gmail.com> - 1.15-2
|
||||
- Fixed debuginfo issue, patched Makefile.in to not strip
|
||||
|
||||
* Mon Apr 13 2009 Adam Miller <maxamillion [AT] gmail.com> - 1.15-1
|
||||
- New upstream release.
|
||||
|
||||
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.14-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
||||
|
||||
* Thu Nov 27 2008 Adam Miller <maxamillion [AT] gmail.com> - 1.14-1
|
||||
- New upstream release.
|
||||
|
||||
* Sun Nov 02 2008 Adam Miller <maxamillion [AT] gmail.com> - 1.13-3
|
||||
- Fixed the license listing for the project.
|
||||
|
||||
* Wed Oct 29 2008 Adam Miller <maxamillion [AT] gmail.com> - 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 <maxamillion [AT] gmail.com> - 1.13-1
|
||||
- First build of shed for fedora
|
||||
1
sources
Normal file
1
sources
Normal file
|
|
@ -0,0 +1 @@
|
|||
c7d7d464d6b4fa28a7980270d03e0906 shed-1.15.tar.gz
|
||||
Loading…
Add table
Add a link
Reference in a new issue