[Python-modules-commits] [python-click-threading] 03/03: Initial release

Filip Pytloun fpytloun-guest at moszumanska.debian.org
Thu Aug 11 09:48:28 UTC 2016


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

fpytloun-guest pushed a commit to branch master
in repository python-click-threading.

commit cc7803cd7cb8cbb1d37a18d554a2ae1ddad2625d
Author: Filip Pytloun <filip at pytloun.cz>
Date:   Thu Aug 11 11:37:55 2016 +0200

    Initial release
---
 debian/.git-dpm       |  3 +++
 debian/changelog      |  5 +++++
 debian/compat         |  1 +
 debian/control        | 45 +++++++++++++++++++++++++++++++++++++++++++++
 debian/copyright      | 30 ++++++++++++++++++++++++++++++
 debian/rules          |  9 +++++++++
 debian/source/options |  1 +
 debian/watch          |  3 +++
 8 files changed, 97 insertions(+)

diff --git a/debian/.git-dpm b/debian/.git-dpm
index fdeb4dd..6cc8328 100644
--- a/debian/.git-dpm
+++ b/debian/.git-dpm
@@ -6,3 +6,6 @@
 python-click-threading_0.4.0.orig.tar.gz
 e86ac35f488c4dc9cc116d2cf764dd73318f6dee
 3841
+debianTag="debian/%e%v"
+patchedTag="patched/%e%v"
+upstreamTag="upstream/%e%u"
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..f72fa0b
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+python-click-threading (0.4.0-1) unstable; urgency=low
+
+  * initial release (Closes: #833996)
+
+ -- Filip Pytloun <filip at pytloun.cz>  Thu, 11 Aug 2016 11:46:20 +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..d05ca61
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,45 @@
+Source: python-click-threading
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Filip Pytloun <filip at pytloun.cz>
+Section: python
+Priority: optional
+Build-Depends: debhelper (>= 9),
+               dh-python (>= 2.20160609~),
+               python-all,
+               python-click (>= 5.0),
+               python-concurrent.futures,
+               python-pytest,
+               python-setuptools,
+               python3-all,
+               python3-click (>= 5.0),
+               python3-pytest,
+               python3-setuptools
+Standards-Version: 3.9.8
+Testsuite: autopkgtest-pkg-python
+Homepage: https://github.com/click-contrib/click-threading
+Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/python-click-threading.git/
+Vcs-Git: https://anonscm.debian.org/git/python-modules/packages/python-click-threading.git
+
+Package: python-click-threading
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}
+Description: Utilities for multithreading in click - Python 2.7
+ Libraryfor easier multithreaded development with Click.
+ Click is a Python package for creating beautiful command line interfaces in a
+ composable way with as little code as necessary. It’s the “Command Line
+ Interface Creation Kit”. It’s highly configurable but comes with sensible
+ defaults out of the box.
+ .
+ This package contains the Python 2.7 module.
+
+Package: python3-click-threading
+Architecture: all
+Depends: ${misc:Depends}, ${python3:Depends}
+Description: Utilities for multithreading in click - Python 3.x
+ Library for easier multithreaded development with Click.
+ Click is a Python package for creating beautiful command line interfaces in a
+ composable way with as little code as necessary. It’s the “Command Line
+ Interface Creation Kit”. It’s highly configurable but comes with sensible
+ defaults out of the box.
+ .
+ This package contains the Python 3.x module.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..3f46652
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,30 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: click-threading
+Source: https://github.com/click-contrib/click-threading
+
+Files: *
+Copyright: 2014-2015 Markus Unterwaditzer
+License: Expat
+
+Files: debian/*
+Copyright: 2016 Filip Pytloun <filip at pytloun.cz>
+License: Expat
+
+License: Expat
+  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/rules b/debian/rules
new file mode 100755
index 0000000..f29443a
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,9 @@
+#!/usr/bin/make -f
+
+export PYBUILD_NAME=click-threading
+
+%:
+	dh $@ --with python2,python3 --buildsystem=pybuild
+
+override_dh_auto_test:
+	LC_ALL=C.UTF-8 dh_auto_test
diff --git a/debian/source/options b/debian/source/options
new file mode 100644
index 0000000..cb61fa5
--- /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..6e5328f
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+version=3
+opts=filenamemangle=s/.+\/v?(\d\S*)\.tar\.gz/python-click-threading-$1\.tar\.gz/ \
+  https://github.com/click-contrib/click-threading/tags .*/v?(\d\S*)\.tar\.gz

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



More information about the Python-modules-commits mailing list