[Python-modules-team] Bug#471357: marked as done (python-zsi: wsdl2py generates faulty code for SSL-secured services)

2020-01-27 Thread Debian Bug Tracking System
Your message dated Tue, 28 Jan 2020 06:52:32 +
with message-id 
and subject line Bug#949164: Removed package(s) from unstable
has caused the Debian Bug report #471357,
regarding python-zsi: wsdl2py generates faulty code for SSL-secured services
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.)


-- 
471357: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=471357
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---

Package: python-zsi
Version: 1.7-2
Severity: normal


Tool wsdl2py generates two files -- one for service description and one
for types description.

But service location is not handled properely, because it ignores
protocol name -- it assumes that http is used and port 80. I would
suggest to take https in consideration. 

So instead of: 


   netloc = (urlparse.urlparse(addr)[1]).split(":") + [80,]
   if not kw.has_key("host"):
   kw["host"] = netloc[0]
   if not kw.has_key("port"):
   kw["port"] = int(netloc[1])
   if not kw.has_key("url"):
   kw["url"] =  urlparse.urlparse(addr)[2]


it should generate: 


   netloc = list(urlparse.urlparse(addr))
   netloc[1] = netloc[1].split(':')
   netloc[1].extend(netloc[0] == 'http' and ['80',] or ['443',])
   if not kw.has_key("host"):
   kw["host"] = netloc[1][0]
   if not kw.has_key("port"):
   kw["port"] = int(netloc[1][1])
   if not kw.has_key("url"):
   kw["url"] =  netloc[2]
   if netloc[0][-1] == 's':
   kw["ssl"] = True

After this change ssl=True and port=443 is set properely. 



File wsdl2python.py is responsible for this program. 











-- System Information:
Debian Release: 4.0
 APT prefers stable
 APT policy: (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-iplus
Locale: LANG=pl_PL, LC_CTYPE=pl_PL (charmap=ISO-8859-2)

Versions of packages python-zsi depends on:
ii  python2.4.4-2An interactive high-level object-o
ii  python-central0.5.12 register and build utility for Pyt
ii  python-xml0.8.4-6XML tools for Python

python-zsi recommends no packages.

-- no debconf information



--- End Message ---
--- Begin Message ---
Version: 2.1~a1-4+rm

Dear submitter,

as the package zsi has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/949164

The version of this package that was in Debian prior to this removal
can still be found using http://snapshot.debian.org/.

Please note that the changes have been done on the master archive and
will not propagate to any mirrors until the next dinstall run at the
earliest.

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

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)--- End Message ---
___
Python-modules-team mailing list
Python-modules-team@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/python-modules-team

[Python-modules-team] Bug#528345: marked as done (python-zsi: Error on import ('DefaultHandlerChain' is not defined))

2020-01-27 Thread Debian Bug Tracking System
Your message dated Tue, 28 Jan 2020 06:52:32 +
with message-id 
and subject line Bug#949164: Removed package(s) from unstable
has caused the Debian Bug report #528345,
regarding python-zsi: Error on import ('DefaultHandlerChain' is not defined)
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.)


-- 
528345: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=528345
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: python-zsi
Version: 2.1~a1-2
Severity: important

I am unable to import ZSI.twisted.WSresource. Tested with python2.4 and 2.5. As 
there is not much to do wrong on import, I assume this is a bug in the package.

Any information on this will be appreciated.

Thanks,
Karl

Python 2.5.2 (r252:60911, Jan  4 2009, 17:40:26) 
[GCC 4.3.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import ZSI.twisted.WSresource
Traceback (most recent call last):
  File "", line 1, in 
  File "/var/lib/python-support/python2.5/ZSI/twisted/WSresource.py", line 256, 
in 
class WSAddressHandlerChainFactory:
  File "/var/lib/python-support/python2.5/ZSI/twisted/WSresource.py", line 257, 
in WSAddressHandlerChainFactory
protocol = DefaultHandlerChain
NameError: name 'DefaultHandlerChain' is not defined


-- System Information:
Debian Release: 5.0.1
  APT prefers proposed-updates
  APT policy: (500, 'proposed-updates'), (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.26-2-686 (SMP w/2 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/bash

Versions of packages python-zsi depends on:
ii  python2.5.2-3An interactive high-level object-o
ii  python-support0.8.4  automated rebuilding support for P
ii  python-xml0.8.4-10.1 XML tools for Python

python-zsi recommends no packages.

python-zsi suggests no packages.

-- no debconf information


--- End Message ---
--- Begin Message ---
Version: 2.1~a1-4+rm

Dear submitter,

as the package zsi has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/949164

The version of this package that was in Debian prior to this removal
can still be found using http://snapshot.debian.org/.

Please note that the changes have been done on the master archive and
will not propagate to any mirrors until the next dinstall run at the
earliest.

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

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)--- End Message ---
___
Python-modules-team mailing list
Python-modules-team@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/python-modules-team

[Python-modules-team] Bug#938922: marked as done (zsi: Python2 removal in sid/bullseye)

2020-01-27 Thread Debian Bug Tracking System
Your message dated Tue, 28 Jan 2020 06:52:32 +
with message-id 
and subject line Bug#949164: Removed package(s) from unstable
has caused the Debian Bug report #938922,
regarding zsi: Python2 removal in sid/bullseye
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.)


-- 
938922: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=938922
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: src:zsi
Version: 2.1~a1-4
Severity: normal
Tags: sid bullseye
User: debian-pyt...@lists.debian.org
Usertags: py2removal

Python2 becomes end-of-live upstream, and Debian aims to remove
Python2 from the distribution, as discussed in
https://lists.debian.org/debian-python/2019/07/msg00080.html

Your package either build-depends, depends on Python2, or uses Python2
in the autopkg tests.  Please stop using Python2, and fix this issue
by one of the following actions.

- Convert your Package to Python3. This is the preferred option.  In
  case you are providing a Python module foo, please consider dropping
  the python-foo package, and only build a python3-foo package.  Please
  don't drop Python2 modules, which still have reverse dependencies,
  just document them.
  
  This is the preferred option.

- If the package is dead upstream, cannot be converted or maintained
  in Debian, it should be removed from the distribution.  If the
  package still has reverse dependencies, raise the severity to
  "serious" and document the reverse dependencies with the BTS affects
  command.  If the package has no reverse dependencies, confirm that
  the package can be removed, reassign this issue to ftp.debian.org,
  make sure that the bug priority is set to normal and retitle the
  issue to "RM: PKG -- removal triggered by the Python2 removal".

- If the package has still many users (popcon >= 300), or is needed to
  build another package which cannot be removed, document that by
  adding the "py2keep" user tag (not replacing the py2remove tag),
  using the debian-pyt...@lists.debian.org user.  Also any
  dependencies on an unversioned python package (python, python-dev)
  must not be used, same with the python shebang.  These have to be
  replaced by python2/python2.7 dependencies and shebang.

  This is the least preferred option.

If the conversion or removal needs action on another package first,
please document the blocking by using the BTS affects command, like

  affects  + src:zsi

If there is no py2removal bug for that reverse-dependency, please file
a bug on this package (similar to this bug report).

If there are questions, please refer to the wiki page for the removal:
https://wiki.debian.org/Python/2Removal, or ask for help on IRC
#debian-python, or the debian-pyt...@lists.debian.org mailing list.
--- End Message ---
--- Begin Message ---
Version: 2.1~a1-4+rm

Dear submitter,

as the package zsi has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/949164

The version of this package that was in Debian prior to this removal
can still be found using http://snapshot.debian.org/.

Please note that the changes have been done on the master archive and
will not propagate to any mirrors until the next dinstall run at the
earliest.

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

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)--- End Message ---
___
Python-modules-team mailing list
Python-modules-team@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/python-modules-team

[Python-modules-team] Bug#623433: marked as done (python-zsi: Faulty detection of nillable elements)

2020-01-27 Thread Debian Bug Tracking System
Your message dated Tue, 28 Jan 2020 06:52:32 +
with message-id 
and subject line Bug#949164: Removed package(s) from unstable
has caused the Debian Bug report #623433,
regarding python-zsi: Faulty detection of nillable elements
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.)


-- 
623433: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=623433
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: python-zsi
Version: 2.1~a1-3
Severity: normal
Tags: upstream patch

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

ZSI fails at doing a proper attribute check for nillable elements. It
doen not take into account the XML namespace prefix "xsi" for the "nil"
attribute. It has been reported upstream but there has been no reaction
for more then 3 month.

This is rather nasty as it prevents ZSI from being able to query most of
the information from the Debian BTS SOAP interface:

>>> from ZSI.client import Binding
>>> b = Binding('http://bugs.debian.org/cgi-bin/soap.cgi')
>>> b.get_status(123456)
ZSI.EvaluateException: Non-nillable element is NIL
[Element trace:

/soap:Envelope/soap:Body/get_statusResponse/s-gensym3/item/value/fixed/item/value]

The upstream bugreport at [0] contains a patch written by me to fix this
problem. I've modified this patch a bit and it would be great if it could 
be included in the python-zsi package.

[0] 
http://sourceforge.net/tracker/index.php?func=detail&aid=3155574&group_id=26590&atid=387667

- -- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.38-2-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages python-zsi depends on:
ii  python2.6.6-14   interactive high-level object-orie
ii  python-support1.0.13 automated rebuilding support for P

python-zsi recommends no packages.

python-zsi suggests no packages.

- -- no debconf information

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iEYEARECAAYFAk2uilYACgkQeJ3z1zFMUGZlWQCghZPkj4uTId0zpSODd/E6BgWg
/8YAnAgl7WLDxmE2BA+d1C+ksYdui4fD
=eeKx
-END PGP SIGNATURE-
--- /usr/lib/pymodules/python2.6/ZSI/TC.py  2011-01-11 14:49:24.653560293 
+0100
+++ TC.py   2011-01-11 14:49:50.619867506 +0100
@@ -29,7 +29,7 @@
 
 _is_xsd_or_soap_ns = lambda ns: ns in [
 SCHEMA.XSD3, SOAP.ENC, SCHEMA.XSD1, SCHEMA.XSD2, ]
-_find_nil = lambda E: _find_xsi_attr(E, "null") or _find_xsi_attr(E, "nil")
+_find_nil = lambda E: _find_xsi_attr(E, "null") or _find_xsi_attr(E, 
"xsi:nil") or _find_xsi_attr(E, "nil")
 
 def _get_xsitype(pyclass):
 '''returns the xsi:type as a tuple, coupled with ZSI.schema
--- End Message ---
--- Begin Message ---
Version: 2.1~a1-4+rm

Dear submitter,

as the package zsi has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/949164

The version of this package that was in Debian prior to this removal
can still be found using http://snapshot.debian.org/.

Please note that the changes have been done on the master archive and
will not propagate to any mirrors until the next dinstall run at the
earliest.

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

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)--- End Message ---
___
Python-modules-team mailing list
Python-modules-team@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/python-modules-team

[Python-modules-team] Bug#471496: marked as done (python-zsi: Value error on binding type should be ignored)

2020-01-27 Thread Debian Bug Tracking System
Your message dated Tue, 28 Jan 2020 06:52:32 +
with message-id 
and subject line Bug#949164: Removed package(s) from unstable
has caused the Debian Bug report #471496,
regarding python-zsi: Value error on binding type should be ignored
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.)


-- 
471496: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=471496
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---

Package: python-zsi
Version: 1.7-2
Severity: normal


Open python console:

>>> from ZSI.ServiceProxy import ServiceProxy
>>> service = ServiceProxy('https://www.ecod.pl/webserv2/EDIservice.asmx?WSDL')
Traceback (most recent call last):
  File "", line 1, in ?
  File "/usr/lib/python2.4/site-packages/ZSI/ServiceProxy.py", line 57, in 
__ini t__

callinfo = wstools.WSDLTools.callInfoFromWSDL(port, item.name)
  File "/usr/lib/python2.4/site-packages/ZSI/wstools/WSDLTools.py", line 1494, 
i n callInfoFromWSDL

raise ValueError, 'Unsupported binding type.'
ValueError: Unsupported binding type.



File https://www.ecod.pl/webserv2/EDIservice.asmx?WSDL contains three portTypes:

  
xmlns="http://schemas.xmlsoap.org/wsdl/";>WebService2


  https://www.ecod.pl/webserv2/EDIservice.asmx"; />


  https://www.ecod.pl/webserv2/EDIservice.asmx"; />


  https://www.ecod.pl/webserv2/EDIservice.asmx"; />

  


After deleting last two:

  
xmlns="http://schemas.xmlsoap.org/wsdl/";>WebService2


  https://www.ecod.pl/webserv2/EDIservice.asmx"; />

  

service conected properely.



Module ServiceProxy should ignore what it doesn't understand and allow user to 
connect to service without need to modify WSDL file.



-- System Information:
Debian Release: 4.0
 APT prefers stable
 APT policy: (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-iplus
Locale: LANG=pl_PL, LC_CTYPE=pl_PL (charmap=ISO-8859-2)

Versions of packages python-zsi depends on:
ii  python2.4.4-2An interactive high-level object-o
ii  python-central0.5.12 register and build utility for Pyt
ii  python-xml0.8.4-6XML tools for Python

python-zsi recommends no packages.

-- no debconf information




--- End Message ---
--- Begin Message ---
Version: 2.1~a1-4+rm

Dear submitter,

as the package zsi has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/949164

The version of this package that was in Debian prior to this removal
can still be found using http://snapshot.debian.org/.

Please note that the changes have been done on the master archive and
will not propagate to any mirrors until the next dinstall run at the
earliest.

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

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)--- End Message ---
___
Python-modules-team mailing list
Python-modules-team@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/python-modules-team

[Python-modules-team] Bug#224019: marked as done (python-zsi: support more bindings)

2020-01-27 Thread Debian Bug Tracking System
Your message dated Tue, 28 Jan 2020 06:52:32 +
with message-id 
and subject line Bug#949164: Removed package(s) from unstable
has caused the Debian Bug report #224019,
regarding python-zsi: support more bindings
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.)


-- 
224019: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=224019
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: python2.3-zsi
Version: 1.4.1-1
Severity: normal

The package contains no useful docs.  I have tried this code:

from ZSI import ServiceProxy

bn = ServiceProxy(\
"http://www.abundanttech.com/webservices/bnprice/bnprice.wsdl";)

bn.GetBNQuote('0517220784')

However, this doesn't work, though from all indications, it should.  It
results in:


Though other SOAP clients seem to have no trouble accessing this.


Traceback (most recent call last):
  File "", line 1, in ?
File "/usr/lib/python2.3/site-packages/ZSI/ServiceProxy.py", line
82, in __call__
return self.parent()._call(self.__name__, *args, **kwargs)
  File "/usr/lib/python2.3/site-packages/ZSI/ServiceProxy.py",
  line 65, in _call
  apply(getattr(binding, callinfo.methodName), args)
File "/usr/lib/python2.3/site-packages/ZSI/client.py",
line 28, in __call__
requesttypecode=TC.Any(self.name, aslist=1))
  File
  "/usr/lib/python2.3/site-packages/ZSI/client.py",
  line 132, in RPC
  return self.Receive(replytype, **kw)
File
"/usr/lib/python2.3/site-packages/ZSI/client.py",
line 261, in Receive
raise FaultException(msg)
ZSI.FaultException: Server did not
recognize the value of HTTP Header
SOAPAction: http://www.zolera.com.



-- System Information:
Debian Release: testing/unstable
Architecture: powerpc
Kernel: Linux christoph 2.4.23-pre5-ben0 #1 Tue Dec 9 19:22:29 CST 2003 ppc
Locale: LANG=C, LC_CTYPE=C

Versions of packages python2.3-zsi depends on:
ii  python-zsi1.4.1-1Zolera Soap Infrastructure
ii  python2.3 2.3.2-6An interactive high-level object-o
ii  python2.3-xml 0.8.3-4XML tools for Python (2.3.x)

-- no debconf information


--- End Message ---
--- Begin Message ---
Version: 2.1~a1-4+rm

Dear submitter,

as the package zsi has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/949164

The version of this package that was in Debian prior to this removal
can still be found using http://snapshot.debian.org/.

Please note that the changes have been done on the master archive and
will not propagate to any mirrors until the next dinstall run at the
earliest.

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

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)--- End Message ---
___
Python-modules-team mailing list
Python-modules-team@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/python-modules-team

[Python-modules-team] Bug#949164: Removed package(s) from unstable

2020-01-27 Thread Debian FTP Masters
We believe that the bug you reported is now fixed; the following
package(s) have been removed from unstable:

python-zsi |   2.1~a1-4 | all
   zsi |   2.1~a1-4 | source

--- Reason ---
RoQA; python2-only; leaf package; last release 14 years ago; better 
alternatives exist
--

Note that the package(s) have simply been removed from the tag
database and may (or may not) still be in the pool; this is not a bug.
The package(s) will be physically removed automatically when no suite
references them (and in the case of source, when no binary references
it).  Please also remember that the changes have been done on the
master archive and will not propagate to any mirrors until the next
dinstall run at the earliest.

Packages are usually not removed from testing by hand. Testing tracks
unstable and will automatically remove packages which were removed
from unstable when removing them from testing causes no dependency
problems. The release team can force a removal from testing if it is
really needed, please contact them if this should be the case.

We try to close bugs which have been reported against this package
automatically. But please check all old bugs, if they were closed
correctly or should have been re-assigned to another package.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 949...@bugs.debian.org.

The full log for this bug can be viewed at https://bugs.debian.org/949164

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

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)

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

[Python-modules-team] Bug#949164: Removed package(s) from unstable

2020-01-27 Thread Debian FTP Masters
Version: 2.1~a1-4+rm

Dear submitter,

as the package zsi has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/949164

The version of this package that was in Debian prior to this removal
can still be found using http://snapshot.debian.org/.

Please note that the changes have been done on the master archive and
will not propagate to any mirrors until the next dinstall run at the
earliest.

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

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)

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

[Python-modules-team] python-lark_0.8.1-1_source.changes ACCEPTED into unstable

2020-01-27 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 28 Jan 2020 01:22:20 -0500
Source: python-lark
Architecture: source
Version: 0.8.1-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Modules Team 

Changed-By: Andrius Merkys 
Changes:
 python-lark (0.8.1-1) unstable; urgency=medium
 .
   * New upstream version 0.8.1
   * Adding myself to the list of uploaders.
   * Updating debian/copyright.
Checksums-Sha1:
 65b97e8c5f4ba332fb6f2cfef78f5118dbf355ce 2167 python-lark_0.8.1-1.dsc
 ebd5fc330e3d7093a24eef1977dc395d4a3b8e7d 301083 python-lark_0.8.1.orig.tar.gz
 d141ed9016f59e32ff13e1c1d8a0044dd9d23b2f 3748 python-lark_0.8.1-1.debian.tar.xz
 2a8cf05eba47cfc7ad0eac26f7a678c5f18203ec 7520 
python-lark_0.8.1-1_source.buildinfo
Checksums-Sha256:
 57a9b5f9975d6ad7d2a73c9fa559b6f682dc8fc79c73a61370753c9e527359d6 2167 
python-lark_0.8.1-1.dsc
 64f8dd6f066097f86fd9aaff84a5ba98ecdcd0d10b8f3525f83b641b54643b63 301083 
python-lark_0.8.1.orig.tar.gz
 9661e0f1d3537d51c229966d0acd0518347019fb69c707f55a86ba6f0e2f908c 3748 
python-lark_0.8.1-1.debian.tar.xz
 1ec1ffb8d47e34da73a95697bd4596e418c97421451dcc8583a6f849e0e9242a 7520 
python-lark_0.8.1-1_source.buildinfo
Files:
 3c29a34f1941f0bc09859c1368aad0e0 2167 python optional python-lark_0.8.1-1.dsc
 b2493ade8aaddb0a504e05e1604ed162 301083 python optional 
python-lark_0.8.1.orig.tar.gz
 58af4479b832c5cc23dd56731c4b196e 3748 python optional 
python-lark_0.8.1-1.debian.tar.xz
 ed77530f6cc43c001ee400fc897bb375 7520 python optional 
python-lark_0.8.1-1_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJGBAEBCgAwFiEEdyKS9veshfrgQdQe5fQ/nCc08ocFAl4v1PASHG1lcmt5c0Bk
ZWJpYW4ub3JnAAoJEOX0P5wnNPKHZQcP/REU/6aP652NlUp8UrOyQNg7JSUE5kXG
U8wzf/6P9Hh6AOsWOR7xzIy8uhUcDhuHIs2hL8iWmYuYPEPRtXoJz1FR3vP2PPk0
pJPBOlmRc4x0CmMxs1PVpe4xUCaC070t/2Yx9vvDfgGPN4+9CKFoJwM37vrN+N8H
4YRIMrieXKhQis3aHDDRaDecdJRHmsDDzGg1pU7YhnBmG+CiHknChE06UFcl+1Ki
H/jTUcQcR+xWYUbRMXVjqxV8jT/aesRq6kDh1wnwb+elDaDdNQh0Vk8xuYCCTY/q
QF6TeS90fmwM/aCxARavpfXtOClEUWJXthcNCF+lLQTCqMaAkpA/00+bDdWtDLYX
aPMRIUw+OGTDfRBIoHM/1LraCbECppEWBce4H7Ow+Be0yY/+/UPO709Pzij+iuBs
dShJotW311BaW2MrUVhRoM9zkaIV0czqBxCAPzq0l9DD/3f2dzqii3TbbQo9o9dR
fAfuDzP6iwTdZ6K/U1twMc+bx6dnEgF2Zw0nl/k6pHlaAJG1b5bSg+R2gtXRT35J
/1xlzqVc03CppnoJmfKcho7MvZYeuMIdjYyDwQnInIKNuWOmuIXJA63h8pYp6N8W
bsKCBLX6Oup/3lKRtQLn3+LYKrBG+4XJS4Ly7VLPM5FSMVZVK92k1lJDsK2XMGa3
QE/rXQMP38yW
=927p
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

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

[Python-modules-team] Processing of python-lark_0.8.1-1_source.changes

2020-01-27 Thread Debian FTP Masters
python-lark_0.8.1-1_source.changes uploaded successfully to localhost
along with the files:
  python-lark_0.8.1-1.dsc
  python-lark_0.8.1.orig.tar.gz
  python-lark_0.8.1-1.debian.tar.xz
  python-lark_0.8.1-1_source.buildinfo

Greetings,

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

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

[Python-modules-team] pep517 0.7.0-3 MIGRATED to testing

2020-01-27 Thread Debian testing watch
FYI: The status of the pep517 source package
in Debian's testing distribution has changed.

  Previous version: (not in testing)
  Current version:  0.7.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@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/python-modules-team

[Python-modules-team] python-publicsuffix2 2.20191221-2 MIGRATED to testing

2020-01-27 Thread Debian testing watch
FYI: The status of the python-publicsuffix2 source package
in Debian's testing distribution has changed.

  Previous version: (not in testing)
  Current version:  2.20191221-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@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/python-modules-team

[Python-modules-team] python-nox 2019.5.30-2 MIGRATED to testing

2020-01-27 Thread Debian testing watch
FYI: The status of the python-nox source package
in Debian's testing distribution has changed.

  Previous version: (not in testing)
  Current version:  2019.5.30-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@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/python-modules-team

[Python-modules-team] authheaders 0.13.0-1 MIGRATED to testing

2020-01-27 Thread Debian testing watch
FYI: The status of the authheaders source package
in Debian's testing distribution has changed.

  Previous version: 0.12.2-1
  Current version:  0.13.0-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@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/python-modules-team

[Python-modules-team] Bug#940736: Bug#949938: d-feet build depends on the removed pep8 transitional package

2020-01-27 Thread Sandro Tosi
yep, this is clearly my fault.

i could either reintroduce pep8, or maybe we could have pycodestyle
provide pep8 and that should satisfy the dependencies?

On Mon, Jan 27, 2020 at 6:45 PM Simon McVittie  wrote:
>
> Control: tags 949938 + pending
>
> On Mon, 27 Jan 2020 at 13:21:03 +0200, Adrian Bunk wrote:
> > pep8 is no longer built by src:pep8.
>
> Thanks for reporting this, fix in progress. The pep8 binary package seems
> to have been removed without checking for reverse-dependencies. Affected
> packages:
>
> Checking reverse dependencies...
> # Broken Build-Depends:
> backup2swift: pep8  #949942
> budgie-extras: pep8 I'll open a bug
> byobu: pep8 #949941
> cloud-init: pep8#949940
> custodia: pep8  #949939
> d-feet: pep8#949938
> dirspec: pep8   #949937
> ovirt-guest-agent: pep8 I'll open a bug
> pygobject: pep8 Fix in progress
> python-apt: pep8I'll open a bug; fixed in experimental
> python-cliapp: pep8 #949936
> python-ddt: pep8#949935
> seqdiag: pep8 (>= 1.3)  #949934
> swiftsc: pep8   #949933
> syslog-ng: pep8 #949847
>
> Regards,
> smcv



-- 
Sandro "morph" Tosi
My website: http://sandrotosi.me/
Me at Debian: http://wiki.debian.org/SandroTosi
Twitter: https://twitter.com/sandrotosi

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

[Python-modules-team] pikepdf_1.10.0+dfsg-1_source.changes ACCEPTED into unstable

2020-01-27 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 27 Jan 2020 20:42:14 -0700
Source: pikepdf
Architecture: source
Version: 1.10.0+dfsg-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Modules Team 

Changed-By: Sean Whitton 
Changes:
 pikepdf (1.10.0+dfsg-1) unstable; urgency=medium
 .
   * New upstream release.
   * Refresh patch.
   * Set http{s,}_proxy for override_dh_auto_build to prevent sphinx
 attempting to fetch intersphinx inventory files.
 Thanks, LibraryStyleGuide page on Debian Wiki.
   * Fix HTML docs build:
 - Add python3-pil build-dep
 - Run dh_auto_build first, then try to build docs.
   Previously we were doing the reverse.
 - Set PYTHONPATH.
   * Drop superfluous '-O--buildsystem=pybuild'.
Checksums-Sha1:
 3b9675696e95592a8b8f94327f23738f376c09ee 2625 pikepdf_1.10.0+dfsg-1.dsc
 4578f8cfdea5a586b1b512c547ec1f7fcd34bf2d 1522744 
pikepdf_1.10.0+dfsg.orig.tar.xz
 7f861369c4a84090922270747cdcdf315b861d47 1922900 
pikepdf_1.10.0+dfsg-1.debian.tar.xz
Checksums-Sha256:
 d19957d300df9895e323d085be81804402dc12835c3c5d1acc249a122b6b5d19 2625 
pikepdf_1.10.0+dfsg-1.dsc
 16d70ebdd87dee136effa502b3ef00b3e3f4af97b82ec1c9e2b3c7de15c1 1522744 
pikepdf_1.10.0+dfsg.orig.tar.xz
 732f895f2e39d80040c2e203bbc8524746c03bd43eea3b325195d6d059d9884f 1922900 
pikepdf_1.10.0+dfsg-1.debian.tar.xz
Files:
 bc6ea68024a9b18134d94580d315f9fd 2625 python optional pikepdf_1.10.0+dfsg-1.dsc
 df23deca6dbcfef10bd01d4245577e05 1522744 python optional 
pikepdf_1.10.0+dfsg.orig.tar.xz
 992d2a1f1c5363174e84045af090b5ca 1922900 python optional 
pikepdf_1.10.0+dfsg-1.debian.tar.xz

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEm5FwB64DDjbk/CSLaVt65L8GYkAFAl4vrbIACgkQaVt65L8G
YkBPfhAAhtmzQzT2atua21i/crhMzeorKXkZLCjSFLAfVHYQCeeLO4ks/YRo5XF9
/4iSzs3C0Ybd3Evgs5oTOm//ePbWftdkeGHftYAH4Zlq2JjhwaeWlF9D1B0F+hcL
wzAEoyNZYRy/xv77MqpVm5E6ultCHCvIhZv4bjeeq9pyAJOGwMARhH3fxg9ujL6P
dnbNJZsRkSs2habu98A2jtvd5PYtE3sUH2szgyPRGLowKRmBN80+J2KvxG3Sw0El
2AVhRxQ4FE5meC1Ovt16nWB2LRDtUViS5bdpPIx5TrdMp26vLLr8jv/DGvUBbS+a
3r5HbCJej9ShJAvD457uCDn08Dh+eof1Tm6EHt/LhK06Yb1gj3kUaFkurC+sEZ5k
z6v5T+wuKdSt8qaq4NWelDL1kCePsOEvmfcr3phVmtf3svDdTMyCrNW3yRvn/II+
h/vnFQqXClHro/ljKDcJy6MSis6AVygWJj0GdXgsp65GcXm5nmbLviMdsdm06PHu
IkBEpT39wHd/jDm+Og1SQo4q58m+hi5gdop5we5vpVIHjWNQ3fjbcV5INJkYVW1V
gJe38abo6RQf3SCnIrXRbGPLKxSBjpdodMCtkmjg2OJVf+N3xhJjxTPItJBVpOwQ
aaaPEuCG5ZGUbegiNm5IuWP46N1Dve1HPoFGgRIyCuA+RSwYFTo=
=uSgh
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

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

[Python-modules-team] pyfribidi_0.12.0+repack-4_source.changes ACCEPTED into unstable

2020-01-27 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 28 Jan 2020 04:27:15 +0100
Source: pyfribidi
Binary: python3-pyfribidi
Architecture: source
Version: 0.12.0+repack-4
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Modules Team 

Changed-By: أحمد المحمودي (Ahmed El-Mahmoudy) 

Description:
 python3-pyfribidi - FriBidi Python bindings
Closes: 949117
Changes:
 pyfribidi (0.12.0+repack-4) unstable; urgency=medium
 .
   * Add testNoReorderNonSpacingMarks.patch to fix testNoReorderNonSpacingMarks
 (Closes: #949117)
Checksums-Sha1:
 c55b454b3991230ec9a51abd4bbbf66ae21e7a9d 1946 pyfribidi_0.12.0+repack-4.dsc
 f842d018c3a4fb1e86094af774ea756cd464aefb 5024 
pyfribidi_0.12.0+repack-4.debian.tar.xz
 c7292cbdd92ef9b3614dcd47537c0cb2b6afd29d 7092 
pyfribidi_0.12.0+repack-4_source.buildinfo
Checksums-Sha256:
 0a233940c805cb955cfd116c3498e519de2f6a6e2d2441aa76082606a3f00abd 1946 
pyfribidi_0.12.0+repack-4.dsc
 e4efb3776831f383111705b13140d04641fa5fb79e74ef25f5b8c8c0a1605ecd 5024 
pyfribidi_0.12.0+repack-4.debian.tar.xz
 350fa81bdcc2af7fdd18e2c488f638e253a85a6ebc7d0e423892c7330ee5f890 7092 
pyfribidi_0.12.0+repack-4_source.buildinfo
Files:
 13a9f01f5b399fb6b9bd533125113d3a 1946 python optional 
pyfribidi_0.12.0+repack-4.dsc
 ff603f22df44634a1c9080e9db0a91db 5024 python optional 
pyfribidi_0.12.0+repack-4.debian.tar.xz
 eb935bba9da7b9aa5246db7146715f19 7092 python optional 
pyfribidi_0.12.0+repack-4_source.buildinfo

-BEGIN PGP SIGNATURE-

iQFWBAEBCgBAFiEEggahliCEfm0N+LF2vBlqlO3dobcFAl4vrikiHGFlbG1haG1v
dWR5QHVzZXJzLnNvdXJjZWZvcmdlLm5ldAAKCRC8GWqU7d2htwlVB/wJKCrQgcOT
TKywWr7ctnXQTXQ6zH4oMcoWwq+56P/QFSqMX0WcssSF+k8hZtZNkHXRUHvdtgF8
nW5F/RKIy134nLRwsuzUV20T6MK6qpzrI4SgmbLu9+Y1USsIdZEyzV28TjSMKtmN
TWA/U/h3urOU2aHAkO1QSTiFg7o6BV0fhZnCyQXFOCY+j/EphPxWTBXfbF4E7Zfp
ISX+hIBoqZCmnNKPnuP1MPhG0stU/qo7SrTDR2AMjAuMxJU9cXpRfc1Nqm1NAD35
lFUP2XZ/IBH+vo+9T1KGlQsoFTLUMGaDIlgvAL5cMxmGtv1s32GDn6cTHuh/tjYi
6dZBPMN+hbHC
=H2pE
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

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

[Python-modules-team] Processing of pyfribidi_0.12.0+repack-4_source.changes

2020-01-27 Thread Debian FTP Masters
pyfribidi_0.12.0+repack-4_source.changes uploaded successfully to localhost
along with the files:
  pyfribidi_0.12.0+repack-4.dsc
  pyfribidi_0.12.0+repack-4.debian.tar.xz
  pyfribidi_0.12.0+repack-4_source.buildinfo

Greetings,

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

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

[Python-modules-team] Processing of pikepdf_1.10.0+dfsg-1_source.changes

2020-01-27 Thread Debian FTP Masters
pikepdf_1.10.0+dfsg-1_source.changes uploaded successfully to localhost
along with the files:
  pikepdf_1.10.0+dfsg-1.dsc
  pikepdf_1.10.0+dfsg.orig.tar.xz
  pikepdf_1.10.0+dfsg-1.debian.tar.xz

Greetings,

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

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

[Python-modules-team] python-exif_2.2.0-5_source.changes ACCEPTED into unstable

2020-01-27 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 28 Jan 2020 11:47:31 +0900
Source: python-exif
Architecture: source
Version: 2.2.0-5
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Modules Team 

Changed-By: TANIGUCHI Takaki 
Changes:
 python-exif (2.2.0-5) unstable; urgency=medium
 .
   * Set upstream metadata fields: Bug-Database, Bug-Submit, Repository,
 Repository-Browse.
   * Bump Standards-Version to 4.5.0
   * d/tests/control: Adjust binary package name and import name.
Checksums-Sha1:
 34dd6390fcdfb0aa218ed1fbf40ce12be32afd81 2197 python-exif_2.2.0-5.dsc
 9cd912d8a3454ad8558f79590d7de88da94f2893 3312 python-exif_2.2.0-5.debian.tar.xz
 89c2a1911b3e58973af449bfc645a2a8a2f52cbf 7061 
python-exif_2.2.0-5_source.buildinfo
Checksums-Sha256:
 f0c0ff248afc0a79871cd18fdfa5d8a7ccec5ff9302d1dde4b6fbe2bb360c081 2197 
python-exif_2.2.0-5.dsc
 749e5ffc4fb42e38babe1d043b5b874b0d823ad8ceef3f3d192d2e8dd952dfe7 3312 
python-exif_2.2.0-5.debian.tar.xz
 9aee27b92100a5d22b34e30cb2b687bd0b98b2ae87d8ccae00f41ebce8e41165 7061 
python-exif_2.2.0-5_source.buildinfo
Files:
 d058e6d74780fa2e4f886a7e922d089a 2197 python optional python-exif_2.2.0-5.dsc
 d200352f687841af8930c35962f758ab 3312 python optional 
python-exif_2.2.0-5.debian.tar.xz
 17c3203e135f64fe42bb4e8dfc0eddcb 7061 python optional 
python-exif_2.2.0-5_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJGBAEBCAAwFiEE0kq/0SfNJVahPGx5zBSfbCil4lcFAl4voVkSHHRha2FraUBk
ZWJpYW4ub3JnAAoJEMwUn2wopeJXcCcP/jsdfDuZ9SlkYjwI8RuZDM/8yvQrxZr+
02TvJtuUVzMR6heHoRJrN2zIX52F+NH9MAhVfP2ujk5RAbSWWhVeXZZV8s6/+X9l
qXAFeXIOFUYyh556lBTsz/Ufru9SCN4ncx3C0WzHImukiv3eJzLIPYUWqzTx/6c8
D/NpKzv6LdqUs5N5Jt3ZpOWUL+8Ps+x1xq2TCD2KTBELukjlEaKNU+2RvvFwT7Ic
l8zmzS9NvtoPPIte7zmmaQOQxqTXHlUj7UMnKRt5y0iA0uqJpjn5T5Sglln4RY4F
M4X3JZhJFpjp8tAVqbC5PNriX8iso0ORUpPadx74LU6Wr6eOj4aPqu2LgJCkTP/Q
SOX/rL0l+rTEgHdat2zSp8QwkmNaulgRLWVY+oVj6pMAGTWnxPQN4eWtIh49LqVA
1hzeCupL6YY/44thPP3XM0RCMt+PlgZh0ftE+NI7JJ7HcBLOUZIidU0Lm1YoB99t
u9/fL4pELoEJlqiTLkCeTaHPwu9k+HHdHGkInLr5mwn5ynyLVCSiiABm2mLz+KjB
DPKhkeX3XNro7SKqERXEeDmxWlcmPZPOpdmSbVQRYKnVfymfILAS95oRTwOXtjwF
p4DiS0PqFhql8YaVAqREjn/4XQgZ091gokKeH5OKznqPGSHlz9XGYT9OQTDXR5pI
uBQWswLIPesu
=LDXs
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

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

[Python-modules-team] Processing of python-exif_2.2.0-5_source.changes

2020-01-27 Thread Debian FTP Masters
python-exif_2.2.0-5_source.changes uploaded successfully to localhost
along with the files:
  python-exif_2.2.0-5.dsc
  python-exif_2.2.0-5.debian.tar.xz
  python-exif_2.2.0-5_source.buildinfo

Greetings,

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

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

[Python-modules-team] Bug#940736: Bug#949938: d-feet build depends on the removed pep8 transitional package

2020-01-27 Thread Simon McVittie
Control: tags 949938 + pending

On Mon, 27 Jan 2020 at 13:21:03 +0200, Adrian Bunk wrote:
> pep8 is no longer built by src:pep8.

Thanks for reporting this, fix in progress. The pep8 binary package seems
to have been removed without checking for reverse-dependencies. Affected
packages:

Checking reverse dependencies...
# Broken Build-Depends:
backup2swift: pep8  #949942
budgie-extras: pep8 I'll open a bug
byobu: pep8 #949941
cloud-init: pep8#949940
custodia: pep8  #949939
d-feet: pep8#949938
dirspec: pep8   #949937
ovirt-guest-agent: pep8 I'll open a bug
pygobject: pep8 Fix in progress
python-apt: pep8I'll open a bug; fixed in experimental
python-cliapp: pep8 #949936
python-ddt: pep8#949935
seqdiag: pep8 (>= 1.3)  #949934
swiftsc: pep8   #949933
syslog-ng: pep8 #949847

Regards,
smcv

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

[Python-modules-team] Processed: Re: Bug#694398: pep8: please also check python scripts that are not named *.py

2020-01-27 Thread Debian Bug Tracking System
Processing control commands:

> reassign -1 pycodestyle
Bug #694398 [pep8] pep8: please also check python scripts that are not named 
*.py
Bug reassigned from package 'pep8' to 'pycodestyle'.
No longer marked as found in versions pep8/1.2-1.
Ignoring request to alter fixed versions of bug #694398 to the same values 
previously set

-- 
694398: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=694398
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems

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

Re: [Python-modules-team] Bug#694398: pep8: please also check python scripts that are not named *.py

2020-01-27 Thread Simon McVittie
Control: reassign -1 pycodestyle

On Mon, 26 Nov 2012 at 10:40:34 +0800, Paul Wise wrote:
> It would be great if pep8 could detect files that are python scripts
> but are not named *.py.

Now that pep8 is no longer maintained upstream under that name, this
should presumably become a feature request for pycodestyle instead.

smcv

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

[Python-modules-team] nbformat_5.0.4-1_source.changes ACCEPTED into unstable

2020-01-27 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 27 Jan 2020 23:33:39 +0100
Source: nbformat
Architecture: source
Version: 5.0.4-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Modules Team 

Changed-By: Julien Puydt 
Changes:
 nbformat (5.0.4-1) unstable; urgency=medium
 .
   * New upstream release.
   * Bump std-ver to 4.5.0.
   * Use my debian.org mail address.
Checksums-Sha1:
 4a4cf7ebe19b7b88b4fc24872f5aeb4aaa2670c0 2393 nbformat_5.0.4-1.dsc
 d135bd22739701a9d80d27c1d090428930178779 124674 nbformat_5.0.4.orig.tar.gz
 a1e5ac3cb70a5e27459d3c2fdf13b7637d6e912e 4576 nbformat_5.0.4-1.debian.tar.xz
 42a6651537ceb8a826e557056d6823bade63f564 7578 nbformat_5.0.4-1_source.buildinfo
Checksums-Sha256:
 d611d41cfcdedd77cbc35093df68d73064c9ac3b51cb275f175d898bde6c2213 2393 
nbformat_5.0.4-1.dsc
 5153c3d5c7a61ae7a12eeed87589c28ac815e630f92d0d5e37d02f56d22ac7d4 124674 
nbformat_5.0.4.orig.tar.gz
 22768c81448208cf51319ab7cb48bc730ccf7d150fc7d9f593d393fd32da3d14 4576 
nbformat_5.0.4-1.debian.tar.xz
 3d7afb2a13035e5b8eca587367f968ff5b9a180ce1cb3417c476f6a51814c502 7578 
nbformat_5.0.4-1_source.buildinfo
Files:
 732304daaf9728192caa176e7bf9fdee 2393 python optional nbformat_5.0.4-1.dsc
 311dc8550d54c4643fa9a61bb20d1dbe 124674 python optional 
nbformat_5.0.4.orig.tar.gz
 16a5e1095cf4eec95f3cc341e32cfbce 4576 python optional 
nbformat_5.0.4-1.debian.tar.xz
 7fefbe6cf942538b30a28052addae010 7578 python optional 
nbformat_5.0.4-1_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJGBAEBCgAwFiEEgS7v2KP7pKzk3xFLBMU71/4DBVEFAl4vZcoSHGpwdXlkdEBk
ZWJpYW4ub3JnAAoJEATFO9f+AwVRu84QAIl9VAl3D38egtMzQs8tmxFPVaNgplPt
rYaUrxdcQq2/J+ceuu2RHEz6GBamfG5TPhGUfuo08jbmqVWyAoyVjv5YJOr+tCbh
p9WoVeMzuxup3pZguH8/72C8Ht/IZjIfRhu2/TJROI1nCUjbGvtwJsSYkHhig2YG
FvEMLReKp71RvsHTf4QABGu8XfsSoqzcZX6ngCC5Uvs8DlRZzdNLTmPhKptnDrBY
sPJwKMnQ0coKu661bqu5eWX/Dj5WDqvf0Hd0pW4KO5ZbgaaX5zLhWnYN5sALwImP
Ge8y2SA2m5u3nuw2Jt739kY7N+V4Lv3cjIX0/0cK2rINeZxAY1cGOHTaZf6POQ2q
hmr3BRdSqwyWaN1oySh9ayWMLpH5+pe02fLF83PVtMp+dSuPaX6DciwhR1yxANpT
EqDpwTUDEdtd0DtQLsJMwYRJAtppoGVIFEx60XRVgpaB9b8boRRido6a+75Wv4hq
ddKJNdXvRR1nZ2IFwEgB3gB8XiuJzsJXOnmqCrAW/mlkeOjuSQR95iaLkwyOD2dJ
yBABvHIFqKCGnuw5Qkqa7zw00UnOxL3gOjUp4ABGMqmvCAcFo+0O2eCbPFd4gHYc
IAvfUKmNbebXa45h90rpelllEBjKdxHb0Jl21zg4Nxb/VMa5sXlYQ7z4WHxVvhwU
13lvG2kwdYe9
=nCo+
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

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

[Python-modules-team] Processing of nbformat_5.0.4-1_source.changes

2020-01-27 Thread Debian FTP Masters
nbformat_5.0.4-1_source.changes uploaded successfully to localhost
along with the files:
  nbformat_5.0.4-1.dsc
  nbformat_5.0.4.orig.tar.gz
  nbformat_5.0.4-1.debian.tar.xz
  nbformat_5.0.4-1_source.buildinfo

Greetings,

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

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

[Python-modules-team] Bug#949974: More details

2020-01-27 Thread Enrico Zini
Hello,

I tracked the issue: in http1connection.py, the write method does:

self._pending_write = self.stream.write(fchunk)
self._pending_write.add_done_callback(self._on_write_complete)   

The Future[1] documentation says:

Callbacks registered with add_done_callback() are always called via
the event loop’s call_soon_threadsafe().

So although self._pending_write in that case is already in a 'done'
state, self._on_write_complete is only called the next time we'll
reenter the event loop.

Meanwhile, before returning to the event loop, the flow of the code
continues and RequestHandler.finish calls:

self.request.connection.finish()

It detects correctly that there is still a pending write, and calls:

future_add_done_callback(self._pending_write, self._finish_request)

However, future_add_done_callback does not schedule self._finish_request
for the next ioloop iteration like Future.add_done_callback does:

# concurrent.py:
def future_add_done_callback(future, callback):
# …
if future.done():
callback(future)
else:
future.add_done_callback(callback)

Compare with:

# In concurrent.py, class Future:
def add_done_callback(self, fn):
# …
if self._done:
from tornado.ioloop import IOLoop
IOLoop.current().add_callback(fn, self)
else:
self._callbacks.append(fn)

So self._finish_request is called before self._on_write_complete,
_clear_callbacks() is called, which resets self._write_callbacks.

When control returns to the event loop, _on_write_complete is finally,
called, which finds self._write_future set to None, and won't trigger
the future that will permit RequestHandler.flush() to continue.

If there is still data to write, self._pending_write is not done when
future_add_done_callback is called, and RequestHandler.flush() won't get
stuck.


Enrico


[1] 
https://www.tornadoweb.org/en/stable/concurrent.html#tornado.concurrent.Future.add_done_callback

-- 
GPG key: 4096R/634F4BD1E7AD5568 2009-05-08 Enrico Zini 


signature.asc
Description: PGP signature
___
Python-modules-team mailing list
Python-modules-team@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/python-modules-team

[Python-modules-team] Bug#949974: Finish hangs after flush

2020-01-27 Thread Enrico Zini
Package: python3-tornado
Version: 5.1.1-4
Severity: normal

Hello,

thank you for maintaining tornado in Debian.

Here's a simple variation of Tornado's hello example, supposing one
wants to take timing or log things after a flush:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
import tornado.ioloop
import tornado.web


class MainHandler(tornado.web.RequestHandler):
async def get(self):
print("START")
self.write("Hello, world")
await self.flush()
print("DATA WRITTEN")
await self.finish()
print("REQUEST DONE")


def make_app():
return tornado.web.Application([
(r"/", MainHandler),
])


if __name__ == "__main__":
app = make_app()
app.listen()
tornado.ioloop.IOLoop.current().start()
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Running this code, curl localhost:, and the output on tornado is:

  START
  DATA WRITTEN

That is, finish() seems to hang forever if it has no more data to write.


Enrico


-- System Information:
Debian Release: 10.2
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 5.4.0-0.bpo.2-amd64 (SMP w/4 CPU cores)
Kernel taint flags: TAINT_WARN
Locale: LANG=en_IE.UTF-8, LC_CTYPE=en_IE.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_IE:en (charmap=UTF-8)
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages python3-tornado depends on:
ii  ca-certificates  20190110
ii  libc62.28-10
ii  python3  3.7.3-1

python3-tornado recommends no packages.

Versions of packages python3-tornado suggests:
ii  python-tornado-doc  5.1.1-4
ii  python3-pycurl  7.43.0.2-0.1
ii  python3-twisted 18.9.0-3

-- no debconf information

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

[Python-modules-team] Processed: your mail

2020-01-27 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 949968 + pending
Bug #949968 [src:python-noise] fix build dependencies
Added tag(s) pending.
> thanks
Stopping processing here.

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

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

[Python-modules-team] Bug#949968: fix build dependencies

2020-01-27 Thread Matthias Klose
Package: src:python-noise
Version: 0.3.0-2
Severity: serious
Tags: sid bullseye patch

fix build dependencies, python3-all-dev is the only correct b-d.

patch at
http://launchpadlibrarian.net/462373949/python-noise_1.2.3-2build1_1.2.3-2ubuntu1.diff.gz

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

[Python-modules-team] python-textile_4.0.1-1_source.changes ACCEPTED into unstable

2020-01-27 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 27 Jan 2020 21:32:11 +0300
Source: python-textile
Architecture: source
Version: 1:4.0.1-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Modules Team 

Changed-By: Dmitry Shachnev 
Changes:
 python-textile (1:4.0.1-1) unstable; urgency=medium
 .
   * New upstream release.
   * Bump Standards-Version to 4.5.0, no changes needed.
Checksums-Sha1:
 1ffbdd22aacad358a032e078fdcb05d678ef4bdb 2245 python-textile_4.0.1-1.dsc
 7c479bfd5d20d02a13687ff5b907345dfd093427 49282 python-textile_4.0.1.orig.tar.gz
 0f79d01878b911aefdd55b68468c1be025f5df36 5040 
python-textile_4.0.1-1.debian.tar.xz
 3a53ce765f2200a2f9f43551e8c3ec6bd5522203 7521 
python-textile_4.0.1-1_source.buildinfo
Checksums-Sha256:
 4eacb202de8b224107f0529b369ad1d13134cfe35aec0020e0600805a639f853 2245 
python-textile_4.0.1-1.dsc
 3e3a15e530caafec23a130479ee08be84c0c31b33eb5ddf94c7351b8a5ce062a 49282 
python-textile_4.0.1.orig.tar.gz
 b10058e3016c9d5250e51632299afe7811bd55d1e61827e703d78c52e652620b 5040 
python-textile_4.0.1-1.debian.tar.xz
 f4a44c4181e2cd16dd11d7594fab1cf85f5fe304b74a6637163b91741b5f9d91 7521 
python-textile_4.0.1-1_source.buildinfo
Files:
 6e28b591faac8e248a653705817041d9 2245 python optional 
python-textile_4.0.1-1.dsc
 12ba1b203079cbe56edad8eca56ac6d6 49282 python optional 
python-textile_4.0.1.orig.tar.gz
 7bc4436d9e441f8ddacbb95010ab5f7a 5040 python optional 
python-textile_4.0.1-1.debian.tar.xz
 db3275034504016566e8441cc4e5c127 7521 python optional 
python-textile_4.0.1-1_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJHBAEBCgAxFiEE5688gqe4PSusUZcLZkYmW1hrg8sFAl4vL4wTHG1pdHlhNTdA
ZGViaWFuLm9yZwAKCRBmRiZbWGuDy2yGD/wJXbL2hbvxP08rv/WfMtl4MPK7aQ7t
4EKvcde67ZGb4vv33+hH/250YmuPKf098Jpgq1HSzyh/cG71Ru2K/6C+n2e/s0QI
Vv62DoQxlXruSaxS5GeBODVduLrPFPA72H44irgJMgpoiybmI0BzME5KhM94d0Q/
RUMVtYPMtgsp6Awhop7DtLOXglLuZPWkWkZJnyJ1ZGXoqqPx8VyffDaxzSr+KtRe
oFic8w62iUETr0mtfoBfYPwBWP2SuxSEamKVHcfFN6Uy278WLhgzncrZq3RfDR9C
jp5PBrgCyRIzSkF7DfmiDjGc6pjd2/5bjW9o5pv+b1Sybc/b5oH0sZky0bVOWE/0
1GFLOR+U5rNIK/MINaeO9Rea4jktNTQBmTdQmi4e6I37oIjuVA/+dKDJm0xB8AWD
vaC2eeHSuOdjltrO3j3oJ3YGVy3J+Hzj/NmL/gIP/Dh4m1+wceBJsQpuMaO8CsXN
eah98EcyQTvsyxZeGmYc5X85TM9l7p+l0JDbtWQXRodNootVZTDFZKslHoL93HVi
jRURiitmdrXLw5Spv8Nd5ieoLyH1uenws11nt/uR/g/FVfmNQBWhMznWHNlGNs3K
4Q05z50mERz/7ViScJRBWCc+qBMB9o/tIupdq22WB/9hOMu+vTIniP0w0j3zJpaO
mZSZZbS7YEyJeg==
=J8Fg
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

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

[Python-modules-team] Processing of python-textile_4.0.1-1_source.changes

2020-01-27 Thread Debian FTP Masters
python-textile_4.0.1-1_source.changes uploaded successfully to localhost
along with the files:
  python-textile_4.0.1-1.dsc
  python-textile_4.0.1.orig.tar.gz
  python-textile_4.0.1-1.debian.tar.xz
  python-textile_4.0.1-1_source.buildinfo

Greetings,

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

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

[Python-modules-team] python-keyring_18.0.1-2_source.changes ACCEPTED into unstable

2020-01-27 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 27 Jan 2020 20:59:10 +0300
Source: python-keyring
Architecture: source
Version: 18.0.1-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Modules Team 

Changed-By: Dmitry Shachnev 
Changes:
 python-keyring (18.0.1-2) unstable; urgency=medium
 .
   * Drop dependency on python-secretstorage (only on Python 2).
   * Also drop the secretstorage-python2 autopkgtest.
   * Demote python[3]-dbus from Depends to Suggests.
   * Bump Standards-Version to 4.5.0, no changes needed.
Checksums-Sha1:
 404b8064a0ca49ef406c8bfeae70f9605010de36 2413 python-keyring_18.0.1-2.dsc
 c9e5f8fa6fbd079ad67c0cf25d90619b31004a84 8432 
python-keyring_18.0.1-2.debian.tar.xz
 7ef4ef668cd93a3f6056bbf31875b8c74ef07d64 7132 
python-keyring_18.0.1-2_source.buildinfo
Checksums-Sha256:
 2b7b0bc45c1ae2304a6d94d0b32915405eeff9592a185357d20a7d922242865b 2413 
python-keyring_18.0.1-2.dsc
 41848c44ab59b8f0801d4912e8941a20c017f00207eddfdc752d8acef2bf5e61 8432 
python-keyring_18.0.1-2.debian.tar.xz
 b064c3615fc8bd265471aad9ca299b38c581f316a210e07541ec759a66132042 7132 
python-keyring_18.0.1-2_source.buildinfo
Files:
 46b17ea276b3b8d44ccbaf3ed9db8515 2413 python optional 
python-keyring_18.0.1-2.dsc
 f10ccb0c0e7cf72a0d049c735081f76b 8432 python optional 
python-keyring_18.0.1-2.debian.tar.xz
 706e1578f8e7580fbb742c3c4d74cc1f 7132 python optional 
python-keyring_18.0.1-2_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJHBAEBCgAxFiEE5688gqe4PSusUZcLZkYmW1hrg8sFAl4vJUITHG1pdHlhNTdA
ZGViaWFuLm9yZwAKCRBmRiZbWGuDy0asD/40pic8RG97bNkWjbTnNxwnqq70OnE6
joMZKh7U8ALujKvTHJ/eEjfqsJdBVNxYaturUG+Fj1PZD0IxANcPwMurfbsGzyvT
5kk0x2zRqUF5anwDRnfXye0SNNbDxrbOkCuz7DGN6GfkdGW2bh/o68glul1SA3yh
oUg9oIIlK+fiFek3wpioDIKhChQJLvv7R5dhGNWFtfp/i3HwkXsq1lJglHUwPF3n
FDt8lW8gvgmgHwS9gF2BIK4mKzyI1lW2KmDg+xniBwj67H+oH7z295HHcFCcBJxX
wszjviWPEthkhb4zt3GuV66ci1JJrRNp4ZXcWHt8kCFRFURvU6fHI4fyohSWU90d
fhwpIQHZ5Sov7BXbWDWkFkAKewHNAROkAgSHZ06yBS6MezqXu2JP2zRZ1OG4jNq8
LWDjUQpXUGe8B0PO0oBEfofr+j9PgmA7jT9qYGfbyVgokHM5ewH5z0mnzr7wqgA8
aKqwuwCfZQP6JbuwSY/71irMoSCh0i/JzfYyPjlLBrDHwCrtyp2oZf6loCuzmW0+
AvyXLwgLFsfqMT/Uwj+7kUhAI/JNAcsQxJSo1CbYcVQPBY3ZCd1WqtW+PPdLV55C
1wWr2GAyfTGAFh9706wGYYRwgfM9cVGWKap7uYHLLaO4ydHd2ogsgHGwpacaVTIy
W1Cn1hZvpc9h/w==
=H08h
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

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

[Python-modules-team] Processing of python-keyring_18.0.1-2_source.changes

2020-01-27 Thread Debian FTP Masters
python-keyring_18.0.1-2_source.changes uploaded successfully to localhost
along with the files:
  python-keyring_18.0.1-2.dsc
  python-keyring_18.0.1-2.debian.tar.xz
  python-keyring_18.0.1-2_source.buildinfo

Greetings,

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

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

[Python-modules-team] python-pcl_0.3.0~rc1+dfsg-8_source.changes ACCEPTED into unstable

2020-01-27 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 27 Jan 2020 11:06:15 +0100
Source: python-pcl
Architecture: source
Version: 0.3.0~rc1+dfsg-8
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Modules Team 

Changed-By: Jochen Sprickerhof 
Changes:
 python-pcl (0.3.0~rc1+dfsg-8) unstable; urgency=medium
 .
   [ Ondřej Nový ]
   * Use debhelper-compat instead of debian/compat.
 .
   [ Jochen Sprickerhof ]
   * Add support for PCL 1.10
   * Commit Debian 3.0 (quilt) metadata
   * bump policy and debhelper versions (no changes)
   * simplify d/watch
Checksums-Sha1:
 64b58c76ea216745d6c043788be8c615fbf97a0f 2320 python-pcl_0.3.0~rc1+dfsg-8.dsc
 678e51681f024212cd4c817e039bb3423776fa84 6508 
python-pcl_0.3.0~rc1+dfsg-8.debian.tar.xz
Checksums-Sha256:
 3543253a7c3a1b1a1515fd739f4ffd1580f9539643f96e1f2d1cdd1b89129472 2320 
python-pcl_0.3.0~rc1+dfsg-8.dsc
 c2866b275e91a731c95998e2d1868173974096c2b3cb55a291e897222c7dc4b6 6508 
python-pcl_0.3.0~rc1+dfsg-8.debian.tar.xz
Files:
 ce18ee1283faea504b3f720196694d91 2320 python optional 
python-pcl_0.3.0~rc1+dfsg-8.dsc
 b49eebc6f0e3dd2e5e311bf9a8507b4d 6508 python optional 
python-pcl_0.3.0~rc1+dfsg-8.debian.tar.xz

-BEGIN PGP SIGNATURE-

iQJIBAEBCgAyFiEEc7KZy9TurdzAF+h6W//cwljmlDMFAl4utsIUHGpzcHJpY2tl
QGRlYmlhbi5vcmcACgkQW//cwljmlDPcUw//fWSbhTs01N2IeOLgqG4TqWS0eG0s
ZH0py7n2bnTxyr0POQ5jTGWtGjaa9msR0I7sLWYLH06pnoUiDaMK83dTyDQ6GTWB
jhGNeSGGU2abCs8k97DWA7zInGLdApanWJm0+CqAKVZoOprYcpXGtwjRtgVRJO9N
vszHREiO26d9MSstiv06DJkQha2/EiyZHCmHrEm9ikazxOQ5YxNcR4Fel/d8xoA+
WDLZhKx/r62Q+R5/xwdR2T5lB/ur/506+aayxgN+HY0HxDTW5OYzmT+4Wmv+YBgR
w0U0PxM6oqLJj2gHkCIV9rw7dHeN6h95bEcnyyu/CMRBVwAk62R1r9/furzrdtry
Zxyk4Hn/jZfJA55N3praQhv5rJxExrG83V9hHp4HMkDt4BnN4LUwzvMt4k3cjyKh
Nf5Bsnhoyu1Hgaw9HKaZXpFaB7OAxOl/OK4ue1joQbgvFeMm8gwnMrKqfes51fBv
LWDYn6Cb+QfD/1sBmYTCFyYglTnMfs+KNtxpgObaTTFpGRT2QurmlLo3RqnPf8pB
FAwNVZe29iWs+q8InNQmNOicWT93uQIKVS9CHTjJmndMzEH74I8rJs5ldBkxxZhY
8921x3FsSR9iPLvwcJlNkxO+Kv8VpyWi6viMFWVHm2l6+u4DuNktRd5EV03qW0EH
7fLPTmyChuL+j4M=
=zE8G
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

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

[Python-modules-team] Processing of python-pcl_0.3.0~rc1+dfsg-8_source.changes

2020-01-27 Thread Debian FTP Masters
python-pcl_0.3.0~rc1+dfsg-8_source.changes uploaded successfully to localhost
along with the files:
  python-pcl_0.3.0~rc1+dfsg-8.dsc
  python-pcl_0.3.0~rc1+dfsg-8.debian.tar.xz

Greetings,

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

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

[Python-modules-team] Bug#937487: marked as done (pynag: Python2 removal in sid/bullseye)

2020-01-27 Thread Debian Bug Tracking System
Your message dated Mon, 27 Jan 2020 09:19:40 +
with message-id 
and subject line Bug#937487: fixed in pynag 1.1.2+dfsg-2
has caused the Debian Bug report #937487,
regarding pynag: Python2 removal in sid/bullseye
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.)


-- 
937487: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=937487
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: src:pynag
Version: 0.9.1+dfsg-1
Severity: normal
Tags: sid bullseye
User: debian-pyt...@lists.debian.org
Usertags: py2removal

Python2 becomes end-of-live upstream, and Debian aims to remove
Python2 from the distribution, as discussed in
https://lists.debian.org/debian-python/2019/07/msg00080.html

Your package either build-depends, depends on Python2, or uses Python2
in the autopkg tests.  Please stop using Python2, and fix this issue
by one of the following actions.

- Convert your Package to Python3. This is the preferred option.  In
  case you are providing a Python module foo, please consider dropping
  the python-foo package, and only build a python3-foo package.  Please
  don't drop Python2 modules, which still have reverse dependencies,
  just document them.
  
  This is the preferred option.

- If the package is dead upstream, cannot be converted or maintained
  in Debian, it should be removed from the distribution.  If the
  package still has reverse dependencies, raise the severity to
  "serious" and document the reverse dependencies with the BTS affects
  command.  If the package has no reverse dependencies, confirm that
  the package can be removed, reassign this issue to ftp.debian.org,
  make sure that the bug priority is set to normal and retitle the
  issue to "RM: PKG -- removal triggered by the Python2 removal".

- If the package has still many users (popcon >= 300), or is needed to
  build another package which cannot be removed, document that by
  adding the "py2keep" user tag (not replacing the py2remove tag),
  using the debian-pyt...@lists.debian.org user.  Also any
  dependencies on an unversioned python package (python, python-dev)
  must not be used, same with the python shebang.  These have to be
  replaced by python2/python2.7 dependencies and shebang.

  This is the least preferred option.

If the conversion or removal needs action on another package first,
please document the blocking by using the BTS affects command, like

  affects  + src:pynag

If there is no py2removal bug for that reverse-dependency, please file
a bug on this package (similar to this bug report).

If there are questions, please refer to the wiki page for the removal:
https://wiki.debian.org/Python/2Removal, or ask for help on IRC
#debian-python, or the debian-pyt...@lists.debian.org mailing list.
--- End Message ---
--- Begin Message ---
Source: pynag
Source-Version: 1.1.2+dfsg-2

We believe that the bug you reported is fixed in the latest version of
pynag, 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 937...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Stefano Rivera  (supplier of updated pynag 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: Mon, 27 Jan 2020 10:51:59 +0200
Source: pynag
Architecture: source
Version: 1.1.2+dfsg-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Modules Team 

Changed-By: Stefano Rivera 
Closes: 937487
Changes:
 pynag (1.1.2+dfsg-2) unstable; urgency=medium
 .
   * Team upload (to unstable).
   * Drop Python 2 package (Closes: #937487)
   * Bump Standards-Version to 4.5.0, no changes needed.
Checksums-Sha1:
 12850ee950826851d9b6caa40751896175ff971e 1480 pynag_1.1.2+dfsg-2.dsc
 d220d311a6dacc652deebe01efc1839e8c55b718 2628 pynag_1.1.2+dfsg-2.debian.tar.xz
 2e7961979262698d1d1f3d07f382739ec685d9d9 5465 
pynag_1.1.2+dfsg-2_source.buildinfo
Checksums-Sha256:
 e6648d2da6ebd869ea22142e3090410a9a13b5b4564b32162f5d5ff13ec29fef 1480 
pynag_1.1.2+dfsg-2.dsc
 cbd48f776eae210975a94a882c0edd55f45cbf74cb26bbf0a00b4f8d5a35df4e 2628 
pynag_1.1.2+dfsg-2.debian.tar.xz
 89569d97755e5c18ca8b94192f4861c1662b6b2d5c92cb49ff378947d0bb0c30 5465 
pynag_1.1.2+dfsg-2_source.buildinfo
Fi

[Python-modules-team] pynag_1.1.2+dfsg-2_source.changes ACCEPTED into unstable

2020-01-27 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 27 Jan 2020 10:51:59 +0200
Source: pynag
Architecture: source
Version: 1.1.2+dfsg-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Modules Team 

Changed-By: Stefano Rivera 
Closes: 937487
Changes:
 pynag (1.1.2+dfsg-2) unstable; urgency=medium
 .
   * Team upload (to unstable).
   * Drop Python 2 package (Closes: #937487)
   * Bump Standards-Version to 4.5.0, no changes needed.
Checksums-Sha1:
 12850ee950826851d9b6caa40751896175ff971e 1480 pynag_1.1.2+dfsg-2.dsc
 d220d311a6dacc652deebe01efc1839e8c55b718 2628 pynag_1.1.2+dfsg-2.debian.tar.xz
 2e7961979262698d1d1f3d07f382739ec685d9d9 5465 
pynag_1.1.2+dfsg-2_source.buildinfo
Checksums-Sha256:
 e6648d2da6ebd869ea22142e3090410a9a13b5b4564b32162f5d5ff13ec29fef 1480 
pynag_1.1.2+dfsg-2.dsc
 cbd48f776eae210975a94a882c0edd55f45cbf74cb26bbf0a00b4f8d5a35df4e 2628 
pynag_1.1.2+dfsg-2.debian.tar.xz
 89569d97755e5c18ca8b94192f4861c1662b6b2d5c92cb49ff378947d0bb0c30 5465 
pynag_1.1.2+dfsg-2_source.buildinfo
Files:
 6d45baf8ec3290b609f7e36a5def7b76 1480 python optional pynag_1.1.2+dfsg-2.dsc
 b84b500fc94d53592fbdf6a85d41bb2f 2628 python optional 
pynag_1.1.2+dfsg-2.debian.tar.xz
 ff7bcc78f44db08d478f58d5900d856a 5465 python optional 
pynag_1.1.2+dfsg-2_source.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYKAB0WIQTumtb5BSD6EfafSCRHew2wJjpU2AUCXi6m+wAKCRBHew2wJjpU
2BidAQDYk5q/tU/nWVBr36UE/JT/KjH7+5oY7FMacaWarmqVMwEAwTH2xA+3I5fu
ML0uqY3jdVzjPq1KkCkm3+jEk37VNAk=
=RzAw
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

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

[Python-modules-team] Processing of pynag_1.1.2+dfsg-2_source.changes

2020-01-27 Thread Debian FTP Masters
pynag_1.1.2+dfsg-2_source.changes uploaded successfully to localhost
along with the files:
  pynag_1.1.2+dfsg-2.dsc
  pynag_1.1.2+dfsg-2.debian.tar.xz
  pynag_1.1.2+dfsg-2_source.buildinfo

Greetings,

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

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

[Python-modules-team] Bug#949925: stretch-pu: package cram/0.7-1+deb9u1

2020-01-27 Thread Adrian Bunk
Package: release.debian.org
Severity: normal
Tags: stretch
User: release.debian@packages.debian.org
Usertags: pu

https://tests.reproducible-builds.org/debian/rb-pkg/stretch/amd64/cram.html

  * Accept any test result to work around build failures.

Same workaround as in buster/bullseye/sid.
diff -Nru cram-0.7/debian/changelog cram-0.7/debian/changelog
--- cram-0.7/debian/changelog   2016-03-04 21:37:27.0 +0200
+++ cram-0.7/debian/changelog   2020-01-27 11:02:31.0 +0200
@@ -1,3 +1,10 @@
+cram (0.7-1+deb9u1) stretch; urgency=medium
+
+  * Non-maintainer upload.
+  * Accept any test result to work around build failures.
+
+ -- Adrian Bunk   Mon, 27 Jan 2020 11:02:31 +0200
+
 cram (0.7-1) unstable; urgency=low
 
   * New upstream release.
diff -Nru cram-0.7/debian/rules cram-0.7/debian/rules
--- cram-0.7/debian/rules   2016-03-04 21:43:04.0 +0200
+++ cram-0.7/debian/rules   2020-01-27 11:02:31.0 +0200
@@ -26,8 +26,10 @@
 
 override_dh_auto_test:
dh_auto_test
-   PYTHON=python COVERAGE=python-coverage   $(MAKE) test
-   PYTHON=python3 COVERAGE=python3-coverage $(MAKE) test
+   # accept any test result until the relation between cram and coverage 
is clarified
+   # see https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=897516#53
+   PYTHON=python COVERAGE=python-coverage   $(MAKE) test || true
+   PYTHON=python3 COVERAGE=python3-coverage $(MAKE) test || true
 
 override_dh_clean:
dh_clean -O--buildsystem=python_distutils
___
Python-modules-team mailing list
Python-modules-team@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/python-modules-team

[Python-modules-team] Processed: Bug#937487 marked as pending in pynag

2020-01-27 Thread Debian Bug Tracking System
Processing control commands:

> tag -1 pending
Bug #937487 [src:pynag] pynag: Python2 removal in sid/bullseye
Added tag(s) pending.

-- 
937487: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=937487
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems

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