[Python-modules-commits] [python-mailer] 02/02: Imported Debian patch 0.8.1-1

Hugo Lefeuvre hle at moszumanska.debian.org
Fri Aug 19 08:51:13 UTC 2016


This is an automated email from the git hooks/post-receive script.

hle pushed a commit to branch master
in repository python-mailer.

commit dbcec84ef1ac3169849ef7679131f5713bded2a4
Author: Hugo Lefeuvre <hle at debian.org>
Date:   Fri Aug 19 12:48:04 2016 +0200

    Imported Debian patch 0.8.1-1
---
 debian/changelog     | 31 +++++++++++++++++++++++++++++++
 debian/compat        |  1 +
 debian/control       | 38 ++++++++++++++++++++++++++++++++++++++
 debian/copyright     | 42 ++++++++++++++++++++++++++++++++++++++++++
 debian/rules         |  7 +++++++
 debian/source/format |  1 +
 debian/watch         |  4 ++++
 7 files changed, 124 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..f25b1c3
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,31 @@
+python-mailer (0.8.1-1) unstable; urgency=low
+
+  * New upstream release.
+  * New Maintainer (DPMT) and Uploader (Hugo Lefeuvre).
+  * debian/control:
+    - Bump Standards-Version to 3.9.8.
+    - Depend on debhelper >= 9.
+    - Build a python3 binary package. Add needed Build-Dependencies.
+    - Update Homepage field to use protocol HTTPS.
+  * debian/rules:
+    - Use pybuild.
+  * Set compatibility number to 9.
+  * debian/copyright:
+    - Make debian/copyright DEP5 compliant.
+    - Update copyright years.
+    - Add a new field for Hugo Lefeuvre.
+    - Update Source field to use protocol HTTPS.
+
+ -- Hugo Lefeuvre <hle at debian.org>  Fri, 19 Aug 2016 12:48:04 +0200
+
+python-mailer (0.7-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- David Watson <dwatson at debian.org>  Sun, 07 Aug 2011 21:28:32 +0100
+
+python-mailer (0.5-1) unstable; urgency=low
+
+  * Initial release (Closes: #588319)
+
+ -- David Watson <dwatson at debian.org>  Wed, 07 Jul 2010 11:06:21 +0100
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..bf6c117
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,38 @@
+Source: python-mailer
+Section: python
+Priority: extra
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: David Watson <dwatson at debian.org>,
+           Hugo Lefeuvre <hle at debian.org>
+Build-Depends: debhelper (>= 9), 
+               dh-python,
+               python-all,
+               python-setuptools,
+               python3-all,
+               python3-setuptools
+Standards-Version: 3.9.8
+X-Python-Version: >= 2.6
+X-Python3-Version: >= 3.2
+Homepage: https://pypi.python.org/pypi/mailer
+Vcs-Git: https://anonscm.debian.org/git/python-modules/packages/python-mailer.git
+Vcs-Browser: https://anonscm.debian.org/git/python-modules/packages/python-mailer.git
+
+Package: python-mailer
+Architecture: all
+Depends: ${python:Depends}, ${misc:Depends}
+Description: Python module that simplifies sending email (Python 2)
+ Simplifies sending emails in Python, features a single class to send
+ plain text, HTML email, and attachments.  Mailer auto detects attachment
+ types and has support for internationalized headers.
+ .
+ This is the Python 2 version of the package. 
+
+Package: python3-mailer
+Architecture: all
+Depends: ${python3:Depends}, ${misc:Depends}
+Description: Python module that simplifies sending email (Python 3)
+ Simplifies sending emails in Python, features a single class to send
+ plain text, HTML email, and attachments.  Mailer auto detects attachment
+ types and has support for internationalized headers.
+ .
+ This is the Python 3 version of the package. 
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..8b1ad1e
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,42 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: mailer
+Upstream-Contact: Ryan Ginstrom <software at ginstrom.com>
+Source: https://pypi.python.org/pypi/mailer/
+
+Files: *
+Copyright: 2009 Ryan Ginstrom <software at ginstrom.com>,
+           2009 Douglas Mayle
+License: Expat: 
+ Permission is hereby granted, free of charge, to any person obtaining
+ a copy of this software and associated documentation files (the
+ "Software"), to deal in the Software without restriction, including
+ without limitation the rights to use, copy, modify, merge, publish,
+ distribute, sublicense, and/or sell copies of the Software, and to
+ permit persons to whom the Software is furnished to do so, subject to
+ the following conditions:
+ .
+ The above copyright notice and this permission notice shall be included
+ in all copies or substantial portions of the Software.
+ .
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+Files: debian/*
+Copyright: 2010-2016 David Watson <dwatson at debian.org>,
+           2016 Hugo Lefeuvre <hle at debian.org>
+License: GPL-3:
+ This program is free software: you can redistribute it and/or modify it 
+ under the terms of the GNU General Public License as published by the Free 
+ Software Foundation, version 3 of the License.
+ .
+ This program is distributed in the hope that it will be useful, but WITHOUT
+ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License along with 
+ this program.  If not, see <http://www.gnu.org/licenses/>.
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..9e9e838
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,7 @@
+#!/usr/bin/make -f
+
+export DH_VERBOSE = 1
+export PYBUILD_NAME=mailer
+
+%:
+	dh  $@ --with python2,python3 --builder=pybuild
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..5de4204
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,4 @@
+version=3
+
+# Current version from Python cheeseshop.
+http://pypi.python.org/packages/source/m/mailer/mailer-(.+).zip

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-mailer.git



More information about the Python-modules-commits mailing list