summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2019-02-27 00:14:16 +0000
committerTim-Philipp Müller <tim@centricular.com>2019-02-27 08:22:30 +0000
commit7e26bc9e322d0ca93ce7a9970815922a9d6c0306 (patch)
treee089d2ed0ce27eef222b795b3410b79807ab17b6
parentfb1f9e215b3ac9c3a85d1d3639f4e80e22e1b924 (diff)
Build 1.15.2 release
-rw-r--r--packages/custom.py2
-rw-r--r--recipes/custom.py4
-rw-r--r--recipes/gst-editing-services-1.0.recipe2
-rw-r--r--recipes/gst-libav-1.0.recipe2
-rw-r--r--recipes/gst-omx-1.0.recipe2
-rw-r--r--recipes/gst-plugins-bad-1.0.recipe2
-rw-r--r--recipes/gst-plugins-base-1.0.recipe2
-rw-r--r--recipes/gst-plugins-good-1.0.recipe2
-rw-r--r--recipes/gst-plugins-ugly-1.0.recipe2
-rw-r--r--recipes/gst-rtsp-server-1.0.recipe2
-rw-r--r--recipes/gstreamer-1.0.recipe2
-rw-r--r--setup.py2
12 files changed, 13 insertions, 13 deletions
diff --git a/packages/custom.py b/packages/custom.py
index 8e0f3585..996fd09e 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.15.1'
+ version = '1.15.2'
vendor = 'GStreamer Project'
licenses = [License.LGPL]
org = 'org.freedesktop.gstreamer'
diff --git a/recipes/custom.py b/recipes/custom.py
index a6f5af8a..c035a59b 100644
--- a/recipes/custom.py
+++ b/recipes/custom.py
@@ -12,8 +12,8 @@ from cerbero.utils import shell, to_unixpath
class GStreamer(recipe.Recipe):
licenses = [License.LGPLv2Plus]
- version = '1.15.1.1'
- tagged_for_release = False
+ version = '1.15.2'
+ tagged_for_release = True
if not tagged_for_release:
# Pre-release version, use git master
diff --git a/recipes/gst-editing-services-1.0.recipe b/recipes/gst-editing-services-1.0.recipe
index e7e6830a..de7a5c88 100644
--- a/recipes/gst-editing-services-1.0.recipe
+++ b/recipes/gst-editing-services-1.0.recipe
@@ -5,7 +5,7 @@ class Recipe(custom.GStreamer):
name = 'gst-editing-services-1.0'
btype = BuildType.MESON
url = 'https://gstreamer.freedesktop.org/src/%(name)s/gstreamer-editing-services-%(version)s.tar.xz'
- tarball_checksum = '3f174950ac126da15ba1060b4675fb1ce604795c91e2fcac03edcf4f53f5013b'
+ tarball_checksum = '0b90cd97a36da9bd775af78e76b319cf4da31cd64f893af4c2a0feb568b6af79'
tarball_dirname = 'gstreamer-editing-services-%(version)s'
deps = ['gstreamer-1.0', 'gst-plugins-base-1.0', 'gst-plugins-good-1.0', 'gst-validate']
diff --git a/recipes/gst-libav-1.0.recipe b/recipes/gst-libav-1.0.recipe
index 55147c17..6c9c7704 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 = '93eacda6327ee4fcbb3254e68757d555196d1e2c689e1b79a46e28f33ef20543'
+ tarball_checksum = '96241130cb0067e01925a7cfe084dcf05941f139eb1ab45e5556c3f95120ce49'
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 cbe1501a..1a43bc10 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 = 'b4313731939b23359201177770c694cfb64556583453d7bf9f28453aa95c2d6f'
+ tarball_checksum = '84ea983e48c5a7c578da9b281ef54726933f7b1bdc71bb31dafa5002cd7610fe'
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 2fa4c790..aefe46a6 100644
--- a/recipes/gst-plugins-bad-1.0.recipe
+++ b/recipes/gst-plugins-bad-1.0.recipe
@@ -4,7 +4,7 @@ from cerbero.tools.libtool import LibtoolLibrary
class Recipe(custom.GStreamer):
name = 'gst-plugins-bad-1.0'
btype = BuildType.MESON
- tarball_checksum = '20f86247d9d72e2e67879b479a643113b71f7d895c41940b9b9caf0b14f2f336'
+ tarball_checksum = 'eafbb705190ca6dbf0e5dfbe1bc3d0f217fbc2a828037b5ede12d3611b9f9bd7'
# Explicitly enable plugins that we provide dependencies for to ensure that
# we error out if they weren't found.
meson_options = {# enabled plugins
diff --git a/recipes/gst-plugins-base-1.0.recipe b/recipes/gst-plugins-base-1.0.recipe
index e4a44bc4..506f65e9 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 = '6e325958526d6901546da6c1e93a990ede1772b2d6ffde1bf459fca35fea7e63'
+ tarball_checksum = '6952be988abe67b5affd46b194e97863b160cd58846199873b4315fe5e1cdbf0'
meson_options = {# enabled plugins
'gl': 'enabled',
'libvisual': 'enabled',
diff --git a/recipes/gst-plugins-good-1.0.recipe b/recipes/gst-plugins-good-1.0.recipe
index 46e82642..a58b6259 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 = '2b9fb4c5514981e4f75aa1af20a34bac72a447885763d03da3d23c7e329dc695'
+ tarball_checksum = 'b805962a2d777ff6145f6ca2ca8458499c9e23236cbcc41787c69ac51b02c818'
meson_options = {# enabled plugins
'cairo': 'enabled',
'dv': 'enabled',
diff --git a/recipes/gst-plugins-ugly-1.0.recipe b/recipes/gst-plugins-ugly-1.0.recipe
index b9c3ba12..1803d453 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 = '178fa922cf54a1eb1c563e1a1b272c9b5dbf50fb331830170ddf2aeec1e8e99e'
+ tarball_checksum = '6e802c63680ac24b6970a35b3001e5c96e57f1b19814cd3916d52a32d33123b2'
meson_options = {'a52dec': 'enabled',
'amrnb': 'enabled',
'amrwbdec': 'enabled',
diff --git a/recipes/gst-rtsp-server-1.0.recipe b/recipes/gst-rtsp-server-1.0.recipe
index 611ac426..392926b4 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 = '745fd87903ff72b849dbb82c86353fd4c77cea599e07a2fbed0d901c8f531234'
+ tarball_checksum = '11d455f6ac8544eb8d8a014a1046d284800c1c80c93ae6b43b20a5fd1921b4c5'
deps = ['gstreamer-1.0', 'gst-plugins-base-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 91c4feb7..a49b0da4 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 = '780ae2347f9780fea264a602a7c04a87a43998188e7bd9c59afb4d7c864f3117'
+ tarball_checksum = '27a3211eb5c3f6929c5f123ffecaac0ea6e9ed6b93be879c033a7d5af13ad7e6'
deps = ['glib']
files_bins = ['gst-inspect-1.0',
diff --git a/setup.py b/setup.py
index 210e3fbf..c9f381b6 100644
--- a/setup.py
+++ b/setup.py
@@ -127,7 +127,7 @@ class extended_sdist(setuptools_sdist.sdist):
setup(
name = "cerbero",
- version = '1.15.1',
+ version = '1.15.2',
author = "Andoni Morales",
author_email = "amorales@fluendo.com",
description = ("Multi platform build system for Open Source projects"),