summaryrefslogtreecommitdiff
path: root/python-elspy.spec
blob: 203eff76ffd2976d0235de039b635780eb5bd5df (plain)
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

%define 	module	elspy

Summary:	Allows to write Python code to scan email messages at SMTP-time with the Exim MTA
Name:		python-%{module}
Version:	0.1.1
Release:	1
License:	GPL
Group:		Libraries/Python
Source0:	http://elspy.sourceforge.net/%{module}-%{version}.tar.gz
# Source0-md5:	5161553b58eedf8107048d0cd79c2360
Patch0:		%{name}-cvs20050901.patch
URL:		http://elspy.sourceforge.net/
BuildRequires:	exim-devel
%pyrequires_eq	python-libs
Requires:	exim >= 4.52-4
BuildRoot:	%{tmpdir}/%{name}-%{version}-root-%(id -u -n)

%description
elspy is a layer of glue code that enables you to write Python code to
scan email messages at SMTP-time with the Exim MTA (mail transport
agent). elspy also includes a small Python library with common
mail-scanning tools, including an interface to SpamAssassin and a
simple-but-effective virus detector.

%prep
%setup -q -n %{module}-%{version}
%patch0 -p1

%build
%{__cc} %{rpmcflags} %{rpmldflags} -fPIC -I%{_includedir}/exim -I%{_includedir}/python2.4 \
        -lpython -shared %{module}.c -o %{module}.so

%install
rm -rf $RPM_BUILD_ROOT
install -d $RPM_BUILD_ROOT%{_libdir}/exim

python setup.py install \
	--root=$RPM_BUILD_ROOT \
	--optimize=2

install %{module}.so $RPM_BUILD_ROOT%{_libdir}/exim

%clean
rm -rf $RPM_BUILD_ROOT

%files
%defattr(644,root,root,755)
%doc examples/*.py README.txt CHANGES.txt
%dir %{py_sitescriptdir}/%{module}
%attr(755,root,root) %{py_sitescriptdir}/%{module}/*.py[co]
%attr(755,root,root) %{_libdir}/exim/%{module}.so