diff options
author | Tim-Philipp Müller <tim@centricular.com> | 2024-01-24 17:28:38 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.com> | 2024-01-24 17:28:38 +0000 |
commit | 99b39755716a1b98fcee1efedc705bab0004b287 (patch) | |
tree | fbae0279ff96a9105b128898ad4bf2ab6ce98708 | |
parent | 0919aa36066378261745d8004a9473ccca41efa6 (diff) |
Build 1.22 branch again
Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/1325>
-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 310f823b..252361c1 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.8' +CERBERO_VERSION = '1.22.8.1' class Platform: ''' Enumeration of supported platforms ''' diff --git a/packages/custom.py b/packages/custom.py index 3c1a3e0e..024536cc 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.8' + version = '1.22.8.1' vendor = 'GStreamer Project' licenses = [License.LGPLv2Plus] org = 'org.freedesktop.gstreamer' diff --git a/recipes/custom.py b/recipes/custom.py index d343086b..d1fbac76 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.8' - tagged_for_release = True + version = '1.22.8.1' + tagged_for_release = False # Decide what stype to use use_git = True |