[Spice-commits] meson.build

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Wed Feb 13 16:43:08 UTC 2019


 meson.build |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 02530a80dfa45c936215c47b8e3aa56720eb46b8
Author: Eduardo Lima (Etrunko) <etrunko at redhat.com>
Date:   Fri Feb 1 14:40:01 2019 -0200

    meson: Bump requirement to 0.48
    
    This version is already required by spice-gtk and is soon to be required
    by spice-server as well, so there is no much sense in keeping it for
    spice-common.
    
    It is necessary to update the usage of the python module as described in
    the documentation:
    
    https://mesonbuild.com/Release-notes-for-0-48-0.html#python3-module-is-deprecated
    
    Which gets rid of the following warning message:
    
    WARNING: Deprecated features used:
     * 0.48.0: {'python3 module'}
    
    Signed-off-by: Eduardo Lima (Etrunko) <etrunko at redhat.com>
    Acked-by: Frediano Ziglio <fziglio at redhat.com>

diff --git a/meson.build b/meson.build
index 9474618..f451f1c 100644
--- a/meson.build
+++ b/meson.build
@@ -2,7 +2,7 @@
 # project definition
 #
 project('spice-common', 'c',
-         meson_version : '>= 0.47.0',
+         meson_version : '>= 0.48.0',
          license : 'LGPLv2.1')
 
 if not meson.is_subproject()
@@ -133,8 +133,8 @@ foreach dep, version : optional_deps
 endforeach
 
 # Python
-py_module = import('python3')
-python = py_module.find_python()
+py_module = import('python')
+python = py_module.find_installation()
 
 if get_option('python-checks')
   foreach module : ['six', 'pyparsing']


More information about the Spice-commits mailing list