diff options
author | Edward Hervey <edward@collabora.com> | 2013-11-20 12:01:23 +0100 |
---|---|---|
committer | Edward Hervey <bilboed@bilboed.com> | 2014-02-06 10:06:00 +0100 |
commit | 62deb02bc755f1542097dc9ff87d8b626f5920a7 (patch) | |
tree | 8890faacb01170d4c89f240d7c1e5c556fc807dd | |
parent | 2b07be8c6e5739d58c0741f8b04769abc423d421 (diff) |
recipes: Update orc to use original repository
And bump build-tool version to 0.4.18
-rw-r--r-- | recipes/build-tools/orc.recipe | 6 | ||||
-rw-r--r-- | recipes/orc.recipe | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/recipes/build-tools/orc.recipe b/recipes/build-tools/orc.recipe index 93aa5619..958c5f61 100644 --- a/recipes/build-tools/orc.recipe +++ b/recipes/build-tools/orc.recipe @@ -3,7 +3,8 @@ class Recipe(recipe.Recipe): name = 'orc-tool' - version = '0.4.16' + version = '0.4.18' + commit = 'orc-0.4.18' licenses = [License.BSD_like] autoreconf = True deps = ['autoconf', 'automake', 'libtool'] @@ -14,4 +15,5 @@ class Recipe(recipe.Recipe): 'bin/orcc%(bext)s'] def prepare(self): - self.remotes['origin'] = ('%s/%s.git' % (self.config.git_root, 'orc')) + self.remotes['origin'] = ('%s/%s' % ('git://anongit.freedesktop.org/gstreamer', 'orc')) + self.remotes['upstream'] = self.remotes['origin'] diff --git a/recipes/orc.recipe b/recipes/orc.recipe index d6faad1f..f3e9601f 100644 --- a/recipes/orc.recipe +++ b/recipes/orc.recipe @@ -4,6 +4,7 @@ class Recipe(recipe.Recipe): name = 'orc' version = '0.4.18' + commit = 'orc-0.4.18' licenses = [License.BSD_like] autoreconf = True @@ -12,3 +13,6 @@ class Recipe(recipe.Recipe): 'bin/orc-bugreport%(bext)s', 'share/aclocal/orc.m4', 'bin/orcc%(bext)s'] + def prepare(self): + self.remotes['origin'] = ('%s/%s' % ('git://anongit.freedesktop.org/gstreamer', 'orc')) + self.remotes['upstream'] = self.remotes['origin'] |