[Python-modules-commits] [pyprind] 02/02: first packaging run

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


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

anarcat pushed a commit to branch master
in repository pyprind.

commit 3d2d84caf92993e11c16da0b03fd7ebd54016590
Author: Antoine Beaupré <anarcat at debian.org>
Date:   Sat Dec 30 11:04:01 2017 -0500

    first packaging run
---
 debian/changelog            |  7 +++++++
 debian/compat               |  1 +
 debian/control              | 38 ++++++++++++++++++++++++++++++++++++++
 debian/copyright            | 42 ++++++++++++++++++++++++++++++++++++++++++
 debian/python3-pyprind.docs |  1 +
 debian/rules                |  5 +++++
 debian/source/format        |  1 +
 debian/source/options       |  1 +
 debian/watch                |  4 ++++
 9 files changed, 100 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..cdd8ae9
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,7 @@
+pyprind (2.11.1-1) unstable; urgency=low
+
+  * Autogenerated by py2dsp v1.20151008
+  * Upload to unstable (Closes: #867800)
+
+ -- Antoine Beaupré <anarcat at debian.org>  Sat, 30 Dec 2017 15:57:37 +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..7c2880a
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,38 @@
+Source: pyprind
+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 (>= 10~), dh-python,
+               python-all,
+               python-setuptools,
+               python3-all,
+               python3-setuptools,
+Standards-Version: 3.9.8
+Homepage: https://github.com/rasbt/pyprind
+Vcs-Git: git://git.debian.org/git/python-modules/packages/pyprind.git/
+Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/pyprind/
+
+Package: python-pyprind
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends},
+Recommends: ${python:Recommends}
+Suggests: ${python:Suggests}
+Description: Python Progress Bar and Percent Indicator Utility - Python 2.X
+ The PyPrind (Python Progress Indicator) module provides a progress
+ bar and a percentage indicator object that let you track the progress
+ of a loop structure or other iterative computation.  Typical
+ applications include the processing of large data sets to provide an
+ intuitive estimate at runtime about the progress of the computation.
+
+Package: python3-pyprind
+Architecture: all
+Depends: ${misc:Depends}, ${python3:Depends},
+Recommends: ${python3:Recommends}
+Suggests: ${python3:Suggests}
+Description: Python Progress Bar and Percent Indicator Utility
+ The PyPrind (Python Progress Indicator) module provides a progress
+ bar and a percentage indicator object that let you track the progress
+ of a loop structure or other iterative computation.  Typical
+ applications include the processing of large data sets to provide an
+ intuitive estimate at runtime about the progress of the computation.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..babae60
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,42 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: PyPrind
+Upstream-Contact: Sebastian Raschka <mail at sebastianraschka.com>
+Source: https://github.com/rasbt/pyprind
+
+Files: *
+Copyright: (c) 2014-2016, Sebastian Raschka
+License: BSD-3-clause
+
+Files: debian/*
+Copyright: 2017 © Antoine Beaupré <anarcat at debian.org>
+License: BSD-3-clause
+
+License: BSD-3-clause
+ Copyright (c) 2014-2016, Sebastian Raschka
+ All rights reserved.
+ .
+ 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 biopandas 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.
+ .
diff --git a/debian/python3-pyprind.docs b/debian/python3-pyprind.docs
new file mode 100644
index 0000000..b43bf86
--- /dev/null
+++ b/debian/python3-pyprind.docs
@@ -0,0 +1 @@
+README.md
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..4fcdb3b
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,5 @@
+#! /usr/bin/make -f
+
+export PYBUILD_NAME=pyprind
+%:
+	dh $@ --with python3,python2 --buildsystem=pybuild
\ No newline at end of file
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..03e0c7f
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,4 @@
+# try also https://pypi.debian.net/PyPrind/watch
+version=3
+opts=uversionmangle=s/(rc|a|b|c)/~$1/ \
+https://pypi.debian.net/PyPrind/PyPrind-(.+)\.(?: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/pyprind.git



More information about the Python-modules-commits mailing list