1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
Summary: A collection of programs for manipulating patch files.
Name: patchutils
Version: 0.2.11
Release: 0.1
License: GPL
Group: Applications/System
URL: http://cyberelk.net/tim/patchutils/
Source0: http://cyberelk.net/tim/data/patchutils/stable/%{name}-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-buildroot
Obsoletes: interdiff
Provides: interdiff
%description
This is a collection of programs that can manipulate patch files in
useful ways such as interpolating between two pre-patches, combining
two incremental patches, fixing line numbers in hand-edited patches,
and simply listing the files modified by a patch.
%prep
%setup -q
%build
%configure
make
%install
%makeinstall
%clean
rm -rf %{buildroot}
%files
%defattr(-,root,root)
%doc README COPYING BUGS NEWS
%{_bindir}/*
%{_mandir}/*/*
%changelog
* Mon Mar 4 2002 Tim Waugh <twaugh@redhat.com>
- Obsolete (and provide) interdiff.
* Tue Nov 27 2001 Tim Waugh <twaugh@redhat.com>
- Initial spec file.
|