[Python-modules-commits] r34489 - in packages/python-cycler/trunk (9 files)

morph at users.alioth.debian.org morph at users.alioth.debian.org
Sun Oct 4 13:16:52 UTC 2015


    Date: Sunday, October 4, 2015 @ 13:16:51
  Author: morph
Revision: 34489

[svn-inject] Applying Debian modifications (0.9.0-1) to trunk

Added:
  packages/python-cycler/trunk/debian/
  packages/python-cycler/trunk/debian/changelog
  packages/python-cycler/trunk/debian/compat
  packages/python-cycler/trunk/debian/control
  packages/python-cycler/trunk/debian/copyright
  packages/python-cycler/trunk/debian/rules
  packages/python-cycler/trunk/debian/source/
  packages/python-cycler/trunk/debian/source/format
  packages/python-cycler/trunk/debian/watch


Property changes on: packages/python-cycler/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
   + 1

Added: packages/python-cycler/trunk/debian/changelog
===================================================================
--- packages/python-cycler/trunk/debian/changelog	                        (rev 0)
+++ packages/python-cycler/trunk/debian/changelog	2015-10-04 13:16:51 UTC (rev 34489)
@@ -0,0 +1,5 @@
+python-cycler (0.9.0-1) unstable; urgency=low
+
+  * Initial release (Closes: #791376)
+
+ -- Sandro Tosi <morph at debian.org>  Sun, 04 Oct 2015 12:53:26 +0100

Added: packages/python-cycler/trunk/debian/compat
===================================================================
--- packages/python-cycler/trunk/debian/compat	                        (rev 0)
+++ packages/python-cycler/trunk/debian/compat	2015-10-04 13:16:51 UTC (rev 34489)
@@ -0,0 +1 @@
+9

Added: packages/python-cycler/trunk/debian/control
===================================================================
--- packages/python-cycler/trunk/debian/control	                        (rev 0)
+++ packages/python-cycler/trunk/debian/control	2015-10-04 13:16:51 UTC (rev 34489)
@@ -0,0 +1,34 @@
+Source: python-cycler
+Section: python
+Priority: optional
+Maintainer: Sandro Tosi <morph at debian.org>
+Uploaders: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Build-Depends: debhelper (>= 9), python-all, python3-all, dh-python, python-six, python3-six
+Standards-Version: 3.9.6
+Homepage: http://github.com/matplotlib/cycler
+#Vcs-Git: git://anonscm.debian.org/collab-maint/cycler.git
+#Vcs-Browser: http://anonscm.debian.org/?p=collab-maint/cycler.git;a=summary
+
+Package: python-cycler
+Architecture: all
+Depends: ${python:Depends}, ${misc:Depends}
+Description: composable kwarg iterator (Python 2)
+ When using matplotlib and plotting more than one line, it is common to want to
+ be able to cycle over one  or more artist styles; but the plotting logic can
+ quickly become very involved.
+ .
+ To address this and allow easy cycling over arbitrary 'kwargs' the `Cycler`
+ class, a composable kwarg iterator, was developed.
+
+Package: python3-cycler
+Architecture: all
+Depends: ${python3:Depends}, ${misc:Depends}
+Description: composable kwarg iterator (Python 3)
+ When using matplotlib and plotting more than one line, it is common to want to
+ be able to cycle over one  or more artist styles; but the plotting logic can
+ quickly become very involved.
+ .
+ To address this and allow easy cycling over arbitrary 'kwargs' the `Cycler`
+ class, a composable kwarg iterator, was developed.
+ .
+ This package contains the Python 3 version of Cycler.

Added: packages/python-cycler/trunk/debian/copyright
===================================================================
--- packages/python-cycler/trunk/debian/copyright	                        (rev 0)
+++ packages/python-cycler/trunk/debian/copyright	2015-10-04 13:16:51 UTC (rev 34489)
@@ -0,0 +1,37 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: cycler
+Source: http://github.com/matplotlib/cycler
+
+Files: *
+Copyright: Copyright (c) 2015, matplotlib project
+License: BSD
+
+License: BSD
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are met:
+ .
+ * Redistributions of source code must retain the above copyright notice, this
+   list of conditions and the following disclaimer.
+ .
+ * 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.
+ .
+ * Neither the name of the matplotlib project 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 HOLDER 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.
+
+Files: debian/*
+Copyright: 2015 Sandro Tosi <morph at debian.org>
+License: BSD

Added: packages/python-cycler/trunk/debian/rules
===================================================================
--- packages/python-cycler/trunk/debian/rules	                        (rev 0)
+++ packages/python-cycler/trunk/debian/rules	2015-10-04 13:16:51 UTC (rev 34489)
@@ -0,0 +1,29 @@
+#!/usr/bin/make -f
+
+PY2VERS := $(shell pyversions -s)
+PY3VERS := $(shell py3versions -s)
+
+%:
+	dh $@ --with python2,python3
+
+override_dh_auto_clean:
+	dh_auto_clean
+
+	rm -rf $(CURDIR)/cycler.egg-info/
+
+override_dh_auto_build:
+	set -e ; \
+	for python in $(PY2VERS) $(PY3VERS); do \
+		$$python setup.py build; \
+	done
+
+override_dh_auto_install:
+	set -e ; \
+	for python in $(PY2VERS); do \
+		$$python setup.py install --root=debian/python-cycler --install-layout=deb; \
+	done
+	set -e ; \
+	for python in $(PY3VERS); do \
+		$$python setup.py install --root=debian/python3-cycler --install-layout=deb; \
+	done
+


Property changes on: packages/python-cycler/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
   + *

Added: packages/python-cycler/trunk/debian/source/format
===================================================================
--- packages/python-cycler/trunk/debian/source/format	                        (rev 0)
+++ packages/python-cycler/trunk/debian/source/format	2015-10-04 13:16:51 UTC (rev 34489)
@@ -0,0 +1 @@
+3.0 (quilt)

Added: packages/python-cycler/trunk/debian/watch
===================================================================
--- packages/python-cycler/trunk/debian/watch	                        (rev 0)
+++ packages/python-cycler/trunk/debian/watch	2015-10-04 13:16:51 UTC (rev 34489)
@@ -0,0 +1,6 @@
+# Compulsory line, this is a version 3 file
+version=3
+
+opts="filenamemangle=s/(?:.*)?v?(\d[\d\.]*)\.tar\.gz/cycler-$1.tar.gz/" \
+https://github.com/matplotlib/cycler/tags (?:.*/)?v?(\d[\d\.]*)\.tar\.gz
+




More information about the Python-modules-commits mailing list