Re: tablib module: ok to migrate repo from openstack to DPMT?

2018-04-30 Thread Joseph Herlant
Hi guys,

Thanks, the repo is has been migrated to
https://salsa.debian.org/python-team/modules/python-tablib (ready for
review even if I already asked one of my usual sponsors about it).

> as Openstack team member: Go ahead.

@Ondrej as Openstack team member would you be willing to take care of
deleting the original repo (aka
https://salsa.debian.org/openstack-team/python/python-tablib) to avoid
confusion in the future please?

> Anything inside https://salsa.debian.org/openstack-team/python/* can be
> migrated to DPMT.
>
> See:
> https://salsa.debian.org/openstack-team/debian/stuff/blob/master/groups.txt#L6

Thanks for pointing that out, I'll have a look and see if I can help
on that in the days to come.

Thanks,
Joseph



Bug#897257: RM: django-celery -- ROM; Deprecated package

2018-04-30 Thread Brian May
Package: ftp.debian.org
Severity: normal

Hello,

django-celery is broken, deprecated upstream, and has been replaced by
other packages that are already in Debian, such as django-celery-results
and django-celery-beat.

This was discussed on debian-python, see:
https://lists.debian.org/debian-python/2018/04/msg00120.html

Please remove this package and all binaries from testing and unstable.

I don't believe anything depends on django-celery.

Thanks



Re: foo FTBFS with dh-python >= 3.20180313

2018-04-30 Thread Andreas Tille
On Mon, Apr 30, 2018 at 08:29:13PM +0200, Piotr Ożarowski wrote:
> [Andreas Tille, 2018-04-30]
> > Hmmm, inside pbuilder chroot the files are installed to
> > 
> >   /build/snakemake-4.8.0/.pybuild/cpython3_3.6_snakemake/build/bin/snakemake
> > 
> > while
> > 
> >   # pybuild --print build_dir --interpreter python3
> >   /build/snakemake-4.8.0/.pybuild/cpython3_3.6/build
> 
> you invoked it outside debian/rules, without --name or PYBUILD_NAME set,
> right?

Yes, that's right.
 
> > I have no idea why since some dh-python version things are different
> > than before but wouldn't it be the best idea to let pybuild set PATH and
> > PYTHONPATH instead of setting it manually by some manual command?
> 
> I meant to fix also debian/rules line 11 (you fixed line 21 only)

I commited my last attemt to Git fixing PATH on both lines.

I get with this d/rules:


...
raise Exception("snakemake not in PATH. For testing, install snakemake with 
"
Exception: snakemake not in PATH. For testing, install snakemake with 'pip 
install -e .'. You should do this in a separate environment (via conda or 
virtualenv).

--
Ran 4 tests in 0.187s

FAILED (errors=1)
E: pybuild pybuild:336: test: plugin distutils failed with: exit code=1: cd 
/build/snakemake-4.8.0/.pybuild/cpython3_3.6_snakemake/build; python3.6 -m nose 
tests
dh_auto_test: pybuild --test --test-nose -i python{version} -p 3.6 returned 
exit code 13
make: *** [debian/rules:17: build] Error 25
dpkg-buildpackage: error: debian/rules build subprocess returned exit status 2
I: copying local configuration
E: Failed autobuilding of package
I: user script /var/cache/pbuilder/build/cow.11501/tmp/hooks/C99_failed_build 
starting
root:/# echo $PATH
/usr/sbin:/usr/bin:/sbin:/bin


I have no idea why but the PATH does not make it through.

I confirm if I set

   root:/build/snakemake-4.8.0# export PYBUILD_NAME=snakemake
   root:/build/snakemake-4.8.0# pybuild --print build_dir --interpreter python3
   /build/snakemake-4.8.0/.pybuild/cpython3_3.6_snakemake/build

But why does these variables not end up in the chroot?

Kind regards

   Andreas.

-- 
http://fam-tille.de



Re: foo FTBFS with dh-python >= 3.20180313

2018-04-30 Thread Piotr Ożarowski
[Andreas Tille, 2018-04-30]
> On Mon, Apr 30, 2018 at 03:57:51PM +0200, Piotr Ożarowski wrote:
> > [Andreas Tille, 2018-04-30]
> > > >  PYTHONPATH=$(shell pybuild --print build_dir --interpreter python3) ...
> > > I tried the same trick for snakemake in Git[1] but failed.
> > > 
> > > Am I missing something?
> > 
> > you changed PYTHONPATH, but PATH still hardcodes old path, I'd start
> > with that.
> 
> Hmmm, inside pbuilder chroot the files are installed to
> 
>   /build/snakemake-4.8.0/.pybuild/cpython3_3.6_snakemake/build/bin/snakemake
> 
> while
> 
>   # pybuild --print build_dir --interpreter python3
>   /build/snakemake-4.8.0/.pybuild/cpython3_3.6/build

you invoked it outside debian/rules, without --name or PYBUILD_NAME set,
right?

> I have no idea why since some dh-python version things are different
> than before but wouldn't it be the best idea to let pybuild set PATH and
> PYTHONPATH instead of setting it manually by some manual command?

I meant to fix also debian/rules line 11 (you fixed line 21 only)
-- 
GPG: 1D2F A898 58DA AF62 1786 2DF7 AEF6 F1A2 A745 7645



Re: foo FTBFS with dh-python >= 3.20180313

2018-04-30 Thread Andreas Tille
On Mon, Apr 30, 2018 at 03:57:51PM +0200, Piotr Ożarowski wrote:
> [Andreas Tille, 2018-04-30]
> > >  PYTHONPATH=$(shell pybuild --print build_dir --interpreter python3) ...
> > I tried the same trick for snakemake in Git[1] but failed.
> > 
> > Am I missing something?
> 
> you changed PYTHONPATH, but PATH still hardcodes old path, I'd start
> with that.

Hmmm, inside pbuilder chroot the files are installed to

  /build/snakemake-4.8.0/.pybuild/cpython3_3.6_snakemake/build/bin/snakemake

while

  # pybuild --print build_dir --interpreter python3
  /build/snakemake-4.8.0/.pybuild/cpython3_3.6/build

I have no idea why since some dh-python version things are different
than before but wouldn't it be the best idea to let pybuild set PATH and
PYTHONPATH instead of setting it manually by some manual command?

Kind regards

Andreas.

-- 
http://fam-tille.de



Re: foo FTBFS with dh-python >= 3.20180313

2018-04-30 Thread Piotr Ożarowski
[Andreas Tille, 2018-04-30]
> >  PYTHONPATH=$(shell pybuild --print build_dir --interpreter python3) ...
> 
> This worked nicely for python-skbio.
>  
> > I fixed few packages already, here's a list of other affected ones:
> > ...
> > snakemake   Debian Med Packaging Team
> 
> I tried the same trick for snakemake in Git[1] but failed.
> 
> Am I missing something?

you changed PYTHONPATH, but PATH still hardcodes old path, I'd start
with that.
-- 
GPG: 1D2F A898 58DA AF62 1786 2DF7 AEF6 F1A2 A745 7645




Re: foo FTBFS with dh-python >= 3.20180313

2018-04-30 Thread Andreas Tille
Hi Piotr,

On Thu, Apr 26, 2018 at 12:01:17PM +0200, Piotr Ożarowski wrote:
> [Andreas Tille, 2018-04-26]
> >ModuleNotFoundError: No module named 'skbio'
> 
> that's because I had to change pybuild's internal paths (to make it work
> with multiple modules/packages at the same time).
> 
> I added --print option for those who really need it (f.e. while
> building sphinx docs) - please use it instead of hardcoding pybuild's
> internal paths.
> 
> You can use it like this:
> 
>  PYTHONPATH=$(shell pybuild --print build_dir --interpreter python3) ...

This worked nicely for python-skbio.
 
> I fixed few packages already, here's a list of other affected ones:
> ...
> snakemake   Debian Med Packaging Team

I tried the same trick for snakemake in Git[1] but failed.

Am I missing something?

Kind regards

   Andreas.


[1] https://salsa.debian.org/med-team/snakemake 

-- 
http://fam-tille.de



Request to join the Debian Python Team

2018-04-30 Thread Alastair McKinstry
Hi

I am hereby requesting to join the Debian Python Modules Team.

I'm maintainer of the fparser python module(s), xarray and others.

regards

Alastair


-- 
Alastair McKinstry, , , 
https://diaspora.sceal.ie/u/amckinstry
Misentropy: doubting that the Universe is becoming more disordered. 



Re: Request joining DPMT

2018-04-30 Thread Ondrej Novy
Hi,

2018-04-27 13:41 GMT+02:00 kaliko :

> I am hereby requesting to join the Debian Python Modules Team.
>

welcome :).

-- 
Best regards
 Ondřej Nový

Email: n...@ondrej.org
PGP: 3D98 3C52 EB85 980C 46A5  6090 3573 1255 9D1E 064B


Re: Requesting to join a debian-python team

2018-04-30 Thread Ondrej Novy
Hi,

2018-04-27 7:07 GMT+02:00 Umar Parooq :

> Why you want to join the team?
> I want to join and maintain The virtual brain 
> packages
>

welcome :).

-- 
Best regards
 Ondřej Nový

Email: n...@ondrej.org
PGP: 3D98 3C52 EB85 980C 46A5  6090 3573 1255 9D1E 064B


Re: tablib module: ok to migrate repo from openstack to DPMT?

2018-04-30 Thread Ondrej Novy
Hi,

2018-04-30 1:32 GMT+02:00 Joseph Herlant :

> Do you mind if I move the repo to the DPMT before upgrading the package?
>

as Openstack team member: Go ahead.

Anything inside https://salsa.debian.org/openstack-team/python/* can be
migrated to DPMT.

See:
https://salsa.debian.org/openstack-team/debian/stuff/blob/master/groups.txt#L6

-- 
Best regards
 Ondřej Nový

Email: n...@ondrej.org
PGP: 3D98 3C52 EB85 980C 46A5  6090 3573 1255 9D1E 064B


Re: Requesting to join a debian-python team

2018-04-30 Thread Umar Parooq
Thanks a lot.

On Mon, Apr 30, 2018, 8:24 AM Ondrej Novy  wrote:

> Hi,
>
> 2018-04-27 7:07 GMT+02:00 Umar Parooq :
>
>> Why you want to join the team?
>> I want to join and maintain The virtual brain
>>  packages
>>
>
> welcome :).
>
> --
> Best regards
>  Ondřej Nový
>
> Email: n...@ondrej.org
> PGP: 3D98 3C52 EB85 980C 46A5  6090 3573 1255 9D1E 064B
>
>