Release 0.8.5

This commit is contained in:
Stuart Gathman
2005-12-29 19:33:18 +00:00
parent 7f7f2500dc
commit 28bc84eda0
2 changed files with 6 additions and 5 deletions
+5 -5
View File
@@ -1,6 +1,6 @@
%define name milter %define name milter
%define version 0.8.5 %define version 0.8.5
%define release 2.RH7 %define release 1.RH7
# what version of RH are we building for? # what version of RH are we building for?
%define redhat9 0 %define redhat9 0
%define redhat7 1 %define redhat7 1
@@ -31,7 +31,7 @@ Name: %{name}
Version: %{version} Version: %{version}
Release: %{release} Release: %{release}
Source: %{name}-%{version}.tar.gz Source: %{name}-%{version}.tar.gz
Patch: %{name}-%{version}.patch #Patch: %{name}-%{version}.patch
Copyright: GPL Copyright: GPL
Group: Development/Libraries Group: Development/Libraries
BuildRoot: %{_tmppath}/%{name}-buildroot BuildRoot: %{_tmppath}/%{name}-buildroot
@@ -39,11 +39,11 @@ Prefix: %{_prefix}
Vendor: Stuart D. Gathman <stuart@bmsi.com> Vendor: Stuart D. Gathman <stuart@bmsi.com>
Packager: Stuart D. Gathman <stuart@bmsi.com> Packager: Stuart D. Gathman <stuart@bmsi.com>
Url: http://www.bmsi.com/python/milter.html Url: http://www.bmsi.com/python/milter.html
Requires: %{python} >= 2.4, sendmail >= 8.12.10 Requires: %{python} >= 2.4, sendmail >= 8.13
%ifos Linux %ifos Linux
Requires: chkconfig Requires: chkconfig
%endif %endif
BuildRequires: %{python}-devel , sendmail-devel >= 8.12.10 BuildRequires: %{python}-devel , sendmail-devel >= 8.13
%description %description
This is a python extension module to enable python scripts to This is a python extension module to enable python scripts to
@@ -52,7 +52,7 @@ modules provide for navigating and modifying MIME parts.
%prep %prep
%setup %setup
%patch -p0 -b .bms #%patch -p0 -b .bms
%build %build
if %{redhat9}; then if %{redhat9}; then
+1
View File
@@ -32,6 +32,7 @@ querying SPF records.
ext_modules=[ ext_modules=[
Extension("milter", ["miltermodule.c"], Extension("milter", ["miltermodule.c"],
libraries=libs, libraries=libs,
# set MAX_ML_REPLY to 1 for sendmail < 8.13
define_macros = [ ('MAX_ML_REPLY',32) ] define_macros = [ ('MAX_ML_REPLY',32) ]
), ),
], ],