[Python-modules-commits] [pilkit] 06/06: Initial release (Closes: #807333).
Michael Fladischer
fladi at moszumanska.debian.org
Mon Dec 7 15:18:05 UTC 2015
This is an automated email from the git hooks/post-receive script.
fladi pushed a commit to branch master
in repository pilkit.
commit 04c0ec7f58c30166ce8861b131f168f7c03a523c
Author: Michael Fladischer <FladischerMichael at fladi.at>
Date: Mon Dec 7 15:58:38 2015 +0100
Initial release (Closes: #807333).
---
debian/changelog | 5 +++++
debian/clean | 1 +
debian/compat | 1 +
debian/control | 47 ++++++++++++++++++++++++++++++++++++++++++++++
debian/copyright | 38 +++++++++++++++++++++++++++++++++++++
debian/python-pilkit.docs | 2 ++
debian/python3-pilkit.docs | 2 ++
debian/rules | 9 +++++++++
debian/watch | 3 +++
9 files changed, 108 insertions(+)
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..1600cb4
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+pilkit (1.1.13-1) unstable; urgency=low
+
+ * Initial release (Closes: #807333).
+
+ -- Michael Fladischer <fladi at debian.org> Mon, 07 Dec 2015 15:58:27 +0100
diff --git a/debian/clean b/debian/clean
new file mode 100644
index 0000000..90f32eb
--- /dev/null
+++ b/debian/clean
@@ -0,0 +1 @@
+pilkit.egg-info/SOURCES.txt
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..327dfdb
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,47 @@
+Source: pilkit
+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-mock,
+ python-nose,
+ python-pil,
+ python-setuptools,
+ python3-all,
+ python3-mock,
+ python3-nose,
+ python3-pil,
+ python3-setuptools
+Standards-Version: 3.9.6
+X-Python-Version: >= 2.6
+X-Python3-Version: >= 3.2
+Homepage: https://github.com/matthewwithanm/pilkit
+Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/pilkit.git
+Vcs-Git: git://anonscm.debian.org/python-modules/packages/pilkit.git
+
+Package: python-pilkit
+Architecture: all
+Depends: python-pil,
+ ${misc:Depends},
+ ${python:Depends}
+Description: Utilities and processors built for, and on top of PIL (Python2 version)
+ PILKit is a collection of utilities for working with PIL (the Python Imaging
+ Library). One of its main features is a set of processors which expose a simple
+ interface for performing manipulations on PIL images.
+ .
+ This package contains the Python 2 version of the library.
+
+Package: python3-pilkit
+Architecture: all
+Depends: python3-pil,
+ ${misc:Depends},
+ ${python3:Depends}
+Description: Utilities and processors built for, and on top of PIL (Python3 version)
+ PILKit is a collection of utilities for working with PIL (the Python Imaging
+ Library). One of its main features is a set of processors which expose a simple
+ interface for performing manipulations on PIL images.
+ .
+ This package contains the Python 3 version of the library.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..b706cc3
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,38 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: pilkit
+Upstream-Contact: Matthew Tretter <m at tthewwithanm.com>
+Source: https://github.com/matthewwithanm/pilkit
+
+Files: *
+Copyright: 2013, see AUTHORS
+License: BSD-3-clause
+
+Files: debian/*
+Copyright: 2015, Fladischer Michael <fladi at debian.org>
+License: BSD-3-clause
+
+License: BSD-3-clause
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are met:
+ .
+ 1. Redistributions of source code must retain the above copyright notice,
+ this list of conditions and the following disclaimer.
+ .
+ 2. Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+ .
+ 3. Neither the name of PILKit nor the names of its contributors
+ may be used to endorse or promote products derived from this software
+ without specific prior written permission.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
diff --git a/debian/python-pilkit.docs b/debian/python-pilkit.docs
new file mode 100644
index 0000000..c19ffba
--- /dev/null
+++ b/debian/python-pilkit.docs
@@ -0,0 +1,2 @@
+README.rst
+AUTHORS
diff --git a/debian/python3-pilkit.docs b/debian/python3-pilkit.docs
new file mode 100644
index 0000000..c19ffba
--- /dev/null
+++ b/debian/python3-pilkit.docs
@@ -0,0 +1,2 @@
+README.rst
+AUTHORS
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..ea63d36
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,9 @@
+#!/usr/bin/make -f
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+export PYBUILD_NAME=pilkit
+
+%:
+ dh $@ --with python2,python3 --buildsystem=pybuild
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..533d1f3
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+version=3
+opts=uversionmangle=s/(rc|a|b|c)/~$1/ \
+http://pypi.debian.net/pilkit/pilkit-(.+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))
\ No newline at end of file
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/pilkit.git
More information about the Python-modules-commits
mailing list