Release 0.9.8
This commit is contained in:
+1
-1
@@ -8,7 +8,7 @@
|
||||
# Copyright 2001,2009 Business Management Systems, Inc.
|
||||
# This code is under the GNU General Public License. See COPYING for details.
|
||||
|
||||
__version__ = '0.9.7'
|
||||
__version__ = '0.9.8'
|
||||
|
||||
import os
|
||||
import re
|
||||
|
||||
@@ -2,8 +2,8 @@ web:
|
||||
doxygen
|
||||
rsync -ravK doc/html/ spidey2.bmsi.com:/Public/pymilter
|
||||
|
||||
VERSION=0.9.7
|
||||
CVSTAG=pymilter-0_9_7
|
||||
VERSION=0.9.8
|
||||
CVSTAG=pymilter-0_9_8
|
||||
PKG=pymilter-$(VERSION)
|
||||
SRCTAR=$(PKG).tar.gz
|
||||
|
||||
|
||||
+6
-1
@@ -35,6 +35,9 @@ $ python setup.py help
|
||||
libraries=["milter","smutil","resolv"]
|
||||
|
||||
* $Log$
|
||||
* Revision 1.34 2013/03/09 05:42:14 customdesigned
|
||||
* Make TestBase members private, fix getsymlist misspelling.
|
||||
*
|
||||
* Revision 1.33 2013/03/09 00:25:23 customdesigned
|
||||
* Better untrapped exception message. const char for doc comments.
|
||||
*
|
||||
@@ -657,7 +660,9 @@ _release_thread(PyThreadState *t) {
|
||||
/** Report and clear any python exception before returning to libmilter.
|
||||
The interpreter is locked when we are called, and we unlock it. */
|
||||
static int _report_exception(milter_ContextObject *self) {
|
||||
char *untrapped_msg = "pymilter: untrapped exception in milter app";
|
||||
char untrapped_msg[80];
|
||||
sprintf(untrapped_msg,"pymilter: untrapped exception in %.40s",
|
||||
description.xxfi_name);
|
||||
if (PyErr_Occurred()) {
|
||||
PyErr_Print();
|
||||
PyErr_Clear(); /* must clear since not returning to python */
|
||||
|
||||
+2
-2
@@ -6,8 +6,8 @@
|
||||
|
||||
Summary: Python interface to sendmail milter API
|
||||
Name: %{pythonbase}-pymilter
|
||||
Version: 0.9.7
|
||||
Release: 2%{dist}
|
||||
Version: 0.9.8
|
||||
Release: 1%{dist}
|
||||
Source: http://downloads.sourceforge.net/pymilter/pymilter-%{version}.tar.gz
|
||||
License: GPLv2+
|
||||
Group: Development/Libraries
|
||||
|
||||
@@ -13,7 +13,7 @@ libs = ["milter"]
|
||||
libdirs = ["/usr/lib/libmilter"] # needed for Debian
|
||||
|
||||
# NOTE: importing Milter to obtain version fails when milter.so not built
|
||||
setup(name = "pymilter", version = '0.9.7',
|
||||
setup(name = "pymilter", version = '0.9.8',
|
||||
description="Python interface to sendmail milter API",
|
||||
long_description="""\
|
||||
This is a python extension module to enable python scripts to
|
||||
|
||||
Reference in New Issue
Block a user