summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--recipes/build-tools/orc.recipe6
-rw-r--r--recipes/orc.recipe4
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']