[Python-modules-commits] [python-colour] 02/04: first packaging run

Antoine Beaupré anarcat at moszumanska.debian.org
Sat Dec 30 16:21:47 UTC 2017


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

anarcat pushed a commit to branch master
in repository python-colour.

commit 0d6005dad8904c0db3d38192c2b2062f37290871
Author: Antoine Beaupré <anarcat at debian.org>
Date:   Sat Dec 30 11:14:47 2017 -0500

    first packaging run
---
 debian/changelog           |  7 +++++
 debian/compat              |  1 +
 debian/control             | 64 ++++++++++++++++++++++++++++++++++++++++++++++
 debian/copyright           | 33 ++++++++++++++++++++++++
 debian/python3-colour.docs |  1 +
 debian/rules               |  5 ++++
 debian/source/format       |  1 +
 debian/source/options      |  1 +
 debian/watch               |  4 +++
 9 files changed, 117 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..229856b
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,7 @@
+python-colour (0.1.5-1) unstable; urgency=low
+
+  * Autogenerated by py2dsp v1.20151008
+  * Upload to unstable (Closes: #867799)
+
+ -- Antoine Beaupré <anarcat at debian.org>  Sat, 30 Dec 2017 16:08:26 +0000
+
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..f599e28
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+10
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..c186c3c
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,64 @@
+Source: python-colour
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Antoine Beaupré <anarcat at debian.org>
+Build-Depends: debhelper (>= 9), dh-python,
+               python-all,
+               python-setuptools,
+               python3-all,
+               python3-setuptools,
+Standards-Version: 3.9.8
+Homepage: http://github.com/vaab/colour
+Vcs-Git: git://git.debian.org/git/python-modules/packages/python-colour.git/
+Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/python-colour/
+
+Package: python-colour
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends},
+Recommends: ${python:Recommends}
+Suggests: ${python:Suggests}
+Description: converts and manipulates various color representation - Python 2.X
+ Converts and manipulates common color representation (RGB, HSL, web, ...)
+ .
+ * Damn simple and pythonic way to manipulate color representation
+ .
+ * Full conversion between RGB, HSL, 6-digit hex, 3-digit hex, human
+   color
+ .
+ * One object (Color) or bunch of single purpose function (rgb2hex,
+   hsl2rgb, ...)
+ .
+ * web format that use the smallest representation between 6-digit
+   (e.g. #fa3b2c), 3-digit (e.g. #fbb), fully spelled color
+   (e.g. white), following W3C color naming for compatible CSS or HTML
+   color specifications.
+ .
+ * smooth intuitive color scale generation choosing N color gradients.
+ .
+ * can pick colors for you to identify objects of your application.
+
+Package: python3-colour
+Architecture: all
+Depends: ${misc:Depends}, ${python3:Depends},
+Recommends: ${python3:Recommends}
+Suggests: ${python3:Suggests}
+Description: converts and manipulates various color representation - Python 2.X
+ Converts and manipulates common color representation (RGB, HSL, web, ...)
+ .
+ * Damn simple and pythonic way to manipulate color representation
+ .
+ * Full conversion between RGB, HSL, 6-digit hex, 3-digit hex, human
+   color
+ .
+ * One object (Color) or bunch of single purpose function (rgb2hex,
+   hsl2rgb, ...)
+ .
+ * web format that use the smallest representation between 6-digit
+   (e.g. #fa3b2c), 3-digit (e.g. #fbb), fully spelled color
+   (e.g. white), following W3C color naming for compatible CSS or HTML
+   color specifications.
+ .
+ * smooth intuitive color scale generation choosing N color gradients.
+ .
+ * can pick colors for you to identify objects of your application.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..9dd7a6a
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,33 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: colour
+Upstream-Contact: Valentin LAB <valentin.lab at kalysto.org>
+Source: http://github.com/vaab/colour
+
+Files: *
+Copyright: (c) 2012-2017, Valentin Lab
+License: BSD-2-Clause
+
+Files: debian/*
+Copyright: 2017 © Antoine Beaupré <anarcat at debian.org>
+License: BSD-2-Clause
+
+License: BSD-2-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.
+ .
+ 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/python3-colour.docs b/debian/python3-colour.docs
new file mode 100644
index 0000000..a1320b1
--- /dev/null
+++ b/debian/python3-colour.docs
@@ -0,0 +1 @@
+README.rst
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..ee959eb
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,5 @@
+#! /usr/bin/make -f
+
+export PYBUILD_NAME=colour
+%:
+	dh $@ --with python3,python2 --buildsystem=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/source/options b/debian/source/options
new file mode 100644
index 0000000..d81db3f
--- /dev/null
+++ b/debian/source/options
@@ -0,0 +1 @@
+extend-diff-ignore="^[^/]+.egg-info/"
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..bdf47a7
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,4 @@
+# try also https://pypi.debian.net/colour/watch
+version=3
+opts=uversionmangle=s/(rc|a|b|c)/~$1/ \
+https://pypi.debian.net/colour/colour-(.+)\.(?: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-colour.git



More information about the Python-modules-commits mailing list