[Python-modules-commits] [python-sievelib] 02/02: Initial release (Closes: #800437).
Michael Fladischer
fladi at moszumanska.debian.org
Tue Sep 29 10:44:24 UTC 2015
This is an automated email from the git hooks/post-receive script.
fladi pushed a commit to branch master
in repository python-sievelib.
commit d952aa44674f0311d6bb32310b30dc14b66c77f8
Author: Michael Fladischer <FladischerMichael at fladi.at>
Date: Tue Sep 29 12:25:17 2015 +0200
Initial release (Closes: #800437).
---
debian/changelog | 5 ++++
debian/compat | 1 +
debian/control | 65 ++++++++++++++++++++++++++++++++++++++++++++
debian/copyright | 25 +++++++++++++++++
debian/python-sievelib.docs | 1 +
debian/python3-sievelib.docs | 1 +
debian/rules | 12 ++++++++
debian/source/format | 1 +
debian/watch | 3 ++
9 files changed, 114 insertions(+)
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..29346c4
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+python-sievelib (0.8+git20150929.71f2dee-1) unstable; urgency=low
+
+ * Initial release (Closes: #800437).
+
+ -- Michael Fladischer <fladi at debian.org> Tue, 28 Apr 2015 17:35:01 +0200
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..ec63514
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..e999854
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,65 @@
+Source: python-sievelib
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Michael Fladischer <fladi at debian.org>
+Build-Depends: debhelper (>= 9),
+ dh-python,
+ python-all,
+ python-nose,
+ python-setuptools,
+ python-six,
+ python3-all,
+ python3-nose,
+ python3-setuptools,
+ python3-six
+Standards-Version: 3.9.6
+X-Python-Version: >= 2.7
+X-Python3-Version: >= 3.4
+Homepage: https://github.com/tonioo/sievelib
+Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/sievelib.git
+Vcs-Git: git://anonscm.debian.org/python-modules/packages/sievelib.git
+
+Package: python-sievelib
+Architecture: all
+Depends: ${misc:Depends},
+ ${python:Depends}
+Description: Client-side Sieve and Managesieve library
+ Client-side Sieve and Managesieve library written in Python.
+ .
+ Sieve:
+ Currently, the provided parser supports most of the functionalities described
+ in RFC 5228. The only exception concerns section 2.4.2.4. Encoding Characters
+ using "encoded-character" which is not supported.
+ The following Sieve extensions are also supported:
+ * Date and Index (RFC 5260)
+ * Vacation (RFC 5230)
+ .
+ ManageSieve:
+ All mandatory commands are supported. The RENAME extension is supported, with a
+ simulated behaviour for server that do not support it.
+ For the AUTHENTICATE command, supported mechanisms are DIGEST-MD5, PLAIN and
+ LOGIN.
+
+Package: python3-sievelib
+Architecture: all
+Depends: ${misc:Depends},
+ ${python3:Depends}
+Description: Client-side Sieve and Managesieve library (Python3 version)
+ Client-side Sieve and Managesieve library written in Python.
+ .
+ Sieve:
+ Currently, the provided parser supports most of the functionalities described
+ in RFC 5228. The only exception concerns section 2.4.2.4. Encoding Characters
+ using "encoded-character" which is not supported.
+ The following Sieve extensions are also supported:
+ * Date and Index (RFC 5260)
+ * Vacation (RFC 5230)
+ .
+ ManageSieve:
+ All mandatory commands are supported. The RENAME extension is supported, with a
+ simulated behaviour for server that do not support it.
+ For the AUTHENTICATE command, supported mechanisms are DIGEST-MD5, PLAIN and
+ LOGIN.
+ .
+ This package contains the Python 3 version of the library.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..33a96f2
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,25 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: sievelib
+Upstream-Contact: Antoine Nguyen <tonio at ngyn.org>
+Source: https://pypi.python.org/pypi/sievelib
+
+Files: *
+Copyright: 2011-2013, Antoine Nguyen <tonio at ngyn.org>
+License: Expat
+
+Files: debian/*
+Copyright: 2015, Fladischer Michael <fladi at debian.org>
+License: Expat
+
+License: Expat
+ Permission to use, copy, modify, and/or distribute this software for any
+ purpose with or without fee is hereby granted, provided that the above
+ copyright notice and this permission notice appear in all copies.
+ .
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
diff --git a/debian/python-sievelib.docs b/debian/python-sievelib.docs
new file mode 100644
index 0000000..a1320b1
--- /dev/null
+++ b/debian/python-sievelib.docs
@@ -0,0 +1 @@
+README.rst
diff --git a/debian/python3-sievelib.docs b/debian/python3-sievelib.docs
new file mode 100644
index 0000000..a1320b1
--- /dev/null
+++ b/debian/python3-sievelib.docs
@@ -0,0 +1 @@
+README.rst
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..acf0154
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,12 @@
+#!/usr/bin/make -f
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+export PYBUILD_NAME=sievelib
+
+%:
+ dh $@ --with python2,python3 --buildsystem=pybuild
+
+override_dh_auto_test:
+ PYBUILD_SYSTEM=custom PYBUILD_TEST_ARGS="python{version} -m nose" dh_auto_test
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..35772e0
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+version=3
+opts=uversionmangle=s/(rc|a|b|c)/~$1/ \
+https://pypi.debian.net/sievelib/sievelib-(.+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-sievelib.git
More information about the Python-modules-commits
mailing list