[pygobject] Bump pycairo requirement to 1.11.1



commit fc451f235754a98c647972f0a03e11eaefca4cef
Author: Christoph Reiter <creiter src gnome org>
Date:   Wed Apr 19 15:04:30 2017 +0200

    Bump pycairo requirement to 1.11.1
    
    This requires pycairo from https://pycairo.readthedocs.io/en/latest/
    (already updated/included in JHBuild)
    
    For more info on the upstream change see:
        https://lists.cairographics.org/archives/cairo/2017-April/027919.html
        https://mail.gnome.org/archives/desktop-devel-list/2017-April/msg00065.html
    
    This will enable cairo.Region support for all setups and Python versions as well
    as make moving to Python 3 easier for applications since all APIs provided
    under Python 2 are available there as well now.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=707196

 configure.ac |    7 +++----
 1 files changed, 3 insertions(+), 4 deletions(-)
---
diff --git a/configure.ac b/configure.ac
index 67d703d..47cb181 100644
--- a/configure.ac
+++ b/configure.ac
@@ -23,8 +23,7 @@ m4_define(pygobject_version, pygobject_major_version.pygobject_minor_version.pyg
 
 dnl versions of packages we require ...
 m4_define(introspection_required_version, 1.46.0)
-m4_define(py2cairo_required_version, 1.2.0)
-m4_define(py3cairo_required_version, 1.10.0)
+m4_define(pycairo_required_version, 1.11.1)
 m4_define(glib_required_version, 2.38.0)
 m4_define(gio_required_version, 2.38.0)
 
@@ -162,11 +161,11 @@ if test "$enable_cairo" != no; then
 
     if test $build_py3k = true; then
         PKG_CHECK_MODULES(PYCAIRO,
-            py3cairo >= py3cairo_required_version
+            py3cairo >= pycairo_required_version
         )
     else
         PKG_CHECK_MODULES(PYCAIRO,
-            pycairo >= py2cairo_required_version
+            pycairo >= pycairo_required_version
         )
     fi
 fi


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]