diff options
author | Tim-Philipp Müller <tim@centricular.com> | 2023-11-16 12:23:01 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.com> | 2023-11-16 12:23:01 +0000 |
commit | 323963f4ccac767fbc322a0cc850dec84feac76e (patch) | |
tree | 6dd3460b5dc15103dc06b7c06cccf8849e91ae9e | |
parent | 499e680051cc9947432197026c42538474839fce (diff) |
Build 1.22 branch again
Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/1303>
-rw-r--r-- | cerbero/enums.py | 2 | ||||
-rw-r--r-- | packages/custom.py | 2 | ||||
-rw-r--r-- | recipes/custom.py | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/cerbero/enums.py b/cerbero/enums.py index 39c6c69f..87509753 100644 --- a/cerbero/enums.py +++ b/cerbero/enums.py @@ -20,7 +20,7 @@ from cerbero.errors import FatalError # Safest place to define this since this file imports very few modules -CERBERO_VERSION = '1.22.7' +CERBERO_VERSION = '1.22.7.1' class Platform: ''' Enumeration of supported platforms ''' diff --git a/packages/custom.py b/packages/custom.py index 9dfbe66c..6ea47d79 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.22.7' + version = '1.22.7.1' vendor = 'GStreamer Project' licenses = [License.LGPLv2Plus] org = 'org.freedesktop.gstreamer' diff --git a/recipes/custom.py b/recipes/custom.py index 22631a43..b9f92ac8 100644 --- a/recipes/custom.py +++ b/recipes/custom.py @@ -19,8 +19,8 @@ def running_on_cerbero_ci(): class GStreamer(recipe.Recipe): licenses = [License.LGPLv2Plus] - version = '1.22.7' - tagged_for_release = True + version = '1.22.7.1' + tagged_for_release = False # Decide what stype to use use_git = True |