diff options
author | Tim-Philipp Müller <tim@centricular.com> | 2017-07-17 17:19:26 +0100 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.com> | 2017-07-17 21:37:28 +0100 |
commit | 698259fd7fdd7af82b72a8c200ec947e98e22279 (patch) | |
tree | cc396ed378fd8a8e3972de9331c00c26a80b4710 | |
parent | 96dae69368fe484d01441699c33c2e6ae9e1fb4a (diff) |
recipes: orc: use 0.4.27 release instead of tracking git master
https://bugzilla.gnome.org/show_bug.cgi?id=784364
-rw-r--r-- | recipes/build-tools/orc.recipe | 8 | ||||
-rw-r--r-- | recipes/orc.recipe | 7 |
2 files changed, 7 insertions, 8 deletions
diff --git a/recipes/build-tools/orc.recipe b/recipes/build-tools/orc.recipe index f259adbd..184d55b2 100644 --- a/recipes/build-tools/orc.recipe +++ b/recipes/build-tools/orc.recipe @@ -3,11 +3,11 @@ class Recipe(recipe.Recipe): name = 'orc-tool' - version = '0.4.26' - remotes = {'origin': 'git://anongit.freedesktop.org/gstreamer/orc'} - commit = 'origin/master' + version = '0.4.27' + stype = SourceType.TARBALL + tarball_dirname = 'orc-%(version)s' + url = 'https://gstreamer.freedesktop.org/data/src/orc/orc-0.4.27.tar.xz' licenses = [License.BSD_like] - autoreconf = True deps = ['autoconf', 'automake', 'libtool'] files_libs = ['liborc-0.4', 'liborc-test-0.4'] diff --git a/recipes/orc.recipe b/recipes/orc.recipe index 6f361f7e..f0e3f44b 100644 --- a/recipes/orc.recipe +++ b/recipes/orc.recipe @@ -3,11 +3,10 @@ class Recipe(recipe.Recipe): name = 'orc' - version = '0.4.26' - remotes = {'origin': 'git://anongit.freedesktop.org/gstreamer/orc'} - commit = 'origin/master' + version = '0.4.27' + stype = SourceType.TARBALL + url = 'https://gstreamer.freedesktop.org/data/src/orc/orc-0.4.27.tar.xz' licenses = [License.BSD_like] - autoreconf = True configure_options = '--enable-static' files_libs = ['liborc-0.4', 'liborc-test-0.4'] |