[Python-modules-commits] [python-pyotp] 02/03: Imported Debian patch 2.0.1-1

Hugo Lefeuvre hle at moszumanska.debian.org
Tue Jul 5 13:45:11 UTC 2016


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

hle pushed a commit to branch master
in repository python-pyotp.

commit 7c43322371ca4e5f18b1bfc4e342e5eba21a8e1a
Author: Hugo Lefeuvre <hle at debian.org>
Date:   Sun Jul 3 18:05:34 2016 +0200

    Imported Debian patch 2.0.1-1
---
 debian/changelog     |  6 ++++++
 debian/compat        |  1 +
 debian/control       | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 debian/copyright     | 33 ++++++++++++++++++++++++++++++
 debian/docs          |  1 +
 debian/rules         |  7 +++++++
 debian/source/format |  1 +
 debian/watch         |  3 +++
 8 files changed, 110 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..71e1d1b
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,6 @@
+python-pyotp (2.0.1-1) unstable; urgency=low
+
+  * Initial release (Closes: #829703).
+
+ -- Hugo Lefeuvre <hle at debian.org>  Sun, 3 Jul 2016 18:05:34 +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..9c683d3
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,58 @@
+Source: python-pyotp
+Section: python
+Priority: optional
+Maintainer: Hugo Lefeuvre <hle at debian.org>
+Build-Depends: debhelper (>= 9), 
+               dh-python,
+               python-all,
+               python-setuptools,
+               python3-all,
+               python3-setuptools
+Standards-Version: 3.9.8
+Homepage: https://github.com/pyotp/pyotp
+
+Package: python-pyotp
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends},
+Recommends: ${python:Recommends}
+Suggests: ${python:Suggests}
+XB-Python-Egg-Name: pyotp
+Description: Python One Time Password Library
+ This package contains a Python library for generating and verifying one-time
+ passwords. It can be used to implement two-factor (2FA) or multi-factor (MFA)
+ authentication methods in web applications and in other systems that
+ require users to log in.
+ .
+ Quick overview of using One Time Passwords on your phone
+ --------------------------------------------------------
+ .
+  * OTPs involve a shared secret, stored both on the phone and the server
+  * OTPs can be generated on a phone without internet connectivity
+  * OTPs should always be used as a second factor of authentication(if your
+    phone is lost, you account is still secured with a password)
+  * Google Authenticator allows you to store multiple OTP secrets and provision
+    those using a QR Code(no more typing in the secret)
+
+Package: python3-pyotp
+Architecture: all
+Depends: ${misc:Depends}, ${python3:Depends},
+Recommends: ${python3:Recommends}
+Suggests: ${python3:Suggests}
+XB-Python-Egg-Name: pyotp
+Description: Python One Time Password Library
+ This package contains a Python library for generating and verifying one-time
+ passwords. It can be used to implement two-factor (2FA) or multi-factor (MFA)
+ authentication methods in web applications and in other systems that
+ require users to log in.
+ .
+ Quick overview of using One Time Passwords on your phone
+ --------------------------------------------------------
+ .
+  * OTPs involve a shared secret, stored both on the phone and the server
+  * OTPs can be generated on a phone without internet connectivity
+  * OTPs should always be used as a second factor of authentication(if your
+    phone is lost, you account is still secured with a password)
+  * Google Authenticator allows you to store multiple OTP secrets and provision
+    those using a QR Code(no more typing in the secret)
+ .
+ This package contains the Python 3 version of pyotp.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..52d72bd
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,33 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: pyotp
+Upstream-Contact: PyOTP contributors <kislyuk at gmail.com>
+Source: https://github.com/pyotp/pyotp
+
+Files: *
+Copyright: 2011 Mark Percival <m at mdp.im>
+           2011 Nathan Reynolds <email at nreynolds.co.uk> 
+License: Expat
+
+Files: debian/*
+Copyright: 2015-2016 (C) Sophie Brun <sophie at freexian.com>
+           2016 (C) Hugo Lefeuvre <hle at debian.org>
+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/docs b/debian/docs
new file mode 100644
index 0000000..a1320b1
--- /dev/null
+++ b/debian/docs
@@ -0,0 +1 @@
+README.rst
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..32985fd
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,7 @@
+#! /usr/bin/make -f
+
+export PYBUILD_NAME=pyotp
+export PYBUILD_TEST_ARGS=-s {dir}/ -p "test.py"
+
+%:
+	dh $@ --with python2,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/watch b/debian/watch
new file mode 100644
index 0000000..d7c2078
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+version=3
+opts=uversionmangle=s/(rc|a|b|c)/~$1/ \
+https://pypi.debian.net/pyotp/pyotp-(.+)\.(?: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-pyotp.git



More information about the Python-modules-commits mailing list