[Python-modules-team] Bug#873815: marked as done (pyjwt: PyJWT vulneratibility for some keys)

2017-09-24 Thread Debian Bug Tracking System
Your message dated Mon, 25 Sep 2017 05:20:00 +
with message-id 
and subject line Bug#873244: fixed in pyjwt 1.4.2-1.1
has caused the Debian Bug report #873244,
regarding pyjwt: PyJWT vulneratibility for some keys
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
873244: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=873244
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: pyjwt
Version: 1.4.2-1
Severity: important
Tags: patch
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu artful ubuntu-patch

Dear Maintainer,

Upstream already fixed that issue, here is the debdiff that was applied in
order to fix this.


  * SECURITY UPDATE: symmetric/asymmetric key confusion attacks
- debian/patches/CVE-2017-11424.patch: Throw if key is an PKCS1
  PEM-encoded public key in jwt/algorithms.py, jwt/api_jws.py,
  jwt/api_jwt.py, tests/keys/testkey_pkcs1.pub.pem,
  tests/test_algorithms.py, tests/test_api_jws.py, tests/test_api_jwt.py.
- CVE-2017-11424


Thanks for considering the patch.



-- System Information:
Debian Release: stretch/sid
  APT prefers xenial-updates
  APT policy: (500, 'xenial-updates'), (500, 'xenial-security'), (500, 
'xenial'), (100, 'xenial-backports')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.10.0-32-generic (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=pt_BR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
diff -Nru pyjwt-1.4.2/debian/files pyjwt-1.4.2/debian/files
--- pyjwt-1.4.2/debian/files	1969-12-31 21:00:00.0 -0300
+++ pyjwt-1.4.2/debian/files	2017-08-30 11:51:30.0 -0300
@@ -0,0 +1 @@
+pyjwt_1.4.2-1ubuntu1_source.buildinfo python optional
diff -Nru pyjwt-1.4.2/debian/patches/CVE-2017-11424.patch pyjwt-1.4.2/debian/patches/CVE-2017-11424.patch
--- pyjwt-1.4.2/debian/patches/CVE-2017-11424.patch	1969-12-31 21:00:00.0 -0300
+++ pyjwt-1.4.2/debian/patches/CVE-2017-11424.patch	2017-08-29 11:40:17.0 -0300
@@ -0,0 +1,139 @@
+From 1922f0972b065077404c0dafa0946f2132400a2b Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Jos=C3=A9=20Padilla?= 
+Date: Wed, 21 Jun 2017 15:49:41 -0400
+Subject: [PATCH 1/3] Throw if key is an PKCS1 PEM-encoded public key
+
+---
+ jwt/algorithms.py|  1 +
+ jwt/api_jws.py   |  9 +
+ jwt/api_jwt.py   |  9 +
+ tests/keys/testkey_pkcs1.pub.pem |  5 +
+ tests/test_algorithms.py |  7 +++
+ tests/test_api_jws.py| 10 ++
+ tests/test_api_jwt.py| 10 ++
+ 7 files changed, 51 insertions(+)
+ create mode 100644 tests/keys/testkey_pkcs1.pub.pem
+
+diff --git a/jwt/algorithms.py b/jwt/algorithms.py
+index 51e8f16..fd9c3ac 100644
+--- a/jwt/algorithms.py
 b/jwt/algorithms.py
+@@ -121,6 +121,7 @@ class HMACAlgorithm(Algorithm):
+ invalid_strings = [
+ b'-BEGIN PUBLIC KEY-',
+ b'-BEGIN CERTIFICATE-',
++b'-BEGIN RSA PUBLIC KEY-',
+ b'ssh-rsa'
+ ]
+ 
+diff --git a/jwt/api_jws.py b/jwt/api_jws.py
+index 177f5ff..a91137c 100644
+--- a/jwt/api_jws.py
 b/jwt/api_jws.py
+@@ -107,6 +107,15 @@ class PyJWS(object):
+ 
+ def decode(self, jws, key='', verify=True, algorithms=None, options=None,
+**kwargs):
++
++if not algorithms:
++warnings.warn(
++'It is strongly recommended that you pass in a ' +
++'value for the "algorithms" argument when calling decode(). ' +
++'This argument will be mandatory in a future version.',
++DeprecationWarning
++)
++
+ payload, signing_input, header, signature = self._load(jws)
+ 
+ if verify:
+diff --git a/jwt/api_jwt.py b/jwt/api_jwt.py
+index 9703b8d..e0e6c25 100644
+--- a/jwt/api_jwt.py
 b/jwt/api_jwt.py
+@@ -58,6 +58,15 @@ class PyJWT(PyJWS):
+ 
+ def decode(self, jwt, key='', verify=True, algorithms=None, options=None,
+**kwargs):
++
++if not algorithms:
++warnings.warn(
++'It is strongly recommended that you pass in a ' +
++'value for the "algorithms" argument when calling decode(). ' +
++'This argument will be mandatory in a future version.',
++DeprecationWarning
++)
++
+ payload, signing_input, header, signature = self._load(jwt)
+ 
+ decoded = 

[Python-modules-team] Bug#873244: marked as done (pyjwt: CVE-2017-11424: Incorrect handling of PEM-encoded public keys)

2017-09-24 Thread Debian Bug Tracking System
Your message dated Mon, 25 Sep 2017 05:20:00 +
with message-id 
and subject line Bug#873244: fixed in pyjwt 1.4.2-1.1
has caused the Debian Bug report #873244,
regarding pyjwt: CVE-2017-11424: Incorrect handling of PEM-encoded public keys
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
873244: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=873244
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: pyjwt
Version: 1.4.2-1
Severity: important
Tags: security patch upstream
Forwarded: https://github.com/jpadilla/pyjwt/pull/277
Control: found -1 0.2.1-1+deb8u1

Hi,

the following vulnerability was published for pyjwt.

CVE-2017-11424[0]:
| In PyJWT 1.5.0 and below the `invalid_strings` check in
| `HMACAlgorithm.prepare_key` does not account for all PEM encoded
| public keys. Specifically, the PKCS1 PEM encoded format would be
| allowed because it is prefaced with the string `-BEGIN RSA PUBLIC
| KEY-` which is not accounted for. This enables
| symmetric/asymmetric key confusion attacks against users using the
| PKCS1 PEM encoded public keys, which would allow an attacker to craft
| JWTs from scratch.

If you fix the vulnerability please also make sure to include the
CVE (Common Vulnerabilities & Exposures) id in your changelog entry.

For further information see:

[0] https://security-tracker.debian.org/tracker/CVE-2017-11424
https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-11424

Please adjust the affected versions in the BTS as needed. I think this
should be present as well in 0.2.1-1+deb8u1.

Regards,
Salvatore
--- End Message ---
--- Begin Message ---
Source: pyjwt
Source-Version: 1.4.2-1.1

We believe that the bug you reported is fixed in the latest version of
pyjwt, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 873...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Salvatore Bonaccorso  (supplier of updated pyjwt package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 16 Sep 2017 14:49:38 +0200
Source: pyjwt
Binary: python-jwt python3-jwt
Architecture: source
Version: 1.4.2-1.1
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Modules Team 

Changed-By: Salvatore Bonaccorso 
Description:
 python-jwt - Python implementation of JSON Web Token
 python3-jwt - Python 3 implementation of JSON Web Token
Closes: 873244
Changes:
 pyjwt (1.4.2-1.1) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * Throw if key is an PKCS1 PEM-encoded public key (CVE-2017-11424)
 (Closes: #873244)
Checksums-Sha1:
 fcbdd6c39569614d0eca7a4ff5fe2d71509be4dc 2625 pyjwt_1.4.2-1.1.dsc
 2a472ac2821d412947f4cc9c7aa0eeccedd332c9 4756 pyjwt_1.4.2-1.1.debian.tar.xz
 2b7a5c05339e5140438e4d732f0576a4b656fdbb 6798 pyjwt_1.4.2-1.1_source.buildinfo
Checksums-Sha256:
 d89dea9e19465178fbffb94c5054eacfc242da825769efaae12a7bebd216dd6c 2625 
pyjwt_1.4.2-1.1.dsc
 1aefc4545440e588652699fc06bf1dada43967b6f28e5fe2aec36f1d10bef793 4756 
pyjwt_1.4.2-1.1.debian.tar.xz
 5d395d97d2f657d36ef15ccf658179b88a0b0e1bc9cad33ab4dc1c3cecdd0e6d 6798 
pyjwt_1.4.2-1.1_source.buildinfo
Files:
 1c974b0263920eef9937800a7b8afc19 2625 python optional pyjwt_1.4.2-1.1.dsc
 0fe46c426d5c8ca71070da0665e76f7a 4756 python optional 
pyjwt_1.4.2-1.1.debian.tar.xz
 4536b23e70083436f0c2641f2377d7a8 6798 python optional 
pyjwt_1.4.2-1.1_source.buildinfo

-BEGIN PGP SIGNATURE-

iQKmBAEBCgCQFiEERkRAmAjBceBVMd3uBUy48xNDz0QFAlm9I2RfFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDQ2
NDQ0MDk4MDhDMTcxRTA1NTMxRERFRTA1NENCOEYzMTM0M0NGNDQSHGNhcm5pbEBk
ZWJpYW4ub3JnAAoJEAVMuPMTQ89ECJwQAIHpwvJjK0CxhgDKdbEbq8AUzbYgaGm8
szUK93vOpRNViGdqzI0U37KghpyQrKG/+XH/vwXekMGcszzaeFSilFrJPSyIXDto
nJhJDGLkysSm/X+Ywqp7uV2Xc7Ow26Acj8iRy5r+UrPOT3QsBxGksf6GtHVF+P9i
PhjYkyPNm4rNvgtocBYQ8X6cw/EjKJGtWM6O8w/w18bxzH3Y8uhcnEZlDYq5yixf
nxuHTTMqz1sWtIBk7UPAOErQ2YcgkpT4qGTyTPOCgo7lnXZf4/JidLP9R8HJWpDi
Ka18idd3cBr5oYsuRCT/ZMVzxZngRyA5Ac3VeIKz1g948/ncj6j+xHIV4nXZ1sj4

[Python-modules-team] pyjwt_1.4.2-1.1_source.changes ACCEPTED into unstable

2017-09-24 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 16 Sep 2017 14:49:38 +0200
Source: pyjwt
Binary: python-jwt python3-jwt
Architecture: source
Version: 1.4.2-1.1
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Modules Team 

Changed-By: Salvatore Bonaccorso 
Description:
 python-jwt - Python implementation of JSON Web Token
 python3-jwt - Python 3 implementation of JSON Web Token
Closes: 873244
Changes:
 pyjwt (1.4.2-1.1) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * Throw if key is an PKCS1 PEM-encoded public key (CVE-2017-11424)
 (Closes: #873244)
Checksums-Sha1:
 fcbdd6c39569614d0eca7a4ff5fe2d71509be4dc 2625 pyjwt_1.4.2-1.1.dsc
 2a472ac2821d412947f4cc9c7aa0eeccedd332c9 4756 pyjwt_1.4.2-1.1.debian.tar.xz
 2b7a5c05339e5140438e4d732f0576a4b656fdbb 6798 pyjwt_1.4.2-1.1_source.buildinfo
Checksums-Sha256:
 d89dea9e19465178fbffb94c5054eacfc242da825769efaae12a7bebd216dd6c 2625 
pyjwt_1.4.2-1.1.dsc
 1aefc4545440e588652699fc06bf1dada43967b6f28e5fe2aec36f1d10bef793 4756 
pyjwt_1.4.2-1.1.debian.tar.xz
 5d395d97d2f657d36ef15ccf658179b88a0b0e1bc9cad33ab4dc1c3cecdd0e6d 6798 
pyjwt_1.4.2-1.1_source.buildinfo
Files:
 1c974b0263920eef9937800a7b8afc19 2625 python optional pyjwt_1.4.2-1.1.dsc
 0fe46c426d5c8ca71070da0665e76f7a 4756 python optional 
pyjwt_1.4.2-1.1.debian.tar.xz
 4536b23e70083436f0c2641f2377d7a8 6798 python optional 
pyjwt_1.4.2-1.1_source.buildinfo

-BEGIN PGP SIGNATURE-

iQKmBAEBCgCQFiEERkRAmAjBceBVMd3uBUy48xNDz0QFAlm9I2RfFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDQ2
NDQ0MDk4MDhDMTcxRTA1NTMxRERFRTA1NENCOEYzMTM0M0NGNDQSHGNhcm5pbEBk
ZWJpYW4ub3JnAAoJEAVMuPMTQ89ECJwQAIHpwvJjK0CxhgDKdbEbq8AUzbYgaGm8
szUK93vOpRNViGdqzI0U37KghpyQrKG/+XH/vwXekMGcszzaeFSilFrJPSyIXDto
nJhJDGLkysSm/X+Ywqp7uV2Xc7Ow26Acj8iRy5r+UrPOT3QsBxGksf6GtHVF+P9i
PhjYkyPNm4rNvgtocBYQ8X6cw/EjKJGtWM6O8w/w18bxzH3Y8uhcnEZlDYq5yixf
nxuHTTMqz1sWtIBk7UPAOErQ2YcgkpT4qGTyTPOCgo7lnXZf4/JidLP9R8HJWpDi
Ka18idd3cBr5oYsuRCT/ZMVzxZngRyA5Ac3VeIKz1g948/ncj6j+xHIV4nXZ1sj4
QlmzrpOLxahLwT3Fou1WjL68hBP82gCPXJgxpLCumqPDNYXRzI3AmgA/8o7e4Wjl
0ImZFc4oKb1CfC8Fq/B4p8B2tQS3mIpleyN+ZDPCbzhutDtHvlF4HLMaKycozb3z
uX14cNB3bGnleZ7B17TYRxXRkXzZ3d9UQtlsFml5AGdP+5EzZvVYiX21WeTbpmfm
kApmr2RTljw7euH7cCj34MHp9tRGLKkOBlXmrbyExBUQXMGGkHDBlYa0YJC2cDsA
AX5WAlRE5+uQTHlfgPNFSx00GdRLcOKuFCLKTSQkXNQADZL7APeEUje0xYGq2Yok
NL5hAuNDFPnZ
=oz8M
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team


[Python-modules-team] Bug#875951: pyjwt: new upstream version available

2017-09-24 Thread Salvatore Bonaccorso
Ciao Daniele,

On Mon, Sep 25, 2017 at 02:48:16AM +0200, Daniele Tricoli wrote:
> Hi Salvatore,
> 
> On Tuesday, September 19, 2017 8:37:14 PM CEST Salvatore Bonaccorso wrote:
> > Well actually I did not do that, but Moritz picked it up.
> 
> Oh, many thanks to Moritz then!
>  
> > If you plan to upload new version soonish I can as well cancel my NMU
> > for unstable, or, preferably speed it up, by rescheduling and having
> > the NMU integrated into the changelog.
> > 
> > What you prefer, for now I leave it in the delayed queue.
> 
> It took more time to update the package (I had also to repack orig tarball
> due bytecode shipped by upstread that was making tests fails on CI - I tested
> them on Debomatic) but I'm ready to upload it.
> Actually I have this in the changelog:
> https://anonscm.debian.org/cgit/python-modules/packages/pyjwt.git/tree/debian/changelog
> But consider the line about CVE-2017-11424 a reminder: please can you speed up
> and upload the NMU version? I will acknowledge the NMU updating the changelog
> accordingly: removing that part and including the changelog entry from NMU.

Thank you!

Rescheduled.

Regards,
Salvatore

___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team


[Python-modules-team] python-bottle-cork 0.12.0-3 MIGRATED to testing

2017-09-24 Thread Debian testing watch
FYI: The status of the python-bottle-cork source package
in Debian's testing distribution has changed.

  Previous version: 0.12.0-2
  Current version:  0.12.0-3

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See https://release.debian.org/testing-watch/ for more information.

___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team


[Python-modules-team] python-bottle-sqlite 0.1.3-2 MIGRATED to testing

2017-09-24 Thread Debian testing watch
FYI: The status of the python-bottle-sqlite source package
in Debian's testing distribution has changed.

  Previous version: 0.1.3-1
  Current version:  0.1.3-2

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See https://release.debian.org/testing-watch/ for more information.

___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team


[Python-modules-team] twisted 17.9.0~rc1-1 MIGRATED to testing

2017-09-24 Thread Debian testing watch
FYI: The status of the twisted source package
in Debian's testing distribution has changed.

  Previous version: 17.5.0-2
  Current version:  17.9.0~rc1-1

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See https://release.debian.org/testing-watch/ for more information.

___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team


[Python-modules-team] python-docutils 0.14+dfsg-1 MIGRATED to testing

2017-09-24 Thread Debian testing watch
FYI: The status of the python-docutils source package
in Debian's testing distribution has changed.

  Previous version: 0.13.1+dfsg-2
  Current version:  0.14+dfsg-1

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See https://release.debian.org/testing-watch/ for more information.

___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team


[Python-modules-team] python-bottle-beaker 0.1.3-2 MIGRATED to testing

2017-09-24 Thread Debian testing watch
FYI: The status of the python-bottle-beaker source package
in Debian's testing distribution has changed.

  Previous version: 0.1.3-1
  Current version:  0.1.3-2

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See https://release.debian.org/testing-watch/ for more information.

___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team


[Python-modules-team] Bug#875951: pyjwt: new upstream version available

2017-09-24 Thread Daniele Tricoli
Hi Salvatore,

On Tuesday, September 19, 2017 8:37:14 PM CEST Salvatore Bonaccorso wrote:
> Well actually I did not do that, but Moritz picked it up.

Oh, many thanks to Moritz then!
 
> If you plan to upload new version soonish I can as well cancel my NMU
> for unstable, or, preferably speed it up, by rescheduling and having
> the NMU integrated into the changelog.
> 
> What you prefer, for now I leave it in the delayed queue.

It took more time to update the package (I had also to repack orig tarball
due bytecode shipped by upstread that was making tests fails on CI - I tested
them on Debomatic) but I'm ready to upload it.
Actually I have this in the changelog:
https://anonscm.debian.org/cgit/python-modules/packages/pyjwt.git/tree/debian/changelog
But consider the line about CVE-2017-11424 a reminder: please can you speed up
and upload the NMU version? I will acknowledge the NMU updating the changelog
accordingly: removing that part and including the changelog entry from NMU.

Many thanks!

Kind regards,

-- 
 Daniele Tricoli 'eriol'
 https://mornie.org

signature.asc
Description: This is a digitally signed message part.
___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team

[Python-modules-team] Processed: Bug#873244 marked as pending

2017-09-24 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tag 873244 pending
Bug #873244 [src:pyjwt] pyjwt: CVE-2017-11424: Incorrect handling of 
PEM-encoded public keys
Bug #873815 [src:pyjwt] pyjwt: PyJWT vulneratibility for some keys
Ignoring request to alter tags of bug #873244 to the same tags previously set
Ignoring request to alter tags of bug #873815 to the same tags previously set
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
873244: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=873244
873815: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=873815
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems

___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team


[Python-modules-team] Processed: Bug#868755 marked as pending

2017-09-24 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tag 868755 pending
Bug #868755 [pyjwt] [pyjwt] pytest build dependencies is not correct
Added tag(s) pending.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
868755: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=868755
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems

___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team


[Python-modules-team] Processed: Bug#875951 marked as pending

2017-09-24 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tag 875951 pending
Bug #875951 [src:pyjwt] pyjwt: new upstream version available
Added tag(s) pending.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
875951: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=875951
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems

___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team


[Python-modules-team] python-cpuinfo_3.3.0-1_amd64.changes ACCEPTED into unstable

2017-09-24 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 24 Sep 2017 23:42:41 +0200
Source: python-cpuinfo
Binary: python-cpuinfo python3-cpuinfo py-cpuinfo
Architecture: source all
Version: 3.3.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Modules Team 

Changed-By: Hugo Lefeuvre 
Description:
 py-cpuinfo - Python script for getting CPU info
 python-cpuinfo - Python module for getting CPU info
 python3-cpuinfo - Python module for getting CPU info (Python 3)
Changes:
 python-cpuinfo (3.3.0-1) unstable; urgency=medium
 .
   * New upstream release.
   * Upload to unstable.
   * Bump Standards-Version to 4.1.0.
   * Fix section of binary package py-cpuinfo.
Checksums-Sha1:
 ac8000724ee3b928c3f67d9b8894cf888390209f 1863 python-cpuinfo_3.3.0-1.dsc
 d1ec0af76f71e4eaaf12c09efe5a440c8e9673e6 75535 python-cpuinfo_3.3.0.orig.tar.gz
 746c73165175f2901b51fe5b6422978c59995325 2220 
python-cpuinfo_3.3.0-1.debian.tar.xz
 da3681ca94067f514d2f2c9b7b1e60572cf2601d 4032 py-cpuinfo_3.3.0-1_all.deb
 e133c5b211ffe33d606853d9ef4065fe4e95c8f0 15600 python-cpuinfo_3.3.0-1_all.deb
 2b5443027d7d29dd1f3eb792697c4fa1b0042a80 6502 
python-cpuinfo_3.3.0-1_amd64.buildinfo
 6397a369f8fe654f0889181719972a3eb5bdbadd 15676 python3-cpuinfo_3.3.0-1_all.deb
Checksums-Sha256:
 2f153e86823d097cb4f4b78157c99ea4089e4f614820858c78abe4f3e44de645 1863 
python-cpuinfo_3.3.0-1.dsc
 c8485dfb5935c2774e05d92c684b9aed569d20cbef1e0237bd12b34a401dabc4 75535 
python-cpuinfo_3.3.0.orig.tar.gz
 a6960cff1fa3218b44b89af8a5290765b034a0da032ea2262c18401ccd515d2c 2220 
python-cpuinfo_3.3.0-1.debian.tar.xz
 dc7148ea08a162153ccd3582190158a1e30eba3e9196408deb2919f44129f46f 4032 
py-cpuinfo_3.3.0-1_all.deb
 6d5cf3763ace5972d37de2a9d5a9233c468e005ce198834eff75bfb9fc51e575 15600 
python-cpuinfo_3.3.0-1_all.deb
 f59cdade13a7bb928bac37c424ba5e8802484cf1e17a9ff17bb966d91fb1ce8a 6502 
python-cpuinfo_3.3.0-1_amd64.buildinfo
 d144921add0f4399dcdc368d7f2f8f25d6e03b61481caa0e0c09a644a75f8435 15676 
python3-cpuinfo_3.3.0-1_all.deb
Files:
 f6c6bb0e1f770fbd1e6afea1fff98790 1863 python optional 
python-cpuinfo_3.3.0-1.dsc
 3b1ef7cc761267e41f92ad34f84a095d 75535 python optional 
python-cpuinfo_3.3.0.orig.tar.gz
 0260edd2576b79954e763c304afa7cf9 2220 python optional 
python-cpuinfo_3.3.0-1.debian.tar.xz
 40e191f47a67abe7bb08ededf5883c77 4032 admin optional py-cpuinfo_3.3.0-1_all.deb
 7d7461212bb8efe6298327ebac2a9f99 15600 python optional 
python-cpuinfo_3.3.0-1_all.deb
 5d2429c6b9fb7bfe9b4053e125ae1f2f 6502 python optional 
python-cpuinfo_3.3.0-1_amd64.buildinfo
 1437ab5dd740b3e5f235c584b1339f9a 15676 python optional 
python3-cpuinfo_3.3.0-1_all.deb

-BEGIN PGP SIGNATURE-

iQEzBAEBCAAdFiEE5LpPtQuYJzvmooL3LVy48vb3khkFAlnIKS8ACgkQLVy48vb3
khlDoAf9GNzt8YuWhVctL8PPUBLjupsg70yVR0gHLWKGO4xJKJ/RSPnXmOHzLpjD
dKfAlnwSQXwCDcQAPJFC3+nezJm1EsaW+6N/IWrRsaMpYnNPOFz6qIAypSbWtxLq
H4yPLTOfjCVDC/DxedaZxOAEuvObtAk18STcx8VHr1LAoYe3mNBK1/QfNLPH+Es/
9iAfqymdHBxSG/b4pFcDzuXviAsIKXc/UXuq+3iMn1DoEEZphHOQq0mmrBkynNnE
V/fgRp069T6petpfL2BjiRaR6sVKiw/lFTa4+wRooOC44Yn/oaY7BpqLqnD5ZG2b
OTQ+znXOgJJfGf2uDqq3XlAsnU5r+g==
=KX20
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team


[Python-modules-team] Processing of python-cpuinfo_3.3.0-1_amd64.changes

2017-09-24 Thread Debian FTP Masters
python-cpuinfo_3.3.0-1_amd64.changes uploaded successfully to localhost
along with the files:
  python-cpuinfo_3.3.0-1.dsc
  python-cpuinfo_3.3.0.orig.tar.gz
  python-cpuinfo_3.3.0-1.debian.tar.xz
  py-cpuinfo_3.3.0-1_all.deb
  python-cpuinfo_3.3.0-1_all.deb
  python-cpuinfo_3.3.0-1_amd64.buildinfo
  python3-cpuinfo_3.3.0-1_all.deb

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team


[Python-modules-team] python-slugify_1.2.4-2_amd64.changes ACCEPTED into unstable

2017-09-24 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 24 Sep 2017 23:30:55 +0200
Source: python-slugify
Binary: python-slugify python3-slugify slugify
Architecture: source all
Version: 1.2.4-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Modules Team 

Changed-By: Hugo Lefeuvre 
Description:
 python-slugify - Python module that provides tools for slugifying unicode 
strings
 python3-slugify - Python module that provides tools for slugifying unicode 
strings
 slugify- Python slugify application that handles unicode
Changes:
 python-slugify (1.2.4-2) unstable; urgency=medium
 .
   * Upload to unstable.
   * Bump compat level from 9 to 10.
   * debian/control:
 - Bump Standards-Version to 4.1.0.
 - Depend on debhelper >= 10 instead of >= 9.
   * Bump copyright years.
Checksums-Sha1:
 8d879d554da666740a79e6f6543861179ae4a950 1929 python-slugify_1.2.4-2.dsc
 884d3c5b900e0bcc6ad4c7a7812dbb2b5ee3a390 2592 
python-slugify_1.2.4-2.debian.tar.xz
 5b901c3ddd79f01883bbede4a281eac0e5a689be 6006 python-slugify_1.2.4-2_all.deb
 ca05bbb397d9a196e6cdc37b4c01dc7096a51d85 6551 
python-slugify_1.2.4-2_amd64.buildinfo
 4f51a70de0e9c1f8af41e0c5cae6739bdb6e868f 6102 python3-slugify_1.2.4-2_all.deb
 1e23a15ffd871ca4935ae6bec85a4eb5b42fd3dd 3920 slugify_1.2.4-2_all.deb
Checksums-Sha256:
 70c7b7d420a2945e673b29dbff6f6f1457a65d92c19ad4a7aa5aa37017a97557 1929 
python-slugify_1.2.4-2.dsc
 510419aaf80602699ae3219eb70f1a0f7aebb4de1de20508a0366fd3a94dd382 2592 
python-slugify_1.2.4-2.debian.tar.xz
 c6991090aaadab4dfd2be4ddbdcc4c949b93e48e40520f7caeedbe7696612e17 6006 
python-slugify_1.2.4-2_all.deb
 a8c598fa654cfb84a3e3d4aadda4108f7d480b865afedaae83c670c0b9724884 6551 
python-slugify_1.2.4-2_amd64.buildinfo
 454d933fd6d6cc85dcbd28c7634a31ebba8a13abc1e38ab465170cdc65e90152 6102 
python3-slugify_1.2.4-2_all.deb
 bd6faf38abd34a2802b8b355d8722a4ae8c717ea9472fca088c242b0ec6bdc84 3920 
slugify_1.2.4-2_all.deb
Files:
 45b60944ade9ffa35f6a8cb6cf8fbafc 1929 python optional 
python-slugify_1.2.4-2.dsc
 7a8580882af6f3c32572c6c847b4e301 2592 python optional 
python-slugify_1.2.4-2.debian.tar.xz
 cca57932097094bb9f49bbc27c9661e0 6006 python optional 
python-slugify_1.2.4-2_all.deb
 e58bd99c03aa2062b098bdf3c1264d04 6551 python optional 
python-slugify_1.2.4-2_amd64.buildinfo
 6cbbb64992b343fde1c16d078a0a18e5 6102 python optional 
python3-slugify_1.2.4-2_all.deb
 9089c4c0830328c460f6a30b779eb479 3920 text optional slugify_1.2.4-2_all.deb

-BEGIN PGP SIGNATURE-

iQEzBAEBCAAdFiEE5LpPtQuYJzvmooL3LVy48vb3khkFAlnIJRkACgkQLVy48vb3
khnJyQgAqrXac5JnrtUIkkCC/pMM+q/2rd1XNpXlKadJDmf8gAt8muVbpPSAu+hT
X0qlv3S4oIRsrP8HSyQSw2GtM3OEl1hQEqCb/z3ozJ3KD4WpGpH+61c3YEgZSWXD
guaNEjCpz4e9UySfUztJb++CNNjsk7yIgeGWOier8lPa7HfmYKN9cR8mZkeXSE8+
PmJ0ts07gt5z+o2Dx9VREHghQCpxIqKYLfxUwQHVmpvqNYzqcYvZo07C29NAPJRF
xb9DndZqR2Jww/bMhuvqIwZH9H0X5hat3DAYTlzdjBW7CF/qbZu2fZc17fjP07om
ptj+qejHtL8UKvcNywEnoz3VB/S22g==
=zzaK
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team


[Python-modules-team] Processing of python-slugify_1.2.4-2_amd64.changes

2017-09-24 Thread Debian FTP Masters
python-slugify_1.2.4-2_amd64.changes uploaded successfully to localhost
along with the files:
  python-slugify_1.2.4-2.dsc
  python-slugify_1.2.4-2.debian.tar.xz
  python-slugify_1.2.4-2_all.deb
  python-slugify_1.2.4-2_amd64.buildinfo
  python3-slugify_1.2.4-2_all.deb
  slugify_1.2.4-2_all.deb

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team


[Python-modules-team] rpy2-2.8_2.8.6-2_amd64.changes ACCEPTED into unstable, unstable

2017-09-24 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue,  5 Sep 2017 11:13:21 CEST
Source: rpy2-2.8
Binary: python-rpy2
Architecture: source amd64
Version: 2.8.6-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Modules Team 

Changed-By: Ximin Luo 
Description:
 python-rpy2 - Python 2 interface to the GNU R language and environment (version
Changes:
 rpy2-2.8 (2.8.6-2) unstable; urgency=medium
 .
   * Fork rpy2 source package at the last version that supported Python 2.
   * Disable python3 parts, use src:rpy2 (python3-rpy2) if you need that.
Checksums-Sha256: 
 7766f0518951f127c84e895b4938e8b40baa7387b912773df6384fb6d779e88d 1927 
rpy2-2.8_2.8.6-2.dsc
 3b50804d86f1a478dd1e34216329117acc2849cf82896b1b85e162b88f6ea11d 13341 
rpy2-2.8_2.8.6-2.diff.gz
 d34e8f77698037e8cb36d5c98d22a4505eb20eaf6126babc5133b3ab622b34fe 118110 
python-rpy2-dbgsym_2.8.6-2_amd64.deb
 8faa649dbba043d353a4877dc53fbeb6e48e9da8606f8198063d7116dfe6904a 155092 
python-rpy2_2.8.6-2_amd64.deb
 613e9ebb66443215e6ae8ab8dd4c9d999594694ed8ed046156a54eb8c9ebd303 9501 
rpy2-2.8_2.8.6-2_amd64.buildinfo
 004d13734a7b9a85cbc1e7a93ec87df741e28db1273ab5b0d9efaac04a9c5f98 191192 
rpy2-2.8_2.8.6.orig.tar.gz
Checksums-Sha1: 
 95adbea464fe82627a7d86eb58ea6c2b75a61823 1927 rpy2-2.8_2.8.6-2.dsc
 c159590ffb4689b6d012ac28f35a60adaf69 13341 rpy2-2.8_2.8.6-2.diff.gz
 ebe3ad28fb5750c8b940044ce4d175078dc912d4 118110 
python-rpy2-dbgsym_2.8.6-2_amd64.deb
 76983acd099f1fc408ee2a36f31afe14533911f9 155092 python-rpy2_2.8.6-2_amd64.deb
 502982242f7ed06ae6d94fa013a18c6802deb023 9501 rpy2-2.8_2.8.6-2_amd64.buildinfo
 0b7c74fdf79f15b73db6fa30e08c3d4df513fe35 191192 rpy2-2.8_2.8.6.orig.tar.gz
Files: 
 f42a492de90c0583bb1303691fe48fef 1927 python optional rpy2-2.8_2.8.6-2.dsc
 2eeb31d2d4b448623a23ed174eb6287c 13341 python optional rpy2-2.8_2.8.6-2.diff.gz
 23bd56d9d2c3369b56e0f6c85ec7379c 118110 debug extra 
python-rpy2-dbgsym_2.8.6-2_amd64.deb
 0431654116eb28a6c28e839f83dff70e 155092 python optional 
python-rpy2_2.8.6-2_amd64.deb
 1e50628595df68d91bea9090ef79cc10 9501 python optional 
rpy2-2.8_2.8.6-2_amd64.buildinfo
 85046aa58ba586622f67271fbca05933 191192 python optional 
rpy2-2.8_2.8.6.orig.tar.gz

-BEGIN PGP SIGNATURE-

iQJJBAEBCgAzFiEENmdIajJtsnZtJVVGhg3vO49lC3kFAlmuarsVHGluZmluaXR5
MEBkZWJpYW4ub3JnAAoJEIYN7zuPZQt59eAP/RtW4ksI9yrlt+F6RvctkYuQzdWI
TouImMQmm9g0dqBtiQxoaIEOk37ooq1LTMeoTgdruj8oqDOVYPsMDzE9MSEDmr/4
ZJNpFINL4lRKmPbyv6yKaL8g70viZD6EspQ4NwrKTsDN+ASDJBlEThERFhCIEjRG
NM7PqTG6haJ9RJXBYc8N7elCqELnadDdjatbrU7q7lN7u+RR5pVoLYA/SabUGfkF
ueIDkHU6enXshuC8Mzd2Ilqd4FaVCvvSMA154ab4RrGhDlrK93WdGTDgBeFnfseL
Gepgi3cjRcFutuPHSaKNsgCuGtuXLAwwT9iODgHguDxusNVlHZPUCr3+rOhjOcQv
vjHbHEwL2Kkiwy6haN9fHFKO0TgU9G8CDc+hn+4IbukgVm99Lu9ckL0xh7Hkiv57
vAJ8NoqWTnkDJniz/8OnJeY+RG/W+6jFe08saPz2Uc1d6sUQpiC67AsjE13vx/3K
WVjjUNpYfeOIpRu5u0U88c/2dUlJ1jfuvw/ejhepNla2Yy7XrGIcvehJtJOm1GYa
Cfirp7ZFGkv1OXlEWbT81SEyZy0VBNwbYqVyKpxB+VffKuIH6EbgH6Yfmr9XRMlQ
pG9KcD3jztuH7X9A7OKh7b+jkeeOJN3rc+q/D/o5ryG12ZvBMHysC9HLQ0ToPHlX
etkqV8tOwo7cViPn
=YeLd
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team


[Python-modules-team] Bug#784512: Is anybody working on PySide2?

2017-09-24 Thread Dominique Belhachemi
You can find some pyside2 packages in following Ubuntu PPA

sudo apt-get install software-properties-common
sudo add-apt-repository ppa:thopiekar/pyside-git
sudo apt-get update
apt-get install python3-pyside2



For a quick test you can try to compile the packages in Debian testing.

# compile and install shiboken2
# you need at least clang 3.9, I tried it with 4.0
sudo apt install libclang-4.0-dev llvm-4.0 clang-4.0
dget
https://answers.launchpad.net/~thopiekar/+archive/ubuntu/pyside-git/+files/shiboken2_2.0.0.dev0-0~201708271303~rev1711~pkg53~ubuntu17.10.1.dsc
dpkg-source -x
shiboken2_2.0.0.dev0-0~201708271303~rev1711~pkg53~ubuntu17.10.1.dsc
sudo mk-build-deps --install ~/shiboken2-2.0.0.dev0/debian/control
cd shiboken2-2.0.0.dev0/
# switch to clang/llvm 4.0
PATH=/usr/lib/llvm-4.0/bin:$PATH
# may have to set this in debian/rules: CLANG_INSTALL_DIR :=
"/usr/lib/llvm-4.0/"
debuild -j16
# install the shiboken packages ...


# compile and install pyside2
dget
https://answers.launchpad.net/~thopiekar/+archive/ubuntu/pyside-git/+files/pyside2_2.0.0+dev-0~201708271303~rev1779~pkg53~ubuntu17.10.1.dsc
dpkg-source -x
pyside2_2.0.0+dev-0~201708271303~rev1779~pkg53~ubuntu17.10.1.dsc
sudo mk-build-deps --install ~/pyside2-2.0.0+dev/debian/control
cd pyside2-2.0.0+dev/
rm debian/source/format
debuild -j16
# install pyside2 packages ...


# run a pyside2 examples from http://code.qt.io/cgit/pyside/examples.git
e.g.
http://code.qt.io/cgit/pyside/examples.git/tree/examples/widgets/widgets/tetrix.py
___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team

[Python-modules-team] vcr.py_1.11.1-1_source.changes ACCEPTED into unstable

2017-09-24 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 23 Sep 2017 03:28:42 +0200
Source: vcr.py
Binary: python-vcr python3-vcr python-vcr-doc
Architecture: source
Version: 1.11.1-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Modules Team 

Changed-By: Daniele Tricoli 
Description:
 python-vcr - record and replay HTML interactions (Python library)
 python-vcr-doc - record and replay HTML interactions (Documentation)
 python3-vcr - record and replay HTML interactions (Python3 library)
Changes:
 vcr.py (1.11.1-1) unstable; urgency=medium
 .
   * New upstream release.
   * debian/control
 - Bump Standards-Version to 4.1.0 (no changes needed).
 - Use Python 3 Sphinx documentation generator.
   * debian/copyright
 - Update copyright years.
   * debian/python-vcr.pyremove
 - Remove _handle_coroutine.py module from Python 2 build since it's a
   Python 3 module.
   * debian/rules
 - Replace usage of dpkg-parsechangelog with $SOURCE_DATE_EPOCH.
   * debian/tests/python3-vcr
 - Exclude TLS failing tests.
Checksums-Sha1:
 e699604a04dea085e4964e2be6c7d841ed66b6e6 3060 vcr.py_1.11.1-1.dsc
 9aa9490eedce87596c8015f545ffb5020459eaee 326239 vcr.py_1.11.1.orig.tar.gz
 166fd7225ae320a346c77037280cf441b28d1b6b 4520 vcr.py_1.11.1-1.debian.tar.xz
 25477a91006a0997a3f10518ee823c65fe33886d 9608 vcr.py_1.11.1-1_amd64.buildinfo
Checksums-Sha256:
 e731f815fc4902ef150496293dc22a7ed0b58084835cddbef01d1a32514ea8b9 3060 
vcr.py_1.11.1-1.dsc
 e9849a5e7fd9cbd8913ccba624160d57fded2b0f686d250ae8c59227dd51a9a6 326239 
vcr.py_1.11.1.orig.tar.gz
 7dfb39c78158434fa11020f8dc8f64f57e5d36e6d832a707b52d57d8a5b58e3a 4520 
vcr.py_1.11.1-1.debian.tar.xz
 cd48e9011459210d4244dff5280adc8aacfdf8673b20f2d5702746300928c128 9608 
vcr.py_1.11.1-1_amd64.buildinfo
Files:
 026e4cbee14fc44842c53f49e865d864 3060 python optional vcr.py_1.11.1-1.dsc
 07d8750da417f5d8e98fedba1486b1c2 326239 python optional 
vcr.py_1.11.1.orig.tar.gz
 fc066a38c1431e063cd418bc0e6dc3c2 4520 python optional 
vcr.py_1.11.1-1.debian.tar.xz
 fbf1d6a43cd77e328cbc78601e53fe14 9608 python optional 
vcr.py_1.11.1-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEi3hoeGwz5cZMTQpICBa54Yx2K60FAlnHzvwACgkQCBa54Yx2
K60nvA//dCS+3IULhaWHi2mv7Hmhl1pXmGf4cpfhdrwkFhwf+OZY6hWFJcowT+qv
gG1WijFE7nVfeltfcXGGpJwdNfSWhyxD316YD+Z9aV/fOvct/ohFXsf4WB2Gy1Rj
OvNFHHmM2YqXbXg3qNPkNGU3yJqM8yhthXMvY9bLOrcH7sYIA1dZZAhmNeBcV0xK
t7+rX6/x/nGxhfxqhL8WbSQrxAuXph2WGHk4AF8ClH6f03dFdwhpth+wSdSaKPR1
vMziL98OKQ6hDGtmDbWU39p7Dcll7gTi5QHzk5ExmCLxnWPA0V6w6wFZ+PD7V0ja
bG9ovEmN1sQzOTvB4kd2i04jXjVQtsf2zlJl0zSsZTVJlM+onnT9CxMNQX2E3Td4
uG6FkMUF1BIOSMJzx6IqfXNGJ0LG+ZRKwg02oYrdZ0C6aEHztZxgKNDQKqiFDcBF
x97wg08x0boE4uvh1tzykanDkhoXTGmY9R8IshkQ6mRF96w+xpIJ9NUNE1IJFEpK
Nr54dzZ3Z/8rAscam7Dp15/rFWukkJXxWg7Abv5e6e+R9H4kSYuaz8cv7FCKQ8UT
83UI4Y5QcXrpMARpwQjDmo4HjQ2dmyo6nGT6xemLFFtKIkBX07E7MwhcRNFsU1Ee
CEgqq3qQrLa1vKgL/mbzaIU/u2lC7I0vz3XwbzTjxnvigKJGYSk=
=T/VS
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team


[Python-modules-team] Processing of vcr.py_1.11.1-1_source.changes

2017-09-24 Thread Debian FTP Masters
vcr.py_1.11.1-1_source.changes uploaded successfully to localhost
along with the files:
  vcr.py_1.11.1-1.dsc
  vcr.py_1.11.1.orig.tar.gz
  vcr.py_1.11.1-1.debian.tar.xz
  vcr.py_1.11.1-1_amd64.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team


[Python-modules-team] Bug#867447: marked as done (python3-pampy: missing dependencies)

2017-09-24 Thread Debian Bug Tracking System
Your message dated Sun, 24 Sep 2017 13:32:10 +
with message-id 
and subject line Bug#867447: fixed in python-pampy 1.8.2-1+deb9u1
has caused the Debian Bug report #867447,
regarding python3-pampy: missing dependencies
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
867447: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=867447
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: python3-pampy
Version: 1.8.2-1
Severity: serious
Tags: patch

Due to a cut'n'paste error there are no package dependencies.

Fix:

--- debian/control.old  2017-07-06 17:03:34.0 +
+++ debian/control  2017-07-06 17:03:43.0 +
@@ -37,7 +37,7 @@
 Architecture: all
 Depends:
  ${misc:Depends},
- ${python:Depends},
+ ${python3:Depends},
 Description: Python module for simple PAM authentications (Python 3)
  Provide an authenticate() function that will allow the caller to
  authenticate a user against the Pluggable Authentication Modules
--- End Message ---
--- Begin Message ---
Source: python-pampy
Source-Version: 1.8.2-1+deb9u1

We believe that the bug you reported is fixed in the latest version of
python-pampy, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 867...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Mike Gabriel  (supplier of updated python-pampy package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 18 Sep 2017 17:39:32 +0200
Source: python-pampy
Binary: python-pampy python3-pampy
Architecture: source
Version: 1.8.2-1+deb9u1
Distribution: stretch
Urgency: medium
Maintainer: Debian Python Modules Team 

Changed-By: Mike Gabriel 
Description:
 python-pampy - Python module for simple PAM authentications (Python 2)
 python3-pampy - Python module for simple PAM authentications (Python 3)
Closes: 867447
Changes:
 python-pampy (1.8.2-1+deb9u1) stretch; urgency=medium
 .
   [ Ondřej Nový ]
   * debian/control:
 + Fix typo in D (python3-pampy): Change ${python:Depends} to
   ${python3:Depends}. Spotted by Adrian Bunk. (Closes: #867447).
Checksums-Sha1:
 29af59386913d3337a2f8679d1040d7f839b4491 2214 python-pampy_1.8.2-1+deb9u1.dsc
 f0dd8170893540691ffcccf0e324dfc17eaa60dc 4888 
python-pampy_1.8.2-1+deb9u1.debian.tar.xz
 4a5f1cf1bd5af4756170d4f742aa312f2c87b52e 6708 
python-pampy_1.8.2-1+deb9u1_source.buildinfo
Checksums-Sha256:
 55397cc155a70096db9967db0ef67c7fdce7acf5a2798e0597b4e89dd536d2ee 2214 
python-pampy_1.8.2-1+deb9u1.dsc
 19b8d0b114f28591b48b4f1460e201fb4fc24fa96f0907b446419d21169dbeed 4888 
python-pampy_1.8.2-1+deb9u1.debian.tar.xz
 5584a544278d9088a5be50f4994bdbe94633e4a9fdd6ec309ab4b538af872e2c 6708 
python-pampy_1.8.2-1+deb9u1_source.buildinfo
Files:
 4582b59593f328862246880d7f33c421 2214 python optional 
python-pampy_1.8.2-1+deb9u1.dsc
 a13b9b344d07ff4fe9f5dda609309f48 4888 python optional 
python-pampy_1.8.2-1+deb9u1.debian.tar.xz
 4c82d9c8afd2ee21e8aa4063e0c960fe 6708 python optional 
python-pampy_1.8.2-1+deb9u1_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJJBAEBCAAzFiEEm/uu6GwKpf+/IgeCmvRrMCV3GzEFAlnGsosVHHN1bndlYXZl
ckBkZWJpYW4ub3JnAAoJEJr0azAldxsxbPoP/2cvQst1uAQQHITj0MH7eUzCaULp
IWKaajuLu1JfjJ5RhGWGdzWud9OBtQIuDiZbH41sfswTeJ3zgv+BMuoPsmKLlW3G
2OXTJrbgVwdwzXNri9pLaoqFgLuG/oklZjD/1R/DbzefszQEQf9WJDcjbaELGNKg
GdATavBh4bBZnjKZs+2mzTNFzPBewsNnO9z4Fjm0Xp5d60JYNve/Z2tO1ESrdCwq
9E1DKdhe4xxAWUd+yFpJE3ntSjpuW+H6OL5mqVD92RnS7NutgXNrzZADRbUVMn1p
D3zW/3p9ZoFcj14QXkdAxdLpEa1qCHOnrCGk4K2WFbj34aWvVCULYchpDKC5hRQq
Svph+osCIEYTM4dXeL65SOb4LAJiapguQsyybV8K7VPfbm9ovyp6VJKHOTo694OT
IeIyiH1emH5i24UX9AavH+VMnPIscyhB1VXSZBVjFuBWaDxNPl5ou4SV8WHpTiLT
7Jva4L//mUgiVmRO+nzJLJ7zdg7SHUfbIDJCObtkG39K7WsIpnqqkT/IUZEB06jS
8di24hTb3ON6kE9aoJ9mtpav2s6ughM7CcOMOKlb5goLnv5uYp7SkPK3U5qlTyV5
KSG29F6ORU0kin1CWzwWdrBCM1vISM/ADH0BE2f+qVc+dDv2cVDJcjVNGlYq4re0
4aZS9w2Av+SsYOAt
=i2M9
-END PGP SIGNATURE End Message ---
___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org

[Python-modules-team] python-pampy_1.8.2-1+deb9u1_source.changes ACCEPTED into proposed-updates->stable-new, proposed-updates

2017-09-24 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 18 Sep 2017 17:39:32 +0200
Source: python-pampy
Binary: python-pampy python3-pampy
Architecture: source
Version: 1.8.2-1+deb9u1
Distribution: stretch
Urgency: medium
Maintainer: Debian Python Modules Team 

Changed-By: Mike Gabriel 
Description:
 python-pampy - Python module for simple PAM authentications (Python 2)
 python3-pampy - Python module for simple PAM authentications (Python 3)
Closes: 867447
Changes:
 python-pampy (1.8.2-1+deb9u1) stretch; urgency=medium
 .
   [ Ondřej Nový ]
   * debian/control:
 + Fix typo in D (python3-pampy): Change ${python:Depends} to
   ${python3:Depends}. Spotted by Adrian Bunk. (Closes: #867447).
Checksums-Sha1:
 29af59386913d3337a2f8679d1040d7f839b4491 2214 python-pampy_1.8.2-1+deb9u1.dsc
 f0dd8170893540691ffcccf0e324dfc17eaa60dc 4888 
python-pampy_1.8.2-1+deb9u1.debian.tar.xz
 4a5f1cf1bd5af4756170d4f742aa312f2c87b52e 6708 
python-pampy_1.8.2-1+deb9u1_source.buildinfo
Checksums-Sha256:
 55397cc155a70096db9967db0ef67c7fdce7acf5a2798e0597b4e89dd536d2ee 2214 
python-pampy_1.8.2-1+deb9u1.dsc
 19b8d0b114f28591b48b4f1460e201fb4fc24fa96f0907b446419d21169dbeed 4888 
python-pampy_1.8.2-1+deb9u1.debian.tar.xz
 5584a544278d9088a5be50f4994bdbe94633e4a9fdd6ec309ab4b538af872e2c 6708 
python-pampy_1.8.2-1+deb9u1_source.buildinfo
Files:
 4582b59593f328862246880d7f33c421 2214 python optional 
python-pampy_1.8.2-1+deb9u1.dsc
 a13b9b344d07ff4fe9f5dda609309f48 4888 python optional 
python-pampy_1.8.2-1+deb9u1.debian.tar.xz
 4c82d9c8afd2ee21e8aa4063e0c960fe 6708 python optional 
python-pampy_1.8.2-1+deb9u1_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJJBAEBCAAzFiEEm/uu6GwKpf+/IgeCmvRrMCV3GzEFAlnGsosVHHN1bndlYXZl
ckBkZWJpYW4ub3JnAAoJEJr0azAldxsxbPoP/2cvQst1uAQQHITj0MH7eUzCaULp
IWKaajuLu1JfjJ5RhGWGdzWud9OBtQIuDiZbH41sfswTeJ3zgv+BMuoPsmKLlW3G
2OXTJrbgVwdwzXNri9pLaoqFgLuG/oklZjD/1R/DbzefszQEQf9WJDcjbaELGNKg
GdATavBh4bBZnjKZs+2mzTNFzPBewsNnO9z4Fjm0Xp5d60JYNve/Z2tO1ESrdCwq
9E1DKdhe4xxAWUd+yFpJE3ntSjpuW+H6OL5mqVD92RnS7NutgXNrzZADRbUVMn1p
D3zW/3p9ZoFcj14QXkdAxdLpEa1qCHOnrCGk4K2WFbj34aWvVCULYchpDKC5hRQq
Svph+osCIEYTM4dXeL65SOb4LAJiapguQsyybV8K7VPfbm9ovyp6VJKHOTo694OT
IeIyiH1emH5i24UX9AavH+VMnPIscyhB1VXSZBVjFuBWaDxNPl5ou4SV8WHpTiLT
7Jva4L//mUgiVmRO+nzJLJ7zdg7SHUfbIDJCObtkG39K7WsIpnqqkT/IUZEB06jS
8di24hTb3ON6kE9aoJ9mtpav2s6ughM7CcOMOKlb5goLnv5uYp7SkPK3U5qlTyV5
KSG29F6ORU0kin1CWzwWdrBCM1vISM/ADH0BE2f+qVc+dDv2cVDJcjVNGlYq4re0
4aZS9w2Av+SsYOAt
=i2M9
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team

[Python-modules-team] Bug#876645: pyside: missing build dependency on rename

2017-09-24 Thread Adrian Bunk
Source: pyside
Version: 1.2.2+source1-1
Severity: serious

https://tests.reproducible-builds.org/debian/rb-pkg/unstable/amd64/pyside.html

...
# Name the .so's correctly for python3
rename 's|(.*)/PySide/([^\.]*)\.so$|$1/PySide/$2.cpython-36m.so|'\
debian/tmp/usr/lib/python3/*-packages/PySide/*.so
/bin/sh: 1: rename: not found
debian/rules:151: recipe for target 'override_dh_auto_install_3-3.6' failed
make[1]: *** [override_dh_auto_install_3-3.6] Error 127

___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team