[Pkg-bitcoin-commits] [python-quamash] 269/269: Initial packaging.

Jonas Smedegaard dr at jones.dk
Fri Nov 24 11:26:43 UTC 2017


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

js pushed a commit to branch master
in repository python-quamash.

commit fb389110a6498a9298f9abd7c39306029442f2f8
Author: Jonas Smedegaard <dr at jones.dk>
Date:   Fri Nov 24 10:15:41 2017 +0100

    Initial packaging.
---
 debian/changelog                |  6 ++++
 debian/compat                   |  1 +
 debian/control                  | 35 +++++++++++++++++++++++
 debian/copyright                | 62 +++++++++++++++++++++++++++++++++++++++++
 debian/copyright-check          | 24 ++++++++++++++++
 debian/copyright_hints          | 57 +++++++++++++++++++++++++++++++++++++
 debian/gbp.conf                 |  6 ++++
 debian/rules                    |  3 ++
 debian/source/format            |  1 +
 debian/source/lintian-overrides |  3 ++
 debian/watch                    |  5 ++++
 11 files changed, 203 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..f12e0f3
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,6 @@
+python-quamash (0.5.5~dfsg-1) unstable; urgency=low
+
+  * Initial packaging release.
+    Closes: bug#882583.
+
+ -- Jonas Smedegaard <dr at jones.dk>  Fri, 24 Nov 2017 10:15:24 +0100
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..feff452
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,35 @@
+Source: python-quamash
+Section: python
+Priority: optional
+Maintainer: Debian Bitcoin Packaging Team <pkg-bitcoin-devel at lists.alioth.debian.org>
+Uploaders: Jonas Smedegaard <dr at jones.dk>
+Build-Depends:
+ debhelper,
+ dh-python,
+ python3,
+ python3-pyqt5 | python3-pyqt4 | python3-pyside,
+ python3-setuptools,
+Standards-Version: 4.1.1
+Vcs-Git: https://anonscm.debian.org/git/pkg-bitcoin/python-quamash.git
+Vcs-Browser: https://anonscm.debian.org/git/pkg-bitcoin/python-quamash.git
+Homepage: https://github.com/harvimt/quamash
+
+Package: python3-quamash
+Architecture: all
+Depends: ${cdbs:Depends},
+ ${misc:Depends},
+ ${python3:Depends},
+ python3-pyqt5 | python3-pyqt4 | python3-pyside,
+Provides: ${python3:Provides}
+Description: implementation of the PEP 3156 event-loop with Qt
+ Implementation of asyncio event loop that uses the Qt Event loop,
+ as proposed in PEP 3156.
+ .
+ PEP 3156 is a proposal for asynchronous I/O in Python 3,
+ starting at Python 3.3.
+ The proposal includes a pluggable event loop, transport
+ and protocol abstractions similar to those in Twisted,
+ and a higher-level scheduler.
+ .
+ Qt is a cross-platform application framework
+ that is used for developing application software.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..ab4d9e8
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,62 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: Quamash
+Upstream-Contact: https://github.com/harvimt/quamash/issues
+Source: https://github.com/harvimt/quamash/releases
+ git://github.com/harvimt/quamash
+ Repackaged, excluding potentially non-DFSG binary code
+Files-Excluded:
+ wheelhouse
+
+Files: *
+Copyright:
+  2014, Mark Harviston <mark.harviston at gmail.com>
+  2014, Arve Knudsen <arve.knudsen at gmail.com>
+License: BSD-2-clause
+
+Files: debian/*
+Copyright: 2016-2017, Jonas Smedegaard <dr at jones.dk>
+License-Grant:
+ This program is free software;
+ you can redistribute it and/or modify it
+ under the terms of the GNU General Public License
+ as published by the Free Software Foundation;
+ either version 3 of the License, or (at your option) any later version.
+License: GPL-3+
+
+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 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.
+
+License: GPL-3+
+License-Reference: /usr/share/common-licenses/GPL-3
diff --git a/debian/copyright-check b/debian/copyright-check
new file mode 100755
index 0000000..129b94d
--- /dev/null
+++ b/debian/copyright-check
@@ -0,0 +1,24 @@
+#!/bin/sh
+# Copyright © 2016-2017  Jonas Smedegaard <dr at jones.dk>
+# Description: helper script to update copyright_hints
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3, or (at your option)
+# any later version.
+#
+# This program is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+# General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
+set -eu
+
+make -f /usr/share/cdbs/1/rules/utils.mk pre-build || true
+make -f /usr/share/cdbs/1/rules/utils.mk clean DEB_COPYRIGHT_CHECK_STRICT=1
+
+# unconditionally merge changes - safe to do with git-tracked package
+[ ! -f debian/copyright_newhints ] || mv -f debian/copyright_newhints debian/copyright_hints
diff --git a/debian/copyright_hints b/debian/copyright_hints
new file mode 100644
index 0000000..e8ab89b
--- /dev/null
+++ b/debian/copyright_hints
@@ -0,0 +1,57 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: FIXME
+Upstream-Contact: FIXME
+Source: FIXME
+Disclaimer: Autogenerated by CDBS
+
+Files: MANIFEST.in
+ README.rst
+ appveyor.yml
+ appveyor/install.ps1
+ conftest.py
+ debian/compat
+ debian/control
+ debian/gbp.conf
+ debian/rules
+ debian/source/format
+ debian/watch
+ setup.cfg
+ setup.py
+ tox.ini
+Copyright: NONE
+License: UNKNOWN
+ FIXME
+
+Files: quamash/_common.py
+ quamash/_unix.py
+ quamash/_windows.py
+ tests/test_qeventloop.py
+ tests/test_qthreadexec.py
+Copyright: 2013, Mark Harviston <mark.harviston at gmail.com>
+  2014, Arve Knudsen <arve.knudsen at gmail.com>
+  2014, Mark Harviston <mark.harviston at gmail.com>
+License: UNKNOWN
+ FIXME
+
+Files: LICENSE
+Copyright: 2014, Mark Harviston, Arve Knudsen
+License: BSD-2-clause
+ FIXME
+
+Files: quamash/__init__.py
+Copyright: 2014, Arve Knudsen <arve.knudsen at gmail.com>
+  2014, Mark Harviston <mark.harviston at gmail.com>
+License: BSD~unspecified
+ FIXME
+
+Files: debian/copyright-check
+Copyright: 2016-2017, Jonas Smedegaard <dr at jones.dk>
+License: GPL-3+
+ FIXME
+
+Files: debian/source/lintian-overrides
+Copyright: GPL-3+
+  gpl-3+
+License: UNKNOWN
+ FIXME
+
diff --git a/debian/gbp.conf b/debian/gbp.conf
new file mode 100644
index 0000000..2a594ca
--- /dev/null
+++ b/debian/gbp.conf
@@ -0,0 +1,6 @@
+# Configuration file for git-buildpackage and friends
+
+[DEFAULT]
+pristine-tar = True
+sign-tags = True
+filter = */.git*
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..5aa9c88
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,3 @@
+#!/usr/bin/make -f
+%:
+	dh $@ --with python3 --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/lintian-overrides b/debian/source/lintian-overrides
new file mode 100644
index 0000000..e5f206a
--- /dev/null
+++ b/debian/source/lintian-overrides
@@ -0,0 +1,3 @@
+# License is in License-Reference field (see bug#786450)
+missing-license-paragraph-in-dep5-copyright gpl-3\+ *
+missing-license-text-in-dep5-copyright GPL-3\+ *
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..74b80c4
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,5 @@
+# run "uscan --report" to check or "gpb import-orig --uscan" to update
+version=4
+opts="filenamemangle=s%(?:.*?)?v?(@ANY_VERSION@@ARCHIVE_EXT@)%@PACKAGE at -$1%,dversionmangle=s/~dfsg\d*$//,repacksuffix=~dfsg" \
+ https://github.com/harvimt/quamash/tags \
+ .*/version at ANY_VERSION@@ARCHIVE_EXT@

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-bitcoin/python-quamash.git



More information about the Pkg-bitcoin-commits mailing list