diff --git a/.hexedit.metadata b/.hexedit.metadata new file mode 100644 index 0000000..ed2a675 --- /dev/null +++ b/.hexedit.metadata @@ -0,0 +1 @@ +1acb7ca37063d9f4b4d118ef223548fde3b753f1 SOURCES/hexedit-1.2.13.src.tgz diff --git a/README.md b/README.md deleted file mode 100644 index 0e7897f..0000000 --- a/README.md +++ /dev/null @@ -1,5 +0,0 @@ -The master branch has no content - -Look at the c7 branch if you are working with CentOS-7, or the c4/c5/c6 branch for CentOS-4, 5 or 6 - -If you find this file in a distro specific branch, it means that no content has been checked in yet diff --git a/SOURCES/hexedit-1.2.13-config.patch b/SOURCES/hexedit-1.2.13-config.patch new file mode 100644 index 0000000..0421bcd --- /dev/null +++ b/SOURCES/hexedit-1.2.13-config.patch @@ -0,0 +1,23 @@ +diff -up hexedit/Makefile-build.in~ hexedit/Makefile-build.in +--- hexedit/Makefile-build.in~ 2008-11-07 17:50:57.000000000 +0200 ++++ hexedit/Makefile-build.in 2013-03-26 17:14:29.755829478 +0200 +@@ -23,7 +23,7 @@ FROMINFILES = hexedit-$(VERSION).lsm hex + dynamic: + $(MAKE) $(PRODUCT) + install -d -m 755 usr/bin +- install -s -m 755 $(PRODUCT) usr/bin ++ install -m 755 $(PRODUCT) usr/bin + install -d -m 755 usr/man/man1 + install -m 644 $(PRODUCT).1 usr/man/man1 + tar cfz $(DYNAMICBIN) usr +diff -up hexedit/Makefile.in~ hexedit/Makefile.in +--- hexedit/Makefile.in~ 2010-02-04 17:20:52.000000000 +0200 ++++ hexedit/Makefile.in 2013-03-26 17:14:26.217769520 +0200 +@@ -42,6 +42,6 @@ distclean: clean + + install: $(PRODUCT) + $(INSTALL) -d -m 755 $(DESTDIR)$(bindir) +- $(INSTALL) -s -m 755 $(PRODUCT) $(DESTDIR)$(bindir) ++ $(INSTALL) -m 755 $(PRODUCT) $(DESTDIR)$(bindir) + $(INSTALL) -d -m 755 $(DESTDIR)$(mandir)/man1 + $(INSTALL) -m 644 $(PRODUCT).1 $(DESTDIR)$(mandir)/man1 diff --git a/SOURCES/hexedit-man-page-color.patch b/SOURCES/hexedit-man-page-color.patch new file mode 100644 index 0000000..6f56ec7 --- /dev/null +++ b/SOURCES/hexedit-man-page-color.patch @@ -0,0 +1,13 @@ +--- hexedit.old/hexedit.1 2013-03-01 22:07:04.000000000 +0000 ++++ hexedit/hexedit.1 2013-04-05 17:25:48.875705378 +0100 +@@ -17,6 +17,10 @@ + .I "\-m, \-\-maximize" + Try to maximize the display. + .TP ++.I "\-\-color" ++Display colors. ++This feature is only available if your operating system supports it. ++.TP + .I "\-h, \-\-help" + Show the usage. + .SH COMMANDS (quickly) diff --git a/SPECS/hexedit.spec b/SPECS/hexedit.spec new file mode 100644 index 0000000..91d1ba1 --- /dev/null +++ b/SPECS/hexedit.spec @@ -0,0 +1,212 @@ +Summary: A hexadecimal file viewer and editor +Name: hexedit +Version: 1.2.13 +Release: 3%{?dist} +License: GPLv2+ + +URL: http://rigaux.org/hexedit.html +Source: http://rigaux.org/%{name}-%{version}.src.tgz + +Patch1: hexedit-1.2.13-config.patch +# Document --color option. Sent upstream 2013-04-05. +Patch2: hexedit-man-page-color.patch + +BuildRequires: ncurses-devel + +%description +Hexedit shows a file both in ASCII and in hexadecimal. The file can be a device +as the file is read a piece at a time. Hexedit can be used to modify the file +and search through it. + +%prep +%setup -q -n %{name} + +%patch1 -p1 -b .config +%patch2 -p1 -b .color + +%build +%configure +make %{_smp_mflags} + +%install +make install \ + mandir=$RPM_BUILD_ROOT%{_mandir} \ + bindir=$RPM_BUILD_ROOT%{_bindir} \ + INSTALL='install -p' + +%files +%doc hexedit-%{version}.lsm COPYING Changes +%{_bindir}/hexedit +%{_mandir}/man1/hexedit.1* + +%changelog +* Fri Apr 05 2013 Richard W.M. Jones - 1.2.13-3 +- Add patch to document --color option. +- Modernize the spec file. + +* Tue Mar 26 2013 Ville Skyttä - 1.2.13-2 +- Bring back config patch to fix -debuginfo, it hasn't been upstreamed yet. +- Drop empty TODO from docs. + +* Thu Mar 21 2013 Jon Ciesla - 1.2.13-1 +- Latest upstream. +- Config patch upstreamed. + +* Thu Feb 14 2013 Fedora Release Engineering - 1.2.12-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Mon Nov 26 2012 Richard W.M. Jones - 1.2.12-15 +- Fix URL and Source for new upstream location. + +* Thu Jul 19 2012 Fedora Release Engineering - 1.2.12-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Fri Jan 13 2012 Fedora Release Engineering - 1.2.12-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Wed Feb 09 2011 Fedora Release Engineering - 1.2.12-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.12-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Tue Feb 24 2009 Fedora Release Engineering - 1.2.12-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Tue Feb 12 2008 Jiri Moskovcak - 1.2.12-9 +- rebuild + +* Mon Dec 17 2007 Jiri Moskovcak - 1.2.12-8 +- minor spec file fixes + +* Thu Nov 1 2007 Jiri Moskovcak - 1.2.12-7 +- spec file cleanup + +* Tue Sep 18 2007 Jiri Moskovcak 1.2.12-6 +- changed to new upstream source tarbal with some minor fixes + +* Fri Apr 06 2007 Jindrich Novy 1.2.12-5 +- spec fixes + +* Wed Nov 29 2006 Jindrich Novy 1.2.12-4 +- fix URL, add dist tag + +* Wed Jul 12 2006 Jesse Keating - 1.2.12-3.2.1 +- rebuild + +* Fri Feb 10 2006 Jesse Keating - 1.2.12-3.2 +- bump again for double-long bug on ppc(64) + +* Tue Feb 07 2006 Jesse Keating - 1.2.12-3.1 +- rebuilt for new gcc4.1 snapshot and glibc changes + +* Thu Jan 26 2006 Jindrich Novy 1.2.12-3 +- rebuilt (#178824) + +* Fri Dec 09 2005 Jesse Keating +- rebuilt + +* Tue Oct 25 2005 Jindrich Novy 1.2.12-2 +- rewrite %%description - the original one was a nonsense (#171685) + +* Mon Oct 3 2005 Jindrich Novy 1.2.12-1 +- update to 1.2.12 +- new upstream release introduces "fruit salad" colored hexeditor ;-) + (try --color) + +* Fri Mar 4 2005 Jindrich Novy 1.2.10-4 +- rebuilt with gcc4 + +* Thu Feb 10 2005 Jindrich Novy 1.2.10-3 +- remove -D_FORTIFY_SOURCE=2 from CFLAGS, present in RPM_OPT_FLAGS + +* Wed Feb 9 2005 Jindrich Novy 1.2.10-2 +- rebuilt with -D_FORTIFY_SOURCE=2 + +* Mon Aug 2 2004 Jindrich Novy 1.2.10-1 +- updated to 1.2.10-1 + +* Tue Jun 15 2004 Elliot Lee +- rebuilt + +* Fri Feb 13 2004 Elliot Lee +- rebuilt + +* Fri Sep 26 2003 Harald Hoyer 1.2.7-1 +- update to 1.2.7 + +* Wed Jun 04 2003 Elliot Lee +- rebuilt + +* Tue May 6 2003 Than Ngo 1.2.4-1 +- 1.2.4 + +* Wed Jan 22 2003 Tim Powers +- rebuilt + +* Wed Dec 11 2002 Tim Powers 1.2.2-7 +- rebuild on all arches + +* Fri Jun 21 2002 Tim Powers +- automated rebuild + +* Tue Jun 18 2002 Than Ngo 1.2.2-5 +- don't forcibly strip binaries + +* Thu May 23 2002 Tim Powers +- automated rebuild + +* Thu Feb 28 2002 Than Ngo 1.2.2-3 +- rebuild in new inviroment + +* Wed Jan 09 2002 Tim Powers +- automated rebuild + +* Tue Nov 27 2001 Than Ngo 1.2.2-1 +- updated to 1.2.2 +- fixed Url + +* Thu Aug 9 2001 Than Ngo 1.2.1-3 +- install man page in correct place + +* Tue Jul 31 2001 Than Ngo 1.2.1-2 +- fix bug #50488 + +* Tue Jun 26 2001 Than Ngo 1.2.1-1 +- update to 1.2.1 +- Copyright -> License +- add some Buildprereqs + +* Mon May 21 2001 Tim Powers +- built for the ldistro + +* Fri Feb 9 2001 Tim Powers +- patched so that it doesn't segfault on ia64 (bug 26845) + +* Mon Jul 24 2000 Prospector +- rebuilt + +* Mon Jul 10 2000 Tim Powers +- rebuilt + +* Wed Jun 7 2000 Tim Powers +- fixed man page location +- use %%makeinstall +- use predefined RPM macros wherever possible +- patched so that regular users can build + +* Fri May 12 2000 Tim Powers +- rbeuilt for 7.0 +- made so that man pages are gzipped by RPM (glob) + +* Thu Jul 15 1999 Tim Powers +- updated source +- cleaned up %%build section. Now uses make install instead of install + blah.... +-built for 6.1 + +* Tue Oct 06 1998 Michael Maher +- updated package + +* Mon Jul 20 1998 Michael Maher +- built package