Search
j0ke.net Open Build Service
>
Projects
>
server:mail
>
pyzor
> Changes
Sign Up
|
Log In
Username
Password
Cancel
Overview
Repositories
Revisions
Requests
Users
Advanced
Attributes
Meta
Changes of Revision 2
[-]
[+]
Added
pyzor.spec
@@ -0,0 +1,68 @@ +# norootforbuild + +Name: pyzor +Version: 0.4.0 +Release: 0 +Summary: A collaborative, networked system to detect and block spam +License: GPL +Group: Productivity/Networking/Email/Utilities +Url: http://pyzor.sourceforge.net/ +Source0: http://prdownloads.sourceforge.net/pyzor/%{name}-%{version}.tar.bz2 +BuildRoot: %{_tmppath}/%{name}-%{version}-build + +BuildRequires: python-devel + +%description +Pyzor is a collaborative, networked system to detect and block spam using +identifying digests of messages. +Pyzor initially started out to be merely a Python implementation of Razor, but +due to the protocol and the fact that Razor's server is not Open Source or +software libre, I decided to impelement Pyzor with a new protocol and release +the entire system as Open Source and software libre. +Since the entire system is released under the GPL, people are free to host their +own independent servers. Server peering is planned for a future release. + +Authors: +-------- + Frank Tobin <ftobin@neverending.org> + and others (see THANKS file) + + +%if %suse_version >= 930 +%debug_package +%endif + +%prep +%setup +%build +%__python setup.py build + +%install +%__python setup.py install --prefix=%{_prefix} --root=%{buildroot} +%__rm -r %{buildroot}%{_datadir}/doc/pyzor + +%clean +[ -d %{buildroot} -a "%{buildroot}" != "" ] && %__rm -rf %{buildroot} + + +%files +%defattr(-, root, root) +%doc ChangeLog COPYING INSTALL NEWS README THANKS UPGRADING +%doc docs/usage.html +%{_bindir}/pyzor +%{_bindir}/pyzord +%{py_libdir}/site-packages/pyzor/__init__.py +%{py_libdir}/site-packages/pyzor/__init__.pyc +%{py_libdir}/site-packages/pyzor/client.py +%{py_libdir}/site-packages/pyzor/client.pyc +%{py_libdir}/site-packages/pyzor/server.py +%{py_libdir}/site-packages/pyzor/server.pyc +%if %suse_version > 1010 +%{py_libdir}/site-packages/pyzor-0.4.0-py2.5.egg-info +%endif + +%changelog +* Wed Mar 28 2007 Marcus Hüwe <suse-tux@gmx.de> 0.4.0 +- removed %%define %%_prefix line at the beginning +* Sun Oct 01 2006 Marcus Hüwe <suse-tux@gmx.de> 0.4.0 +- initial build