diff options
author | Jan Schmidt <jan@centricular.com> | 2017-12-14 01:52:30 +1100 |
---|---|---|
committer | Jan Schmidt <jan@centricular.com> | 2017-12-14 01:52:30 +1100 |
commit | 3e8b102ba34036ae3e66b163a8e50aa83809381f (patch) | |
tree | 0ff4c42f1bf0e7129da5b7b6fee07ea99e19ba63 | |
parent | 24b4f6fe9219f7ce4171d4b21ada230ea4aa0b73 (diff) |
Update to track 1.12 branch tip
-rw-r--r-- | packages/custom.py | 2 | ||||
-rw-r--r-- | recipes/custom.py | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/packages/custom.py b/packages/custom.py index c2879813..6e16271e 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.4' + version = '1.12.4.1' vendor = 'GStreamer Project' licenses = [License.LGPL] org = 'org.freedesktop.gstreamer' diff --git a/recipes/custom.py b/recipes/custom.py index b8052a10..74bdc954 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.4' - commit = '1.12.4' + version = '1.12.4.1' + commit = 'origin/1.12' class GStreamer(GStreamerBase, recipe.Recipe): |