Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
pymilter
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
misc
pymilter
Commits
bc9d8c62
Commit
bc9d8c62
authored
8 years ago
by
Stuart D. Gathman
Browse files
Options
Downloads
Patches
Plain Diff
Release 1.0.2
parent
2fa952e1
No related branches found
No related tags found
No related merge requests found
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
Milter/__init__.py
+1
-1
1 addition, 1 deletion
Milter/__init__.py
makefile
+1
-1
1 addition, 1 deletion
makefile
py3milter.spec
+6
-1
6 additions, 1 deletion
py3milter.spec
pymilter.spec
+5
-0
5 additions, 0 deletions
pymilter.spec
setup.py
+1
-1
1 addition, 1 deletion
setup.py
with
14 additions
and
4 deletions
Milter/__init__.py
+
1
−
1
View file @
bc9d8c62
...
...
@@ -9,7 +9,7 @@
# This code is under the GNU General Public License. See COPYING for details.
from
__future__
import
print_function
__version__
=
'
1.0.
1
'
__version__
=
'
1.0.
2
'
import
os
import
re
...
...
This diff is collapsed.
Click to expand it.
makefile
+
1
−
1
View file @
bc9d8c62
...
...
@@ -4,7 +4,7 @@ web:
rsync
-ravKk
doc/html/ spidey2.bmsi.com:/Public/pymilter
cd
doc/html
;
zip
-r
../../doc .
VERSION
=
1.0.
1
VERSION
=
1.0.
2
PKG
=
pymilter-
$(
VERSION
)
SRCTAR
=
$(
PKG
)
.tar.gz
...
...
This diff is collapsed.
Click to expand it.
py3milter.spec
+
6
−
1
View file @
bc9d8c62
...
...
@@ -10,7 +10,7 @@
Summary: Python interface to sendmail milter API
Name: %{pythonbase}-pymilter
Version: 1.0.
1
Version: 1.0.
2
Release: 1%{dist}
Source: https://github.com/sdgathman/pymilter/archive/pymilter-%{version}.tar.gz
Source1: pymilter.te
...
...
@@ -96,6 +96,11 @@ if [ $1 -eq 0 ] ; then
fi
%changelog
* Tue Dec 13 2016 Stuart Gathman <stuart@gathman.org> 1.0.2-1
- Fix the last setsymlist misspelling. Support in test framework and tests.
- Add @symlist decorator.
- Change body callback and a few other APIs to use bytes instead of str.
* Tue Sep 20 2016 Stuart Gathman <stuart@gathman.org> 1.0.1-1
- Support python3
...
...
This diff is collapsed.
Click to expand it.
pymilter.spec
+
5
−
0
View file @
bc9d8c62
...
...
@@ -95,6 +95,11 @@ if [ $1 -eq 0 ] ; then
fi
%changelog
* Tue Dec 13 2016 Stuart Gathman <stuart@gathman.org> 1.0.2-1
- Fix the last setsymlist misspelling. Support in test framework and tests.
- Add @symlist decorator.
- Change body callback and a few other APIs to use bytes instead of str.
* Tue Sep 20 2016 Stuart Gathman <stuart@gathman.org> 1.0.1-1
- Support python3
...
...
This diff is collapsed.
Click to expand it.
setup.py
+
1
−
1
View file @
bc9d8c62
...
...
@@ -17,7 +17,7 @@ if sys.version >= '3':
print
(
"
modules=
"
,
modules
)
# NOTE: importing Milter to obtain version fails when milter.so not built
setup
(
name
=
"
pymilter
"
,
version
=
'
1.0.
1
'
,
setup
(
name
=
"
pymilter
"
,
version
=
'
1.0.
2
'
,
description
=
"
Python interface to sendmail milter API
"
,
long_description
=
"""
\
This is a python extension module to enable python scripts to
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment