Re: [Mesa-dev] [PATCH] travis: keep meson version below 0.45.0

2018-03-05 Thread Dylan Baker
Quoting Andres Gomez (2018-03-05 07:25:36)
> Recently Meson upgraded to 0.45.0 and it needs python 3.5+, which is
> not available in Trusty.
> 
> Cc: Eric Engestrom 
> Cc: Dylan Baker 
> Cc: Emil Velikov 
> Cc: Jon Turney 
> Signed-off-by: Andres Gomez 
> ---
>  .travis.yml | 7 ---
>  1 file changed, 4 insertions(+), 3 deletions(-)
> 
> diff --git a/.travis.yml b/.travis.yml
> index 823111ca539..dcd150b482b 100644
> --- a/.travis.yml
> +++ b/.travis.yml
> @@ -460,10 +460,11 @@ before_install:
>  install:
>- pip2 install --user mako
>  
> -  # Install the latest meson from pip, since the version in the ubuntu repos 
> is
> -  # often quite old.
> +  # Install a more modern meson from pip, since the version in the
> +  # ubuntu repos is often quite old. Avoid >=0.45.0 as it needs python
> +  # 3.5+
>- if test "x$BUILD" = xmeson; then
> -  pip3 install --user meson;
> +  pip3 install --user "meson<0.45.0";
>  fi
>  
># Since libdrm gets updated in configure.ac regularly, try to pick up the
> -- 
> 2.16.1
> 

Reviewed-by: Dylan Baker 


signature.asc
Description: signature
___
mesa-dev mailing list
mesa-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/mesa-dev


Re: [Mesa-dev] [PATCH] travis: keep meson version below 0.45.0

2018-03-05 Thread Eric Engestrom
On Monday, 2018-03-05 17:25:36 +0200, Andres Gomez wrote:
> Recently Meson upgraded to 0.45.0 and it needs python 3.5+, which is
> not available in Trusty.

I was looking at this issue right now, thanks for beating me to it :)
Reviewed-by: Eric Engestrom 

> 
> Cc: Eric Engestrom 
> Cc: Dylan Baker 
> Cc: Emil Velikov 
> Cc: Jon Turney 
> Signed-off-by: Andres Gomez 
> ---
>  .travis.yml | 7 ---
>  1 file changed, 4 insertions(+), 3 deletions(-)
> 
> diff --git a/.travis.yml b/.travis.yml
> index 823111ca539..dcd150b482b 100644
> --- a/.travis.yml
> +++ b/.travis.yml
> @@ -460,10 +460,11 @@ before_install:
>  install:
>- pip2 install --user mako
>  
> -  # Install the latest meson from pip, since the version in the ubuntu repos 
> is
> -  # often quite old.
> +  # Install a more modern meson from pip, since the version in the
> +  # ubuntu repos is often quite old. Avoid >=0.45.0 as it needs python
> +  # 3.5+
>- if test "x$BUILD" = xmeson; then
> -  pip3 install --user meson;
> +  pip3 install --user "meson<0.45.0";
>  fi
>  
># Since libdrm gets updated in configure.ac regularly, try to pick up the
> -- 
> 2.16.1
> 
___
mesa-dev mailing list
mesa-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/mesa-dev


Re: [Mesa-dev] [PATCH] travis: keep meson version below 0.45.0

2018-03-05 Thread Emil Velikov
On 5 March 2018 at 15:25, Andres Gomez  wrote:
> Recently Meson upgraded to 0.45.0 and it needs python 3.5+, which is
> not available in Trusty.
>
> Cc: Eric Engestrom 
> Cc: Dylan Baker 
> Cc: Emil Velikov 
> Cc: Jon Turney 
> Signed-off-by: Andres Gomez 

I haven't checked which python3 version Trusty has or when it might be
updated, but the change makes perfect sense.

Reviewed-by: Emil Velikov 

Thanks
Emil
___
mesa-dev mailing list
mesa-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/mesa-dev


[Mesa-dev] [PATCH] travis: keep meson version below 0.45.0

2018-03-05 Thread Andres Gomez
Recently Meson upgraded to 0.45.0 and it needs python 3.5+, which is
not available in Trusty.

Cc: Eric Engestrom 
Cc: Dylan Baker 
Cc: Emil Velikov 
Cc: Jon Turney 
Signed-off-by: Andres Gomez 
---
 .travis.yml | 7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index 823111ca539..dcd150b482b 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -460,10 +460,11 @@ before_install:
 install:
   - pip2 install --user mako
 
-  # Install the latest meson from pip, since the version in the ubuntu repos is
-  # often quite old.
+  # Install a more modern meson from pip, since the version in the
+  # ubuntu repos is often quite old. Avoid >=0.45.0 as it needs python
+  # 3.5+
   - if test "x$BUILD" = xmeson; then
-  pip3 install --user meson;
+  pip3 install --user "meson<0.45.0";
 fi
 
   # Since libdrm gets updated in configure.ac regularly, try to pick up the
-- 
2.16.1

___
mesa-dev mailing list
mesa-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/mesa-dev