diff options
author | healther <healther@users.noreply.github.com> | 2017-02-20 14:53:33 +0100 |
---|---|---|
committer | Adam J. Stewart <ajstewart426@gmail.com> | 2017-02-20 07:53:33 -0600 |
commit | c8cfe317c200fbb255a885dff5b76ce5336a17f7 (patch) | |
tree | cc6d438211a588c05eb69e7490c3a328b91dadfc | |
parent | 4b9a37a357af4f36df05d7a06de4b9d5d841aa26 (diff) | |
download | spack-c8cfe317c200fbb255a885dff5b76ce5336a17f7.tar.gz spack-c8cfe317c200fbb255a885dff5b76ce5336a17f7.tar.bz2 spack-c8cfe317c200fbb255a885dff5b76ce5336a17f7.tar.xz spack-c8cfe317c200fbb255a885dff5b76ce5336a17f7.zip |
Added version 1.49.2 to gobject-introspection (#3090)
-rw-r--r-- | var/spack/repos/builtin/packages/gobject-introspection/package.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/gobject-introspection/package.py b/var/spack/repos/builtin/packages/gobject-introspection/package.py index 952ec21661..e20688c9e9 100644 --- a/var/spack/repos/builtin/packages/gobject-introspection/package.py +++ b/var/spack/repos/builtin/packages/gobject-introspection/package.py @@ -31,12 +31,14 @@ class GobjectIntrospection(Package): library with support for multiple output""" homepage = "https://wiki.gnome.org/Projects/GObjectIntrospection" - url = "http://ftp.gnome.org/pub/gnome/sources/gobject-introspection/1.48/gobject-introspection-1.48.0.tar.xz" + url = "http://ftp.gnome.org/pub/gnome/sources/gobject-introspection/1.49/gobject-introspection-1.49.2.tar.xz" + version('1.49.2', 'c47a76b05b2d8438089f519922180747') version('1.48.0', '01301fa9019667d48e927353e08bc218') + depends_on("glib@2.49.2:", when="@1.49.2:") # version 1.48.0 build fails with glib 2.49.4 - depends_on("glib@2.48.1") + depends_on("glib@2.48.1", when="@1.48.0") depends_on("python") depends_on("cairo") depends_on("bison", type="build") |