diff options
-rw-r--r-- | recipe-upgrade-list.txt | 8 | ||||
-rw-r--r-- | recipes/gobject-introspection.recipe | 4 | ||||
-rw-r--r-- | recipes/gtk+3.recipe | 5 | ||||
-rw-r--r-- | recipes/pango.recipe | 4 | ||||
-rw-r--r-- | recipes/pygobject.recipe | 5 |
5 files changed, 12 insertions, 14 deletions
diff --git a/recipe-upgrade-list.txt b/recipe-upgrade-list.txt index 3bfc2016..aebacb5e 100644 --- a/recipe-upgrade-list.txt +++ b/recipe-upgrade-list.txt @@ -27,7 +27,7 @@ freetype | 2.5.5 | fontconfig | 2.11.1 | cairo | 1.12.18 | harfbuzz | 0.9.38 | -pango | 1.36.8 | +pango | 1.38.1 | libvorbis | 1.3.4 | libtheora | 1.1.1 | libjpeg-turbo | 1.4.0 | @@ -48,8 +48,8 @@ libsrtp | 1.5.0 | vo-aacenc | 0.1.3 | libcroco | 0.6.8 | openjpeg | 1.5.2 | 2.1.0 (2014-04-29) -pygobject | 3.16.1 | -gobject-introspection | 1.42.0 | +pygobject | 3.18.2 | +gobject-introspection | 1.46.0 | flac | 1.3.1 | lame | 3.99.5 | libnice | 0.1.10 | @@ -67,7 +67,7 @@ cogl | 1.16.0 | 1.18.0 gnome-icon-theme-symbolic| 3.10.1 | 3.12.0 (2014-03-25) gnome-icon-theme | 3.10.0 | 3.12.0 (2014-03-25) gnome-themes-standard | 3.10.0 | 3.12.0 (2014-03-25) -gtk+3 | 3.10.7 | 3.12.2 (2014-05-12) +gtk+3 | 3.18.5 | hicolor-icon-theme | 0.11 | 0.13 (2013-12-17) librsvg | 2.40.6 | librsvg-gtk | 2.40.6 | diff --git a/recipes/gobject-introspection.recipe b/recipes/gobject-introspection.recipe index 89faf22e..1e10feb8 100644 --- a/recipes/gobject-introspection.recipe +++ b/recipes/gobject-introspection.recipe @@ -5,9 +5,9 @@ import sys class Recipe(recipe.Recipe): name = 'gobject-introspection' - version = '1.44.0' + version = '1.46.0' stype = SourceType.TARBALL - url = 'http://ftp.gnome.org/pub/GNOME/sources/gobject-introspection/1.44/gobject-introspection-1.44.0.tar.xz' + url = 'http://ftp.gnome.org/pub/GNOME/sources/gobject-introspection/1.46/gobject-introspection-%(version)s.tar.xz' licenses = [License.GPLv2Plus] autoreconf = True autoreconf_sh = 'gtkdocize && autoreconf -vfi' diff --git a/recipes/gtk+3.recipe b/recipes/gtk+3.recipe index 3fa56725..e8c2b102 100644 --- a/recipes/gtk+3.recipe +++ b/recipes/gtk+3.recipe @@ -3,7 +3,7 @@ class Recipe(recipe.Recipe): name = 'gtk+3' - version = '3.16.4' + version = '3.18.5' # TODO: check license - some source files are LGPLv2, others LGPLv2+, # others LGPLv2.1+, COPYING is LGPLv2 and the webpage states LGPLv2.1 licenses = [License.LGPLv2_1Plus] @@ -15,10 +15,9 @@ class Recipe(recipe.Recipe): use_system_libs = True stype = SourceType.TARBALL - url = 'http://ftp.gnome.org/pub/GNOME/sources/gtk+/3.16/gtk+-%(version)s.tar.xz' + url = 'http://ftp.gnome.org/pub/GNOME/sources/gtk+/3.18/gtk+-%(version)s.tar.xz' tarball_dirname = 'gtk+-%(version)s' - patches = ['gtk+3/0001-x11-Avoid-X-error-traps-within-server-grabs.patch'] files_libs = ['libgailutil-3', 'libgdk-3', 'libgtk-3'] files_bins = ['gtk3-widget-factory', diff --git a/recipes/pango.recipe b/recipes/pango.recipe index ab2349e2..94125430 100644 --- a/recipes/pango.recipe +++ b/recipes/pango.recipe @@ -3,9 +3,9 @@ class Recipe(recipe.Recipe): name = 'pango' - version = '1.36.8' + version = '1.38.1' stype = SourceType.TARBALL - url = 'http://ftp.acc.umu.se/pub/GNOME/sources/pango/1.36/pango-1.36.8.tar.xz' + url = 'http://ftp.acc.umu.se/pub/GNOME/sources/pango/1.38/pango-%(version)s.tar.xz' autoreconf = True autoreconf_sh = 'ACLOCAL="$ACLOCAL $ACLOCAL_FLAGS" autoreconf -ivf ' licenses = [License.LGPLv2Plus] diff --git a/recipes/pygobject.recipe b/recipes/pygobject.recipe index 3f652fef..0922e336 100644 --- a/recipes/pygobject.recipe +++ b/recipes/pygobject.recipe @@ -3,13 +3,12 @@ class Recipe(recipe.Recipe): name = 'pygobject' - version = '3.16.1' + version = '3.18.2' stype = SourceType.TARBALL - url = 'http://ftp.gnome.org/pub/GNOME/sources/pygobject/3.16/pygobject-%(version)s.tar.xz' + url = 'http://ftp.gnome.org/pub/GNOME/sources/pygobject/3.18/pygobject-%(version)s.tar.xz' licenses = [License.LGPLv2_1Plus] deps = ['glib'] make_check = None # disabled until we fix the checks - patches = ["pygobject/0001-overrides-Provide-_overrides_module-attribute-to-mak.patch"] files_python = [ 'site-packages/gi/_gi%(pext)s', 'site-packages/gi/_gi_cairo%(pext)s', |