Changes of Revision 2
[-] | Added | svnmailer.spec |
x 1
2 +# norootforbuild 3 + 4 +Name: svnmailer 5 +Version: 1.0.8 6 +Release: 0 7 +# 8 +Group: Development/Tools 9 +License: Apache License Version 2.0 10 +# 11 +BuildRoot: %{_tmppath}/%{name}-%{version}-build 12 +BuildRequires: subversion-python python-devel 13 +Requires: subversion-python 14 +%py_requires 15 +# 16 +URL: http://opensource.perlig.de/svnmailer/ 17 +Source: http://storage.perlig.de/%{name}/%{name}-%{version}.tar.bz2 18 +# 19 +Summary: Feature rich subversion commit notifier 20 +%description 21 +Svnmailer is a tool to post subversion repository commit information by mail, 22 +news or XML (to a CIA tracker). 23 + 24 +The svnmailer package is derived from the script mailer.py distributed with 25 +subversion. It arose from the idea to add some features to the original mailer 26 +script. But I've found the script not as extensible as it could be, so the 27 +svnmailer package was redeveloped from scratch with clearer design and 28 +extensibility in mind. Now there are additional features like property diffs, 29 +MIME encoding, configurable handling of huge mails and news postings, subject 30 +templates, consistent unicode handling and even a better extensible command 31 +line. You'll find a complete description of the svnmailer and its possibilities 32 +in the documentation 33 + 34 + Author: 35 +--------- 36 + André Malo <nd@perlig.de> 37 + 38 +%debug_package 39 +%prep 40 +%setup 41 + 42 +%build 43 +python setup.py build 44 + 45 +%install 46 +python setup.py install \ 47 + --record-rpm %{name}.files \ 48 + --prefix %{_prefix} \ 49 + --root %{buildroot} 50 + 51 +%clean 52 +%{__rm} -rf %{buildroot}; 53 + 54 +%files -f %{name}.files 55 +%defattr(-, root, root) 56 +%doc CHANGES CREDITS LICENSE NOTICE PKG-INFO README 57 +%doc docs 58 |