Summary: A utility to generate incremental patches from pristine patches. Name: interdiff Version: 0.0.9 Release: 1 License: GPL Group: Development/Tools Requires: diffutils, patch Prefix: %{_prefix} URL: http://people.redhat.com/twaugh/interdiff/ Buildroot: %{_tmppath}/%{name}-%{version}-buildroot Source0: ftp://people.redhat.com/twaugh/interdiff/stable/%{name}-%{version}.tar.gz %description interdiff creates a unified diff that expresses the difference between two unified diffs (patches created with the -u option to diff). The diffs must both be relative to the same files. For best results, the diffs must have at least three lines of context. %prep %setup -q -n interdiff %build make interdiff CFLAGS="$RPM_OPT_FLAGS" %install rm -rf %{buildroot} mkdir -p %{buildroot}/%{_bindir} mkdir -p %{buildroot}/%{_mandir}/man1 install -m 755 interdiff %{buildroot}/%{_bindir}/interdiff install -m 644 interdiff.1 %{buildroot}/%{_mandir}/man1/interdiff.1 %clean rm -rf %{buildroot} %files %defattr(-,root,root) %{_bindir}/interdiff %{_mandir}/man1/interdiff.1* %changelog * Fri Sep 1 2000 Tim Waugh - Change group to Development/Tools. * Mon Aug 7 2000 Tim Waugh - RPM packaging guide changes. * Wed Aug 2 2000 Tim Waugh - Don't perform regression tests during build - Use RPM_OPT_FLAGS. * Wed Aug 2 2000 Tim Waugh - Version 0.0.7. * Tue Aug 1 2000 Tim Waugh - Version 0.0.6. * Thu Jul 26 2000 Tim Waugh - Created