[Python-modules-commits] [python-keepkey] 01/06: Import python-keepkey_0.7.0-1.dsc
Tristan Seligmann
mithrandi at moszumanska.debian.org
Sun May 29 14:24:38 UTC 2016
This is an automated email from the git hooks/post-receive script.
mithrandi pushed a commit to branch master
in repository python-keepkey.
commit b987dba3d73e6fbf0670a698b106f363459f979d
Author: Tristan Seligmann <mithrandi at mithrandi.net>
Date: Sun May 29 15:50:37 2016 +0200
Import python-keepkey_0.7.0-1.dsc
---
debian/changelog | 6 ++++++
debian/compat | 1 +
debian/control | 19 ++++++++++++++++
debian/copyright | 54 ++++++++++++++++++++++++++++++++++++++++++++++
debian/lintian-overrides | 3 +++
debian/python-keepkey.udev | 6 ++++++
debian/rules | 8 +++++++
debian/source/format | 1 +
debian/source/options | 1 +
debian/watch | 3 +++
10 files changed, 102 insertions(+)
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..3ec9df1
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,6 @@
+python-keepkey (0.7.0-1) unstable; urgency=low
+
+ * source package automatically created by stdeb 0.6.0+git
+ * Initial release. (Closes: #812348)
+
+ -- Richard Ulrich <richi at paraeasy.ch> Thu, 15 Jan 2015 22:34:50 +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..b507eea
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,19 @@
+Source: python-keepkey
+Maintainer: Richard Ulrich <richi at paraeasy.ch>
+Uploaders: Tristan Seligmann <mithrandi at debian.org>
+Section: python
+Homepage: https://github.com/keepkey/python-keepkey
+Priority: optional
+Build-Depends: python-setuptools, python-all, debhelper (>=9), dh-python
+Standards-Version: 3.9.6
+
+Package: python-keepkey
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}
+Description: library for communicating with KeepKey Hardware Wallet
+ This is a modified version of python-trezor. The changes made were to support
+ KeepKey’s protocol, as well as the additional feature set of KeepKey.
+ For example, by default, device_recovery command invokes KeepKey’s style of
+ device recovery using the Recovery Cipher.
+ .
+ See http://www.keepkey.com for more information.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..d7fa20b
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,54 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: python-keepkey
+Source: https://github.com/keepkey/python-keepkey
+
+Files: *
+Copyright: 2015-2016 Darin Stanchfield <darin at keepkey.com>
+License: LGPL-3
+
+Files: keepkeylib/protobuf_json.py
+Copyright: 2009 Paul Dovbush <dpp at dpp.su>
+License: BSD-3-clause
+
+Files: debian/*
+Copyright: 2016 Richard Ulrich <richi at paraeasy.ch>
+License: GPL-3+
+
+License: LGPL-3
+ On Debian systems, the full text of the GNU Lesser General Public
+ License version 3 can be found in the file
+ `/usr/share/common-licenses/LGPL-3'.
+
+License: BSD-3-clause
+ Copyright (c) The Regents of the University of California.
+ All rights reserved.
+ .
+ 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.
+ 3. Neither the name of the University 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 REGENTS 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 REGENTS 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+
+ On Debian systems, the full text of the GNU General Public
+ License version 3 can be found in the file
+ `/usr/share/common-licenses/GPL-3'.
+
diff --git a/debian/lintian-overrides b/debian/lintian-overrides
new file mode 100644
index 0000000..8e1e69f
--- /dev/null
+++ b/debian/lintian-overrides
@@ -0,0 +1,3 @@
+library-package-name-for-application usr/bin/keepkeyctl
+application-in-library-section python usr/bin/keepkeyctl
+binary-without-manpage usr/bin/keepkeyctl
diff --git a/debian/python-keepkey.udev b/debian/python-keepkey.udev
new file mode 100644
index 0000000..b84a3b8
--- /dev/null
+++ b/debian/python-keepkey.udev
@@ -0,0 +1,6 @@
+# KeepKey: Your Private Bitcoin Vault
+# http://www.keepkey.com/
+# Put this file into /usr/lib/udev/rules.d or /etc/udev/rules.d
+
+SUBSYSTEM=="usb", ATTR{idVendor}=="2b24", ATTR{idProduct}=="0001", MODE="0666", GROUP="dialout", SYMLINK+="keepkey%n"
+KERNEL=="hidraw*", ATTRS{idVendor}=="2b24", ATTRS{idProduct}=="0001", MODE="0666", GROUP="dialout"
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..51bacfc
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,8 @@
+#!/usr/bin/make -f
+
+# This file was automatically generated by stdeb 0.6.0+git at
+# Wed, 24 Sep 2014 22:57:50 +0200
+
+%:
+ dh $@ --with python2 --buildsystem=python_distutils
+
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..4d82e22
--- /dev/null
+++ b/debian/source/options
@@ -0,0 +1 @@
+extend-diff-ignore="\.egg-info"
\ No newline at end of file
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..a1756a4
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+version=3
+opts=uversionmangle=s/(rc|a|b|c)/~$1/ \
+http://pypi.debian.net/keepkey/keepkey-(.+)\.(?: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-keepkey.git
More information about the Python-modules-commits
mailing list