diff options
author | Tim-Philipp Müller <tim@centricular.com> | 2024-02-16 15:06:51 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.com> | 2024-02-16 15:06:51 +0000 |
commit | b393b0a67addcd11755e506242a6054f2ce809ff (patch) | |
tree | c1ca287619f8f2cb34e9e5a7d6bef033a3ef266c | |
parent | f26fbd03d86c0856062245e40a38eecdf5ad58a3 (diff) |
Build main branch again
Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/1375>
-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 4e9da0f4..4d1711ff 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.23.2' +CERBERO_VERSION = '1.23.2.1' class Platform: diff --git a/packages/custom.py b/packages/custom.py index 22aad98a..57cd67db 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.23.2' + version = '1.23.2.1' vendor = 'GStreamer Project' licenses = [License.LGPLv2Plus] org = 'org.freedesktop.gstreamer' diff --git a/recipes/custom.py b/recipes/custom.py index d360480b..a9a2a301 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.23.2' - tagged_for_release = True + version = '1.23.2.1' + tagged_for_release = False # Decide what stype to use use_git = True |