diff options
author | Tim-Philipp Müller <tim@centricular.com> | 2024-08-21 13:54:11 +0100 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.com> | 2024-08-21 14:51:08 +0000 |
commit | 96e7eb7dbf2c034c1803b7fb87c30f140b5392f8 (patch) | |
tree | 48e480b9fae84501b383bc58724ce04b17b998c0 | |
parent | 3356ac8b28898e11fd2196c1d6f7699b7886c8b4 (diff) |
Build 1.24 branch again
Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/1554>
-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 bcf18b75..8da57b07 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.24.7' +CERBERO_VERSION = '1.24.7.1' class Platform: diff --git a/packages/custom.py b/packages/custom.py index e226a690..725c2898 100644 --- a/packages/custom.py +++ b/packages/custom.py @@ -5,7 +5,7 @@ from cerbero.enums import License class GStreamer: url = 'http://gstreamer.freedesktop.org' - version = '1.24.7' + version = '1.24.7.1' vendor = 'GStreamer Project' licenses = [License.LGPLv2Plus] org = 'org.freedesktop.gstreamer' diff --git a/recipes/custom.py b/recipes/custom.py index 0d9773bb..aca6aad3 100644 --- a/recipes/custom.py +++ b/recipes/custom.py @@ -21,8 +21,8 @@ def running_on_cerbero_ci(): class GStreamer(recipe.Recipe): licenses = [License.LGPLv2Plus] - version = '1.24.7' - tagged_for_release = True + version = '1.24.7.1' + tagged_for_release = False # Decide what stype to use use_git = True |