Re: Need help uploading Python3 version of pychromecast

2016-12-14 Thread Sandro Tosi
On Wed, Dec 14, 2016 at 8:53 AM, Sandro Tosi  wrote:
> On Wed, Dec 14, 2016 at 3:57 AM, Alberto Caso  wrote:
>>
>> Sandro Tosi wrote:
>>> as a general rule, i'd be happy to sponsor any pkg adding a py3k package
>>
>> pydbus does not add a py3k to an py2-only package, but provides both a
>> py2 and a py3k package. Does that qualify? 0:-)
>>
>> https://lists.debian.org/debian-python/2016/12/msg00031.html
>
> nice try... but it worked! i'll give it a look this evening ET

You didnt specify this was a totally new package. now I dont have the time
to review it

-- 
Sandro "morph" Tosi
My website: http://sandrotosi.me/
Me at Debian: http://wiki.debian.org/SandroTosi
G+: https://plus.google.com/u/0/+SandroTosi



pyclean and namespaces

2016-12-14 Thread Julien Muchembled
(oops, resending to correct ML address)

Hello,

I found a potential issue while finishing to package a newer version 
zc.lockfile.

Since pycompile/pyclean does some namespace handling with what is defined 
/usr/share/python/ns, I thought I could remove the dummy python-zc binary 
package that was done in zc.lockfile

However, pyclean does not check whether other packages still need the same 
namespaces.

In other words:
- install python-zc.lockfile (with my local changes, so that it only relies on 
pycompile/pyclean for zc/__init__.py)
- install python-zc.customdoctests, which actually over-writes zc/__init__.py 
but that's not an issue at installation
- remove 1 of the above 2 packages
- zc/__init__.py gone, whereas there are still folders in 
/usr/lib/python2.7/dist-packages/zc

But that still seems to work:
$ python
Python 2.7.12+ (default, Sep  1 2016, 20:27:38) 
[GCC 6.2.0 20160927] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import zc.lockfile
>>> zc.__path__
['/usr/lib/python2.7/dist-packages/zc']

(because of /usr/lib/python2.7/dist-packages/zc.lockfile-1.2.1-nspkg.pth)

Tested with the last version python-minimal (2.7.11-2).

Regards,
Julien



Re: Need help uploading Python3 version of pychromecast

2016-12-14 Thread Sandro Tosi
On Wed, Dec 14, 2016 at 3:57 AM, Alberto Caso  wrote:
>
> Sandro Tosi wrote:
>> as a general rule, i'd be happy to sponsor any pkg adding a py3k package
>
> pydbus does not add a py3k to an py2-only package, but provides both a
> py2 and a py3k package. Does that qualify? 0:-)
>
> https://lists.debian.org/debian-python/2016/12/msg00031.html

nice try... but it worked! i'll give it a look this evening ET

-- 
Sandro "morph" Tosi
My website: http://sandrotosi.me/
Me at Debian: http://wiki.debian.org/SandroTosi
G+: https://plus.google.com/u/0/+SandroTosi



Bug#848112: Python-skimage depends on unavailable package python-dask

2016-12-14 Thread Ole Streicher
package: python-skimage
version: 0.12.3-2
severity: serious

The Python 2 version of skimage depends on a package "python-dask" that
is not available in Debian.

There is a patch that make the dependency optional; however the
dependency was not removed afterwards. For Python 3, this seems to work.

Since skimage is one of the central packages, I would again ask to put
it under science|python team maintenance. Especially when under some
time pressure (upcoming freeze, combined with autoremovals of packages)
it would help a lot if the problems could be debugged within a standard
Debian developer workflow, without the need to switch to github or so.

Best regards

Ole



Bug#848120: ITP: python-django-etcd-settings -- config manager for Django apps based on ETCD

2016-12-14 Thread Michael Fladischer
Package: wnpp
Severity: wishlist
Owner: Michael Fladischer 

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

* Package name: python-django-etcd-settings
  Version : 0.1.11
  Upstream Author : Enrique Paz 
* URL : https://github.com/kpn-digital/django-etcd-settings
* License : Apache-2
  Programming Lang: Python
  Description : config manager for Django apps based on ETCD.

 This application allows you to extend the Django settings as configured in the
 settings.py file with:
 .
  * Environment dependent values
  * Values in different config sets, identified by name, which can be selected
on a 'per request' basis using the X-DYNAMIC-SETTINGS HTTP header
 .
 Both the added configuration values and config sets would live at ETCD,
 which will be continuously monitored by this library in order to
 transparently update your app settings upon changes.

-BEGIN PGP SIGNATURE-

iQFFBAEBCgAvFiEEqVSlRXW87UkkCnJc/9PIi5l90WoFAlhRFcIRHGZsYWRpQGRl
Ymlhbi5vcmcACgkQ/9PIi5l90WrpKAf/SAJqMKoehHx1c1iH/r1ZVsanzKb8f6eA
MxgCw62kyPuvY7buvsYGrvJRLYy0sSUyRlAiLiwjjNSFXmG7jHFo9dmRzoOQ4vkC
o7aIkVmQsnFIs5xNJex9Coqwr2zTXtGlaKIT9NDBtMBMEAXdZuNj7ZrzmbH7TNM6
IyiYMi5zGuqtsdRuMkdDmho0ARkAyAI/NZWpqthL1CeVreJVZBq7Vtwm/khKUAiX
l1Z11Szk+GB4JAiA5l0lAH2H5jn+g7Wli8JKUH61dJmueq81/oT09juNwBtj5ner
ZSpP8SlxNNYXyHqWWdi1FFcSiintMaQA8i1X6d5Uk+FYCz2nJYEx/g==
=F6fL
-END PGP SIGNATURE-



DPMT membership request for moschlar-guest

2016-12-14 Thread Moritz Schlarb
Hello everyone,

I would like to join the DPMT.
I want to help with maintaining the nagstamon package under guidance of 
chr...@debian.org.

My Alioth login is moschlar-guest.

I have read the DPMT policy at 
https://python-modules.alioth.debian.org/policy.html and accept it.

Thanks a lot in advance.
Moritz


signature.asc
Description: PGP signature


Re: Need help uploading Python3 version of pychromecast

2016-12-14 Thread Alberto Caso

Sandro Tosi wrote:
> as a general rule, i'd be happy to sponsor any pkg adding a py3k package

pydbus does not add a py3k to an py2-only package, but provides both a
py2 and a py3k package. Does that qualify? 0:-)

https://lists.debian.org/debian-python/2016/12/msg00031.html

Thank you in advance.

-- 
Alberto Caso 

Servicio de Implantación de Sistemas.
Dir. Gral. de Administración Electrónica y Tecnologías de la
Información.
Consejería de Hacienda y Administración Pública.
Junta de Extremadura.