diff options
author | Tim-Philipp Müller <tim@centricular.com> | 2022-05-04 16:08:32 +0100 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.com> | 2022-05-04 16:08:32 +0100 |
commit | 615f1a86af21c41376813ea8ca7ec2c06c046e8b (patch) | |
tree | a40bf98a69a6e4edc8f5bd2076ea14d14b35bb54 | |
parent | ee1508aac5a5f57104f52d0c0e4fb3afd70fc29e (diff) |
Build 1.20 branch again
-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 96c64b1b..ab1d1ec2 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.2' +CERBERO_VERSION = '1.20.2.1' class Platform: ''' Enumeration of supported platforms ''' diff --git a/packages/custom.py b/packages/custom.py index 1c30f2ec..31515472 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.2' + version = '1.20.2.1' vendor = 'GStreamer Project' licenses = [License.LGPLv2Plus] org = 'org.freedesktop.gstreamer' diff --git a/recipes/custom.py b/recipes/custom.py index dcf49eb1..3395e989 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.2' - tagged_for_release = True + version = '1.20.2.1' + tagged_for_release = False # Decide what stype to use use_git = True |