-
Notifications
You must be signed in to change notification settings - Fork 22
/
patchutils.spec.in
57 lines (45 loc) · 1.38 KB
/
patchutils.spec.in
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
Summary: A collection of programs for manipulating patch files.
Name: @PACKAGE@
Version: @VERSION@
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.bz2
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
make check
%install
rm -rf %{buildroot}
%make_install
%clean
rm -rf %{buildroot}
%files
%defattr(-,root,root)
%doc AUTHORS ChangeLog README COPYING BUGS NEWS patchview/README.patchview
%{_bindir}/*
%{_mandir}/*/*
%changelog
* Tue Jan 6 2004 Tim Waugh <[email protected]>
- Ship AUTHORS and ChangeLog as well.
* Wed Sep 3 2003 Tim Waugh <[email protected]>
- Remove buildroot before installing.
* Fri May 10 2002 Tim Waugh <[email protected]>
- The archive is now distributed in .tar.bz2 format.
* Tue Apr 23 2002 Tim Waugh <[email protected]>
- Run tests after build step.
* Mon Mar 4 2002 Tim Waugh <[email protected]>
- Obsolete (and provide) interdiff.
* Tue Nov 27 2001 Tim Waugh <[email protected]>
- Initial spec file.