]> git.pld-linux.org Git - packages/cvsspam.git/blob - cvsspam.spec
- safer trigger
[packages/cvsspam.git] / cvsspam.spec
1 Summary:        CVSspam emails you diffs when someone commits a change to your CVS repository
2 Summary(pl):    CVSspam - wysy³anie ró¿nic po wykonaniu zmiany w repozytorium CVS
3 Name:           cvsspam
4 Version:        0.2.11
5 Release:        5.3
6 Epoch:          0
7 License:        GPL
8 Group:          Applications/System
9 Source0:        http://www.badgers-in-foil.co.uk/projects/cvsspam/%{name}-%{version}.tar.gz
10 # Source0-md5:  e2fe350b845ad1d2ff935f623a0f543a
11 Patch0:         %{name}-users-quote.patch
12 Patch1:         %{name}-charset-arg.patch
13 Patch2:         %{name}-filenr.patch
14 Patch3:         %{name}-trailing-cvsinfo-slash.patch
15 Patch4:         %{name}-optkb_binary_hint.patch
16 Patch5:         %{name}-encode_email_personal_name.patch
17 Patch6:         %{name}-cvsroot_trailing_slash.patch
18 URL:            http://www.badgers-in-foil.co.uk/projects/cvsspam/
19 BuildRequires:  rpmbuild(macros) >= 1.177
20 Requires:       cvs
21 Requires:       ruby
22 BuildArch:      noarch
23 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
24
25 %define         _sysconfdir     /etc/%{name}
26 %define         _datadir        %{_prefix}/share/%{name}
27
28 %description
29 CVSspam sends email when a change is committed to the CVS repository.
30 Syntax-highlighted diffs describe the changes made, and links to Web
31 frontends on CVS and bug tracking systems are generated where
32 possible.
33
34 %description -l pl
35 CVSspam wysy³a wiadomo¶æ po wykonaniu zmiany w repozytorium CVS.
36 Ró¿nice z pod¶wietlaniem sk³adni opisuj± wykonane zmiany, a je¶li to
37 mo¿liwe, generowane s± odno¶niki do frontendów WWW do CVS i systemów
38 ¶ledzenia b³êdów.
39
40 %prep
41 %setup -q
42 %patch0 -p1
43 %patch1 -p1
44 %patch2 -p1
45 %patch3 -p0
46 %patch4 -p0
47 %patch5 -p1
48 %patch6 -p0
49
50 %install
51 rm -rf $RPM_BUILD_ROOT
52 install -d $RPM_BUILD_ROOT{%{_libdir},%{_datadir},%{_sysconfdir}}
53
54 install {collect_diffs,cvsspam,record_lastdir}.rb $RPM_BUILD_ROOT%{_datadir}
55 install cvsspam.conf $RPM_BUILD_ROOT%{_sysconfdir}
56
57 ln -s %{_datadir} $RPM_BUILD_ROOT%{_libdir}/%{name}
58
59 %clean
60 rm -rf $RPM_BUILD_ROOT
61
62 # make compat symlink, the symlink is discarded using %ghost on package uninstall
63 %triggerpostun -- cvsspam < 0.2.11-5.3
64 # need rmdir, because the path belongs to new package (is %ghosted) and therefore is not removed by rpm
65 rmdir %{_libdir}/%{name} 2>/dev/null || mv -v %{_libdir}/%{name}{,.rpmsave}
66 ln -s %{_datadir} %{_libdir}/%{name}
67 %banner %{name} -e <<EOF
68 NOTE: The cvsspam programs have been moved to %{_datadir}.
69 I've created compat symlink so you don't feel so much pain of that.
70
71 EOF
72
73 %files
74 %defattr(644,root,root,755)
75 %doc CREDITS TODO cvsspam-doc.pdf cvsspam-doc.html
76 %dir %{_datadir}
77 %attr(755,root,root) %{_datadir}/*
78 %ghost %{_libdir}/%{name}
79 %dir %{_sysconfdir}
80 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/*
This page took 0.028069 seconds and 4 git commands to generate.