Re: [Mesa-dev] [PATCH] meson: Bump version to 0.46 for python module

2018-12-10 Thread Dylan Baker
Quoting Dylan Baker (2018-12-10 09:13:59) > Quoting Matt Turner (2018-12-08 12:49:06) > > On Thu, Nov 22, 2018 at 1:05 PM Matt Turner wrote: > > > > > > On Wed, Nov 21, 2018 at 10:48 AM Matt Turner wrote: > > > > > > > > Thanks Arfrever and Dylan. > > > > > > > > Acked-by: Matt Turner > > > > >

Re: [Mesa-dev] [PATCH] meson: Bump version to 0.46 for python module

2018-12-10 Thread Dylan Baker
Quoting Matt Turner (2018-12-08 12:49:06) > On Thu, Nov 22, 2018 at 1:05 PM Matt Turner wrote: > > > > On Wed, Nov 21, 2018 at 10:48 AM Matt Turner wrote: > > > > > > Thanks Arfrever and Dylan. > > > > > > Acked-by: Matt Turner > > > > Hmm, actually this doesn't seem to work for me. With it

Re: [Mesa-dev] [PATCH] meson: Bump version to 0.46 for python module

2018-12-08 Thread Matt Turner
On Thu, Nov 22, 2018 at 1:05 PM Matt Turner wrote: > > On Wed, Nov 21, 2018 at 10:48 AM Matt Turner wrote: > > > > Thanks Arfrever and Dylan. > > > > Acked-by: Matt Turner > > Hmm, actually this doesn't seem to work for me. With it applied I get: > > src/mesa/drivers/dri/meson.build:59:8:

Re: [Mesa-dev] [PATCH] meson: Bump version to 0.46 for python module

2018-11-23 Thread Dylan Baker
Hi Eero, I'm not sure how to avoid build breakages, as currently using the python3 module is broken if the python3 file/link is < 3.5, however, trying to do a simple `find_program('python3')` will not work on Windows or OSX. I guess we could do an if `meson_version < 0.46` thing. Dylan Quoting

Re: [Mesa-dev] [PATCH] meson: Bump version to 0.46 for python module

2018-11-23 Thread Eero Tamminen
Hi, On 21.11.2018 20.13, Dylan Baker wrote: From: Arfrever Frehtes Taifersar Arahesis Meson has two modules for finding python, the python3 module and the python module. Python3 is older, and has some corner cases, python is newer, has no known corner cases and can detect python2. Things have

Re: [Mesa-dev] [PATCH] meson: Bump version to 0.46 for python module

2018-11-22 Thread Matt Turner
On Wed, Nov 21, 2018 at 10:48 AM Matt Turner wrote: > > Thanks Arfrever and Dylan. > > Acked-by: Matt Turner Hmm, actually this doesn't seem to work for me. With it applied I get: src/mesa/drivers/dri/meson.build:59:8: ERROR: Python object does not have method path. which comes from:

Re: [Mesa-dev] [PATCH] meson: Bump version to 0.46 for python module

2018-11-21 Thread Matt Turner
Thanks Arfrever and Dylan. Acked-by: Matt Turner ___ mesa-dev mailing list mesa-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/mesa-dev

[Mesa-dev] [PATCH] meson: Bump version to 0.46 for python module

2018-11-21 Thread Dylan Baker
From: Arfrever Frehtes Taifersar Arahesis Meson has two modules for finding python, the python3 module and the python module. Python3 is older, and has some corner cases, python is newer, has no known corner cases and can detect python2. Things have generally seemed to work okay for us using