From 1d3138ebcdd54bc211084885d438a38b5945f7e0 Mon Sep 17 00:00:00 2001 From: Tim-Philipp Müller Date: Sat, 4 Mar 2023 15:51:51 +0000 Subject: Build 1.22.1 release --- 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-rs.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 +- 15 files changed, 16 insertions(+), 16 deletions(-) diff --git a/cerbero/enums.py b/cerbero/enums.py index f1302260..057781b7 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.0.1' +CERBERO_VERSION = '1.22.1' class Platform: ''' Enumeration of supported platforms ''' diff --git a/packages/custom.py b/packages/custom.py index eee5dfb0..3f6c2b9b 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.0.1' + version = '1.22.1' vendor = 'GStreamer Project' licenses = [License.LGPLv2Plus] org = 'org.freedesktop.gstreamer' diff --git a/recipes/custom.py b/recipes/custom.py index dd651910..9f1877ad 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.0.1' - tagged_for_release = False + version = '1.22.1' + 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 f1de6b1c..4d37a39c 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 = '4d21fee5c15f2877c0b1f6c2da0cdba67ce7caab2c199ab27e91a1394d5ba195' + tarball_checksum = '38ee5e0b35b90c976b4cfe8672fecf384db4404ea166465f2dc8bf9ba7688be5' 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 51f641d1..c2b29723 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 = '2a23856379af03586b66c193910fa8bb963024580bc2337c7405578dc077aa79' + tarball_checksum = '0f9e5e08ef80a4b9a0e971c5f032b13c71aa6fef236265c2d615456e15161438' 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 0cbb57cb..c16de39c 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 = '0e48407b4905227a260213dbda84cba3812f0530fc7a75b43829102ef82810f1' + tarball_checksum = 'c958e825dc3ac3b7a481f8db5268131a1cd701312385c2d803dc63c8e460b5fb' 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 840fc9c9..e2ef1322 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 = 'dbc951a99af532380e599aa8acd9e1385fdb299b46b5868cd2be4230ad888341' + tarball_checksum = '2d37f60cd33e68dcef0bcd09b2dd8a0b2eb3ab6d6ac172dca46f70eb02756687' 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 723980b1..a95eec84 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 = '3c9d9300f5f4fb3e3d36009379d1fb6d9ecd79c1a135df742b8a68417dd663a1' + tarball_checksum = '2f39b6f222d98666f9ff420a00233e336949953a846237c2bfafc8805f509f0e' # 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 7790d4fa..af30e027 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 = 'f53672294f3985d56355c8b1df8f6b49c8c8721106563e19f53be3507ff2229d' + tarball_checksum = '59bcaeacc5646b8dbdcfa4ef20ca6e818dd234910efb4cee1bbea441a3801c69' 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 48fd3d96..f1f13556 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 = '582e617271e7f314d1a2211e3e3856ae2e4303c8c0d6114e9c4a5ea5719294b0' + tarball_checksum = '44f9104654b4fd042aebe90932ab92e7ff7d8460fbc05b23dad87dffe70974cc' meson_options = {# enabled plugins 'adaptivedemux2': 'enabled', 'cairo': 'enabled', diff --git a/recipes/gst-plugins-rs.recipe b/recipes/gst-plugins-rs.recipe index 7866795a..26ef9f51 100644 --- a/recipes/gst-plugins-rs.recipe +++ b/recipes/gst-plugins-rs.recipe @@ -4,7 +4,7 @@ from cerbero.utils import messages as m class Recipe(recipe.Recipe): name = 'gst-plugins-rs' - version = '0.9.8' + version = '0.9.10' stype = SourceType.GIT remotes = {'origin': 'https://gitlab.freedesktop.org/gstreamer/%(name)s.git'} if GStreamer.tagged_for_release: diff --git a/recipes/gst-plugins-ugly-1.0.recipe b/recipes/gst-plugins-ugly-1.0.recipe index 6de2bf60..640f05a2 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 = 'a644dc981afa2d8d3a913f763ab9523c0620ee4e65a7ec73c7721c29da3c5a0c' + tarball_checksum = '4ab3d9e13481bce1ca3c7c4bb1f65dce4f0bb40fb1cac4416e8c06dd648815c2' 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 a7637feb..f689f7cb 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 = 'aea24eeb59ee5fadfac355de2f7cecb51966c3e147e5ad7cfb4c314f1a4086ed' + tarball_checksum = '4e0b972608f67d5d8f5363c827cfcf132b0e00877be6f1905358d514249b05a3' 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 14be73c6..8c646560 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 = '78d21b5469ac93edafc6d8ceb63bc82f6cbbee94d2f866cca6b9252157ee0a09' + tarball_checksum = 'cd3ca759f926763615fdfcea63c9761198c42889bc0615ceec73e22b24fde771' 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 67449d9c..e334828b 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 = '593ccad19f88e5fa29f40f98356c007806bd535828707b1406944d16a90bdff5' + tarball_checksum = '423b57db7fc5f9137dadf17cb3853a47438d63cd4ba6889a882e63fb5be997bc' meson_options = {# auto enable plugins 'with_encoders': 'auto', 'with_drm': 'auto', -- cgit v1.2.3