[Python-modules-commits] r29911 - in packages/pyjwt/trunk (9 files)

eriol-guest at users.alioth.debian.org eriol-guest at users.alioth.debian.org
Fri Jul 25 17:12:41 UTC 2014


    Date: Friday, July 25, 2014 @ 17:12:41
  Author: eriol-guest
Revision: 29911

Initial release

Added:
  packages/pyjwt/trunk/debian/
  packages/pyjwt/trunk/debian/changelog
  packages/pyjwt/trunk/debian/compat
  packages/pyjwt/trunk/debian/control
  packages/pyjwt/trunk/debian/copyright
  packages/pyjwt/trunk/debian/rules
  packages/pyjwt/trunk/debian/source/
  packages/pyjwt/trunk/debian/source/format
  packages/pyjwt/trunk/debian/watch


Property changes on: packages/pyjwt/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
   + 1

Added: packages/pyjwt/trunk/debian/changelog
===================================================================
--- packages/pyjwt/trunk/debian/changelog	                        (rev 0)
+++ packages/pyjwt/trunk/debian/changelog	2014-07-25 17:12:41 UTC (rev 29911)
@@ -0,0 +1,5 @@
+pyjwt (0.2.1-1) UNRELEASED; urgency=low
+
+  * Initial release (Closes: #755832)
+
+ -- Daniele Tricoli <eriol at mornie.org>  Fri, 25 Jul 2014 16:40:15 +0200

Added: packages/pyjwt/trunk/debian/compat
===================================================================
--- packages/pyjwt/trunk/debian/compat	                        (rev 0)
+++ packages/pyjwt/trunk/debian/compat	2014-07-25 17:12:41 UTC (rev 29911)
@@ -0,0 +1 @@
+9

Added: packages/pyjwt/trunk/debian/control
===================================================================
--- packages/pyjwt/trunk/debian/control	                        (rev 0)
+++ packages/pyjwt/trunk/debian/control	2014-07-25 17:12:41 UTC (rev 29911)
@@ -0,0 +1,64 @@
+Source: pyjwt
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Daniele Tricoli <eriol at mornie.org>
+Build-Depends:
+ debhelper (>= 9),
+ dh-python,
+ python-all (>= 2.6.6-3),
+ python-setuptools (>= 0.6b3),
+ python3-all,
+ python3-setuptools,
+Standards-Version: 3.9.5
+X-Python-Version: >= 2.6
+X-Python3-Version: >= 3.2
+Homepage: https://github.com/progrium/pyjwt
+Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/pyjwt/trunk/
+Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/pyjwt/trunk/
+
+Package: python-jwt
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}
+Description: Python implementation of JSON Web Token
+ PyJWT implements the JSON Web Token draft 01, a way of representing
+ signed content using JSON data structures.
+ .
+ Supported algorithms for cryptographic signing:
+ .
+   * HS256 - HMAC using SHA-256 hash algorithm (default)
+   * HS384 - HMAC using SHA-384 hash algorithm
+   * HS512 - HMAC using SHA-512 hash algorithm
+   * RS256 - RSASSA-PKCS1-v1_5 signature algorithm using SHA-256 hash
+     algorithm
+   * RS384 - RSASSA-PKCS1-v1_5 signature algorithm using SHA-384 hash
+     algorithm
+   * RS512 - RSASSA-PKCS1-v1_5 signature algorithm using SHA-512 hash
+     algorithm
+ .
+ Supported reserved claim names:
+   - "exp" (Expiration Time) Claim
+
+Package: python3-jwt
+Architecture: all
+Depends: ${misc:Depends}, ${python3:Depends}
+Description: Python 3 implementation of JSON Web Token
+ PyJWT implements the JSON Web Token draft 01, a way of representing
+ signed content using JSON data structures.
+ .
+ Supported algorithms for cryptographic signing:
+ .
+   * HS256 - HMAC using SHA-256 hash algorithm (default)
+   * HS384 - HMAC using SHA-384 hash algorithm
+   * HS512 - HMAC using SHA-512 hash algorithm
+   * RS256 - RSASSA-PKCS1-v1_5 signature algorithm using SHA-256 hash
+     algorithm
+   * RS384 - RSASSA-PKCS1-v1_5 signature algorithm using SHA-384 hash
+     algorithm
+   * RS512 - RSASSA-PKCS1-v1_5 signature algorithm using SHA-512 hash
+     algorithm
+ .
+ Supported reserved claim names:
+   - "exp" (Expiration Time) Claim
+ .
+ This package contains the Python 3 version of the library.

Added: packages/pyjwt/trunk/debian/copyright
===================================================================
--- packages/pyjwt/trunk/debian/copyright	                        (rev 0)
+++ packages/pyjwt/trunk/debian/copyright	2014-07-25 17:12:41 UTC (rev 29911)
@@ -0,0 +1,31 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: PyJWT
+Upstream-Contact: Jeff Lindsay <progrium at gmail.com>
+Source: https://pypi.python.org/pypi/PyJWT
+
+Files: *
+Copyright: 2011 Jeff Lindsay
+License: Expat
+
+Files: debian/*
+Copyright: 2014 Daniele Tricoli <eriol at mornie.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.

Added: packages/pyjwt/trunk/debian/rules
===================================================================
--- packages/pyjwt/trunk/debian/rules	                        (rev 0)
+++ packages/pyjwt/trunk/debian/rules	2014-07-25 17:12:41 UTC (rev 29911)
@@ -0,0 +1,15 @@
+#!/usr/bin/make -f
+
+# The test suite is not shipped in the source dist so can't be enabled.
+# https://github.com/progrium/pyjwt/issues/36
+export PYBUILD_DISABLE=test
+export PYBUILD_NAME=jwt
+
+export PYTHONWARNINGS=d
+
+%:
+	dh $@ --with python2,python3 --buildsystem=pybuild
+
+override_dh_auto_install:
+	dh_auto_install
+	mv debian/python3-jwt/usr/bin/jwt debian/python3-jwt/usr/bin/jwt3


Property changes on: packages/pyjwt/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
   + *

Added: packages/pyjwt/trunk/debian/source/format
===================================================================
--- packages/pyjwt/trunk/debian/source/format	                        (rev 0)
+++ packages/pyjwt/trunk/debian/source/format	2014-07-25 17:12:41 UTC (rev 29911)
@@ -0,0 +1 @@
+3.0 (quilt)

Added: packages/pyjwt/trunk/debian/watch
===================================================================
--- packages/pyjwt/trunk/debian/watch	                        (rev 0)
+++ packages/pyjwt/trunk/debian/watch	2014-07-25 17:12:41 UTC (rev 29911)
@@ -0,0 +1,3 @@
+version=3
+https://pypi.python.org/packages/source/P/PyJWT/PyJWT-(.*)\.tar\.gz
+




More information about the Python-modules-commits mailing list