summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2019-04-20 10:41:23 +0530
committerNirbheek Chauhan <nirbheek@centricular.com>2019-04-20 11:12:25 +0530
commite39e5d959894710e7690d9134b8e5bfee73fc013 (patch)
tree8d09d96b566599beb1fdfef27a70d4e0758c967a
parent243a2cb026a8ac4b54ce6fc7e6a3e90146b80d5f (diff)
orc.recipe: Bump to 0.4.29, use the tarball1.16.0
Also, rename build-tools/orc.recipe to build-tools/orc-tool.recipe to match the recipe name. Same as glib-tools.
-rw-r--r--recipes/build-tools/orc-tool.recipe (renamed from recipes/build-tools/orc.recipe)10
-rw-r--r--recipes/orc.recipe9
2 files changed, 17 insertions, 2 deletions
diff --git a/recipes/build-tools/orc.recipe b/recipes/build-tools/orc-tool.recipe
index 3ba4e32c..4e5ef6b3 100644
--- a/recipes/build-tools/orc.recipe
+++ b/recipes/build-tools/orc-tool.recipe
@@ -3,9 +3,17 @@
class Recipe(recipe.Recipe):
name = 'orc-tool'
- version = '0.4.28'
+ version = '0.4.29'
+
+ stype = SourceType.TARBALL
+ # These properties are only used when stype is TARBALL
+ url = 'https://gstreamer.freedesktop.org/src/orc/orc-%(version)s.tar.xz'
+ tarball_checksum = '4f8901f9144b5ec17dffdb33548b5f4c7f8049b0d1023be3462cdd64ec5a3ab2'
+ tarball_dirname = 'orc-%(version)s'
+ # These properties are only used when stype is GIT
remotes = {'origin': 'https://gitlab.freedesktop.org/gstreamer/orc.git'}
commit = 'origin/master'
+
btype = BuildType.MESON
licenses = [{License.BSD_like: ['COPYING']}]
deps = ['meson']
diff --git a/recipes/orc.recipe b/recipes/orc.recipe
index 8a8d1821..d41f21dc 100644
--- a/recipes/orc.recipe
+++ b/recipes/orc.recipe
@@ -3,9 +3,16 @@ from cerbero.tools.libtool import LibtoolLibrary
class Recipe(recipe.Recipe):
name = 'orc'
- version = '0.4.28'
+ version = '0.4.29'
+
+ stype = SourceType.TARBALL
+ # These properties are only used when stype is TARBALL
+ url = 'https://gstreamer.freedesktop.org/src/orc/orc-%(version)s.tar.xz'
+ tarball_checksum = '4f8901f9144b5ec17dffdb33548b5f4c7f8049b0d1023be3462cdd64ec5a3ab2'
+ # These properties are only used when stype is GIT
remotes = {'origin': 'https://gitlab.freedesktop.org/gstreamer/orc.git'}
commit = 'origin/master'
+
btype = BuildType.MESON
licenses = [{License.BSD_like: ['COPYING']}]
meson_options = {'benchmarks': 'disabled', 'tests': 'disabled',