Re: Python3.8 Transition Lessons Learned

2020-04-17 Thread Christian Kastner
Hi Scott,

On 2020-04-14 16:22, Scott Kitterman wrote:
> These binNMUs migrated to Testing immediately.  This resulted in a case where 
> in Testing, python3.7 and python3.8 were supported versions, but packages had 
> lost their python3.7 support.  This caused autopkgtest failures which 
> appeared 
> as regressions.

thank you for the update, and this fragment in general. I saw these
failures, and was somewhat puzzled. This clarifies the issue.



RE:pybuild and setup.py in unusual place

2020-04-17 Thread PICCA Frederic-Emmanuel
I found this

 --sourcedirectory=src

is it equivalent to -D


subsidiary question is it possible to run a command before  all the dh_auto_xxx 
without overrideing eveythings ?

I need to run a command whcih generate the setup.py file so I need to do

override_dh_auto_:
   do_something
   dh_auto_xxx

cheers

Frederic


Re: pybuild and setup.py in unusual place

2020-04-17 Thread Andrey Rahmatullin
On Fri, Apr 17, 2020 at 08:10:34AM +, PICCA Frederic-Emmanuel wrote:
> subsidiary question is it possible to run a command before  all the 
> dh_auto_xxx without overrideing eveythings ?
See "Injecting commands before or after a step" in dh(1).

-- 
WBR, wRAR


signature.asc
Description: PGP signature


Re: pybuild and setup.py in unusual place

2020-04-17 Thread Andrey Rahmatullin
On Fri, Apr 17, 2020 at 07:31:55AM +, PICCA Frederic-Emmanuel wrote:
> Hello, I have a packahe where the setup.py is not located at the root of the 
> directory.
> 
> So I need to do 
> 
> override_dh_auto_XXX:
> dh_auto_XXX -- -d 
> 
> Is there a export somthing whcih allows to says where is the setup.py to deal 
> with ?
Just pass that -D to dh(1)? (assuming you meant -D and not -d).

-- 
WBR, wRAR


signature.asc
Description: PGP signature


pybuild and setup.py in unusual place

2020-04-17 Thread PICCA Frederic-Emmanuel
Hello, I have a packahe where the setup.py is not located at the root of the 
directory.

So I need to do 

override_dh_auto_XXX:
dh_auto_XXX -- -d 

Is there a export somthing whcih allows to says where is the setup.py to deal 
with ?

thanks

Frederic