Re: pybuild and setup.py in unusual place

2020-05-05 Thread Peter Pentchev
On Fri, Apr 17, 2020 at 08:10:34AM +, PICCA Frederic-Emmanuel wrote:
> 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

If you can depend on a recent enough version of pybuild (and Debian
unstable, testing, stable, and oldstable should all be okay - I only ran
across this when trying to backport stuff to Ubuntu 16.04, yeah, yeah,
I know, but customers, right?), you can set the PYBUILD_DIR variable in
the environment; take a look at
https://sources.debian.org/src/confget/2.3.4-1/debian/rules/#L33

G'luck,
Peter

-- 
Peter Pentchev  r...@ringlet.net r...@debian.org p...@storpool.com
PGP key:http://people.FreeBSD.org/~roam/roam.key.asc
Key fingerprint 2EE7 A7A5 17FC 124C F115  C354 651E EFB0 2527 DF13


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 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