diff options
author | Tim-Philipp Müller <tim@centricular.com> | 2023-07-28 06:21:35 +0100 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.com> | 2023-07-28 06:21:35 +0100 |
commit | 2f601f084e5e63658328dddeda98ba8276060c70 (patch) | |
tree | 3ffb682145631f00679478204e599cd37b09c0f2 | |
parent | 314696de8e415584465771d342372110c0699522 (diff) |
Build 1.20 branch again
Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/1240>
-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 e97bf662..ef63bd8d 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.20.7' +CERBERO_VERSION = '1.20.7.1' class Platform: ''' Enumeration of supported platforms ''' diff --git a/packages/custom.py b/packages/custom.py index 0d5da339..a4ddcf11 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.20.7' + version = '1.20.7.1' vendor = 'GStreamer Project' licenses = [License.LGPLv2Plus] org = 'org.freedesktop.gstreamer' diff --git a/recipes/custom.py b/recipes/custom.py index 96818338..de0a9cd4 100644 --- a/recipes/custom.py +++ b/recipes/custom.py @@ -12,8 +12,8 @@ def running_on_cerbero_ci(): class GStreamer(recipe.Recipe): licenses = [License.LGPLv2Plus] - version = '1.20.7' - tagged_for_release = True + version = '1.20.7.1' + tagged_for_release = False # Decide what stype to use use_git = True |