[Python-modules-commits] [svgwrite] 02/02: Imported Debian patch 1.1.8-1

Steffen Möller moeller at moszumanska.debian.org
Wed Jun 29 13:56:12 UTC 2016


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

moeller pushed a commit to branch master
in repository svgwrite.

commit 85b32de25a9dae64f636b84e7556dfb85e845d94
Author: Steffen Moeller <moeller at debian.org>
Date:   Wed Jun 29 12:31:34 2016 +0200

    Imported Debian patch 1.1.8-1
---
 debian/changelog                 |  5 +++++
 debian/compat                    |  1 +
 debian/control                   | 38 ++++++++++++++++++++++++++++++++++++++
 debian/copyright                 | 30 ++++++++++++++++++++++++++++++
 debian/python-svgwrite-docs.docs |  1 +
 debian/python-svgwrite.docs      |  5 +++++
 debian/rules                     | 13 +++++++++++++
 debian/source/format             |  1 +
 debian/watch                     |  4 ++++
 9 files changed, 98 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..516d52f
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+svgwrite (1.1.8-1) UNRELEASED; urgency=medium
+
+  * Initial release (Closes: #828974)
+
+ -- Steffen Moeller <moeller at debian.org>  Wed, 29 Jun 2016 12:31:34 +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..610f41e
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,38 @@
+Source: svgwrite
+Section: python
+Priority: optional
+Maintainer: Steffen Moeller <moeller at debian.org>
+Build-Depends: debhelper (>=9),dh-python,python-all (>= 2.6.6-3~),python-setuptools,python3-all,python3-setuptools
+Standards-Version: 3.9.8
+Homepage: https://pypi.python.org/pypi/svgwrite
+X-Python-Version: >= 2.6
+X-Python3-Version: >= 3.2
+#Vcs-Git: git://anonscm.debian.org/collab-maint/python-svgwrite.git
+#Vcs-Browser: https://anonscm.debian.org/cgit/collab-maint/python-svgwrite.git
+
+Package: python-svgwrite
+Architecture: all
+Depends: python-pyparsing (>= 2.0.1), ${python:Depends}, ${misc:Depends}
+Suggests: python-svgwrite-doc
+Description: library to create SVG drawings (Python 2)
+ Programmatically create Scalable Vector Graphics.
+ .
+ This package installs the library for Python 2.
+
+Package: python3-svgwrite
+Architecture: all
+Depends: python3-pyparsing (>= 2.0.1), ${python3:Depends}, ${misc:Depends}
+Suggests: python-svgwrite-doc
+Description: library to create SVG drawings (Python 3)
+ Programmatically create Scalable Vector Graphics.
+ .
+ This package installs the library for Python 3.
+
+Package: python-svgwrite-doc
+Architecture: all
+Section: doc
+Depends: ${sphinxdoc:Depends}, ${misc:Depends}
+Description: library to create SVG drawings (common documentation)
+ Programmatically create Scalable Vector Graphics.
+ .
+ This package provides examples for the use of this library.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..5148f2a
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,30 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: python-svgwrite
+Source: https://pypi.python.org/pypi/svgwrite
+
+Files: *
+Copyright: 2010-2012  Manfred Moitzi <mozman at gmx.at>
+License: MIT
+
+Files: debian/*
+Copyright: 2016 Steffen Moeller <moeller at debian.org>
+License: MIT
+
+License: MIT
+ 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.
diff --git a/debian/python-svgwrite-docs.docs b/debian/python-svgwrite-docs.docs
new file mode 100644
index 0000000..e39721e
--- /dev/null
+++ b/debian/python-svgwrite-docs.docs
@@ -0,0 +1 @@
+examples/*
diff --git a/debian/python-svgwrite.docs b/debian/python-svgwrite.docs
new file mode 100644
index 0000000..b26b312
--- /dev/null
+++ b/debian/python-svgwrite.docs
@@ -0,0 +1,5 @@
+LICENSE.TXT
+NEWS.rst
+PKG-INFO
+README.rst
+requirements.txt
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..d68cace
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,13 @@
+#!/usr/bin/make -f
+# See debhelper(7) (uncomment to enable)
+# output every command that modifies files on the build system.
+export DH_VERBOSE = 1
+
+export PYBUILD_NAME=svgwrite
+
+%:
+	dh $@  --with python2,python3 --buildsystem=pybuild
+
+override_dh_auto_clean:
+	dh_clean
+	rm -rf svgwrite.egg-info .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..49eb942
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,4 @@
+version=4
+
+https://pypi.python.org/packages/source/s/svgwrite/ \
+  svgwrite-(.+)\.tar\.gz debian uupdate

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



More information about the Python-modules-commits mailing list