diff options
author | Tim-Philipp Müller <tim@centricular.com> | 2017-05-06 15:59:48 +0100 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.com> | 2017-05-06 15:59:48 +0100 |
commit | 7b843c4f796f29609c5a92a0bee75a739d9a65c3 (patch) | |
tree | 21e1ca7e7630d1c73226e4869743ded6ca9194a2 | |
parent | c45d95ab926ab955e86df6faa2c99366d312259e (diff) |
Track tip of 1.12 branch
-rw-r--r-- | packages/custom.py | 2 | ||||
-rw-r--r-- | recipes/custom.py | 4 | ||||
-rw-r--r-- | setup.py | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/packages/custom.py b/packages/custom.py index 0f6afc23..fc9efa01 100644 --- a/packages/custom.py +++ b/packages/custom.py @@ -6,7 +6,7 @@ from cerbero.enums import License class GStreamer: url = "http://gstreamer.freedesktop.org" - version = '1.12.0' + version = '1.12.0.1' vendor = 'GStreamer Project' licenses = [License.LGPL] org = 'org.freedesktop.gstreamer' diff --git a/recipes/custom.py b/recipes/custom.py index 7a6daded..f037c1d8 100644 --- a/recipes/custom.py +++ b/recipes/custom.py @@ -13,8 +13,8 @@ from cerbero.utils import shell, to_unixpath class GStreamerBase: licenses = [License.LGPLv2Plus] - version = '1.12.0' - commit = '1.12.0' + version = '1.12.0.1' + commit = 'origin/1.12' class GStreamer(GStreamerBase, recipe.Recipe): @@ -127,7 +127,7 @@ class extended_sdist(setuptools_sdist.sdist): setup( name = "cerbero", - version = "1.12.0", + version = "1.12.0.1", author = "Andoni Morales", author_email = "amorales@fluendo.com", description = ("Multi platform build system for Open Source projects"), |