Re: pbs python

2014-03-30 Thread Ben Finney
Brian May writes: > Hello, > > *If* I wanted to get the following package into Debian: > https://oss.trac.surfsara.nl/pbs_python > > What should I do? First step: submit a Request For Package bug report against the special “wnpp” package https://www.debian.org/devel/wnpp/>. It is highly recommen

pbs python

2014-03-30 Thread Brian May
Hello, *If* I wanted to get the following package into Debian: https://oss.trac.surfsara.nl/pbs_python What should I do? It seems to clash with a package of the same name (when labelled according to policy anyway) that is very different: https://packages.debian.org/sid/python-pbs (I think thi

Re: ‘dh’ invoking Python 2 ‘pyversions’ in a Python 3-only package

2014-03-30 Thread Piotr Ożarowski
[Scott Kitterman, 2014-03-30] > Using pybuild should do it. > > dh $@ --with python3 --buildsystem=pybuild > > That will avoid the assumption that python2 should be attempted. FTR: --with python2 tells debhelper that it should run dh_python2 and nothing else. pybuild is checking for python or p

Re: ‘dh’ invoking Python 2 ‘pyversions’ in a Python 3-only package

2014-03-30 Thread Barry Warsaw
On Mar 30, 2014, at 01:03 PM, Dmitry Shachnev wrote: >On Sun, Mar 30, 2014 at 10:49 AM, Ben Finney >wrote: >By default, if debhelper sees a setup.py file, it sets the buildsystem >to python_distutils, which *only* supports Python 2. Shouldn't we be advocating for a change to debhelper by now?

Re: ‘dh’ invoking Python 2 ‘pyversions’ in a Python 3-only package

2014-03-30 Thread Dmitry Shachnev
On Sun, Mar 30, 2014 at 10:49 AM, Ben Finney wrote: > Scott Kitterman writes: >> On Sunday, March 30, 2014 17:01:05 Ben Finney wrote: >> > How can I inform Debhelper that it should not attempt to find any >> > Python 2 versions for building or cleaning this package? >> >> Using pybuild should do