From 520269d34a72711d2533f45af366d8f39dced8fe Mon Sep 17 00:00:00 2001 From: Tim-Philipp Müller Date: Tue, 30 Apr 2024 00:41:15 +0100 Subject: Build 1.22.12 release Part-of: --- cerbero/enums.py | 2 +- packages/custom.py | 2 +- recipes/custom.py | 4 ++-- recipes/gst-devtools-1.0.recipe | 2 +- recipes/gst-editing-services-1.0.recipe | 2 +- recipes/gst-libav-1.0.recipe | 2 +- recipes/gst-omx-1.0.recipe | 2 +- recipes/gst-plugins-bad-1.0.recipe | 2 +- recipes/gst-plugins-base-1.0.recipe | 2 +- recipes/gst-plugins-good-1.0.recipe | 2 +- recipes/gst-plugins-ugly-1.0.recipe | 2 +- recipes/gst-rtsp-server-1.0.recipe | 2 +- recipes/gstreamer-1.0.recipe | 2 +- recipes/gstreamer-vaapi-1.0.recipe | 2 +- 14 files changed, 15 insertions(+), 15 deletions(-) diff --git a/cerbero/enums.py b/cerbero/enums.py index 9c21a902..a49cfce6 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.11.1' +CERBERO_VERSION = '1.22.12' class Platform: ''' Enumeration of supported platforms ''' diff --git a/packages/custom.py b/packages/custom.py index 1e0da4f8..f9276c08 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.11.1' + version = '1.22.12' vendor = 'GStreamer Project' licenses = [License.LGPLv2Plus] org = 'org.freedesktop.gstreamer' diff --git a/recipes/custom.py b/recipes/custom.py index 9bbe51b3..8478dfc7 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.11.1' - tagged_for_release = False + version = '1.22.12' + tagged_for_release = True # Decide what stype to use use_git = True diff --git a/recipes/gst-devtools-1.0.recipe b/recipes/gst-devtools-1.0.recipe index 04a8e4a2..ad426330 100644 --- a/recipes/gst-devtools-1.0.recipe +++ b/recipes/gst-devtools-1.0.recipe @@ -6,7 +6,7 @@ class Recipe(custom.GStreamer): name = 'gst-devtools-1.0' btype = BuildType.MESON meson_options = {'debug_viewer': 'disabled'} - tarball_checksum = '07766425ecb5bf857ab5ad3962321c55cd89f9386b720843f9df71c0a455eb9b' + tarball_checksum = '015ff62789dab423edafe979b019c7de4c849a2b7e74912b20b74a70e5b68f72' deps = ['gstreamer-1.0', 'gst-plugins-base-1.0', 'json-glib', 'gst-rtsp-server-1.0'] files_bins = ['gst-validate-1.0', 'gst-validate-transcoding-1.0', 'gst-validate-media-check-1.0', diff --git a/recipes/gst-editing-services-1.0.recipe b/recipes/gst-editing-services-1.0.recipe index 3c275574..ca127e3e 100644 --- a/recipes/gst-editing-services-1.0.recipe +++ b/recipes/gst-editing-services-1.0.recipe @@ -4,7 +4,7 @@ from cerbero.utils import shell class Recipe(custom.GStreamer): name = 'gst-editing-services-1.0' btype = BuildType.MESON - tarball_checksum = 'a52826d614bc9f71a41c6f6e7e51c2800a02e5486a53439a56d14d4abc9eaaf9' + tarball_checksum = '792339135ce713088663cc5d44e0aea8217793e88fabfd11571e7abf4a429f2c' deps = ['gstreamer-1.0', 'gst-plugins-base-1.0', 'gst-plugins-good-1.0', 'gst-devtools-1.0'] files_bins = ['ges-launch-1.0'] diff --git a/recipes/gst-libav-1.0.recipe b/recipes/gst-libav-1.0.recipe index 474d1696..c16c817a 100644 --- a/recipes/gst-libav-1.0.recipe +++ b/recipes/gst-libav-1.0.recipe @@ -4,7 +4,7 @@ class Recipe(custom.GStreamer): name = 'gst-libav-1.0' licenses = [License.LGPLv2Plus] btype = BuildType.MESON - tarball_checksum = '6b13dcc9332ef27a7c1e7005c0196883874f91622f8aa6e52f218b05b15d2bf5' + tarball_checksum = '3b60d4cac2fbcd085a93e9389ca23e0443bee1ca75574d31d4f12bb1bbecab48' deps = ['gstreamer-1.0', 'gst-plugins-base-1.0', 'ffmpeg'] files_plugins_codecs_restricted = ['lib/gstreamer-1.0/libgstlibav%(mext)s'] diff --git a/recipes/gst-omx-1.0.recipe b/recipes/gst-omx-1.0.recipe index d14807d2..d2c4b8af 100644 --- a/recipes/gst-omx-1.0.recipe +++ b/recipes/gst-omx-1.0.recipe @@ -3,7 +3,7 @@ class Recipe(custom.GStreamer): name = 'gst-omx-1.0' btype = BuildType.MESON - tarball_checksum = '18dfdf5f6b773d67e62a315c6cf6247da320b83603a5819493f53c69ed2eeef6' + tarball_checksum = '6b0685b92ac735032d7987d1028afaeab0a98ab726e0c51e5b9bfc8f2da7c8b1' deps = ['gstreamer-1.0', 'gst-plugins-base-1.0'] files_plugins_codecs = ['lib/gstreamer-1.0/libgstomx%(mext)s'] diff --git a/recipes/gst-plugins-bad-1.0.recipe b/recipes/gst-plugins-bad-1.0.recipe index 402915c1..b077528e 100644 --- a/recipes/gst-plugins-bad-1.0.recipe +++ b/recipes/gst-plugins-bad-1.0.recipe @@ -9,7 +9,7 @@ class Recipe(custom.GStreamer): licenses = [{License.LGPLv2Plus: None, License.BSD_like: ['ext/sctp/usrsctp/LICENSE.md']}] else: licenses = [{License.LGPLv2Plus: None, License.BSD_like: ['subprojects/gst-plugins-bad/ext/sctp/usrsctp/LICENSE.md']}] - tarball_checksum = '808d3b33fc4c71aeb2561c364a87c2e8a3e2343319a83244c8391be4b09499c8' + tarball_checksum = '388b4c4412f42e36a38b17cc34119bc11879bd4d9fbd4ff6d03b2c7fc6b4d494' # Explicitly enable plugins that we provide dependencies for to ensure that # we error out if they weren't found. meson_options = {'gpl': 'enabled', diff --git a/recipes/gst-plugins-base-1.0.recipe b/recipes/gst-plugins-base-1.0.recipe index f4fa668e..e0558ed0 100644 --- a/recipes/gst-plugins-base-1.0.recipe +++ b/recipes/gst-plugins-base-1.0.recipe @@ -4,7 +4,7 @@ class Recipe(custom.GStreamer): name = 'gst-plugins-base-1.0' btype = BuildType.MESON - tarball_checksum = '65eaf72296cc5edc985695a4d80affc931e64a79f4879d05615854f7a2cf5bd1' + tarball_checksum = '73cfadc3a6ffe77ed974cfd6fb391c605e4531f48db21dd6b9f42b8cb69bd8c1' meson_options = {# enabled plugins 'gl': 'enabled', 'gl-graphene': 'enabled', diff --git a/recipes/gst-plugins-good-1.0.recipe b/recipes/gst-plugins-good-1.0.recipe index 3e781362..0af43959 100644 --- a/recipes/gst-plugins-good-1.0.recipe +++ b/recipes/gst-plugins-good-1.0.recipe @@ -3,7 +3,7 @@ class Recipe(custom.GStreamer): name = 'gst-plugins-good-1.0' btype = BuildType.MESON - tarball_checksum = '6ddd032381827d31820540735f0004b429436b0bdac19aaeab44fa22faad52e2' + tarball_checksum = '9c1913f981900bd8867182639b20907b28ed78ef7a222cfbf2d8ba9dab992fa7' meson_options = {# enabled plugins 'adaptivedemux2': 'enabled', 'cairo': 'enabled', diff --git a/recipes/gst-plugins-ugly-1.0.recipe b/recipes/gst-plugins-ugly-1.0.recipe index ed90838e..a7ed84d7 100644 --- a/recipes/gst-plugins-ugly-1.0.recipe +++ b/recipes/gst-plugins-ugly-1.0.recipe @@ -4,7 +4,7 @@ class Recipe(custom.GStreamer): name = 'gst-plugins-ugly-1.0' btype = BuildType.MESON - tarball_checksum = '7758b7decfd20c00cae5700822bcbbf03f98c723e33e17634db2e07ca1da60bf' + tarball_checksum = 'd59a1aaf8dd2cc416dc5b5c0b7aecd02b1811bf1229aa724e6c2a503d3799083' meson_options = {'gpl': 'enabled', # enabled plugins 'a52dec': 'enabled', diff --git a/recipes/gst-rtsp-server-1.0.recipe b/recipes/gst-rtsp-server-1.0.recipe index ac29187a..0e7f1b50 100644 --- a/recipes/gst-rtsp-server-1.0.recipe +++ b/recipes/gst-rtsp-server-1.0.recipe @@ -3,7 +3,7 @@ class Recipe(custom.GStreamer): name = 'gst-rtsp-server-1.0' btype = BuildType.MESON - tarball_checksum = 'ec49d474750a6ff6729c85b448abc607fb6840b21717ad7abc967e2adbf07a24' + tarball_checksum = 'bf6c7871e7cf3528e4ec87ddc2f2949691cd269f98e536482ae744c1405cf451' deps = ['gstreamer-1.0', 'gst-plugins-base-1.0', 'gst-plugins-bad-1.0'] files_devel = ['include/gstreamer-1.0/gst/rtsp-server', 'lib/pkgconfig/gstreamer-rtsp-server-1.0.pc'] diff --git a/recipes/gstreamer-1.0.recipe b/recipes/gstreamer-1.0.recipe index ec365d9c..21818dc8 100644 --- a/recipes/gstreamer-1.0.recipe +++ b/recipes/gstreamer-1.0.recipe @@ -4,7 +4,7 @@ import shutil class Recipe(custom.GStreamer): name = 'gstreamer-1.0' btype = BuildType.MESON - tarball_checksum = '3d16259e9dab8b002c57ce208a09b350d8282f5b0197306c0cdba9a0d0799744' + tarball_checksum = 'ac352f3d02caa67f3b169daa9aa78b04dea0fc08a727de73cb28d89bd54c6f61' deps = ['glib'] bash_completions = ['gst-inspect-1.0', 'gst-launch-1.0'] diff --git a/recipes/gstreamer-vaapi-1.0.recipe b/recipes/gstreamer-vaapi-1.0.recipe index 7aeeb6d7..e6f28a5b 100644 --- a/recipes/gstreamer-vaapi-1.0.recipe +++ b/recipes/gstreamer-vaapi-1.0.recipe @@ -4,7 +4,7 @@ class Recipe(custom.GStreamer): name = 'gstreamer-vaapi-1.0' btype = BuildType.MESON - tarball_checksum = '6eae1360658302b9b512fa46b4d06f5b818dfce5f2f43d7d710ca8142719d8ad' + tarball_checksum = '013ad729b2fe4fccda559bddc626bcb14230cfb90a2271049f8466bfec5d80df' meson_options = {# auto enable plugins 'encoders': 'auto', 'drm': 'auto', -- cgit v1.2.3