Compare commits

...

15 Commits

Author SHA1 Message Date
David Abdurachmanov ff4d3d8eee
Merge remote-tracking branch 'up/master' into master-riscv64
Signed-off-by: David Abdurachmanov <david.abdurachmanov@sifive.com>
2020-04-03 10:09:00 +03:00
Fedora Release Engineering 6c6c2eba08 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2020-01-29 03:43:59 +00:00
Wim Taymans d99a74ca8e Update to 1.16.2 2020-01-02 15:34:34 +01:00
Wim Taymans 65a692254c Update to 1.16.1
Enable libcap for the ptp helper permissions
2019-09-24 11:59:58 +02:00
Fedora Release Engineering 63f1375fa6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2019-07-25 07:56:17 +00:00
Wim Taymans 3fdcb86916 Update to 1.16.0 2019-04-23 10:09:37 +02:00
Wim Taymans d9d3a253a3 Update to 1.16.0 2019-04-23 09:53:26 +02:00
Wim Taymans edb30c2d97 Update to 1.15.2 2019-03-01 15:19:49 +01:00
Fedora Release Engineering 82a4c87da0 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2019-02-01 01:45:14 +00:00
Wim Taymans 7e587440b1 Rebuild for dependencies 2019-01-28 09:55:28 +01:00
Wim Taymans cc3de3f568 Update to 1.15.1 2019-01-25 18:31:50 +01:00
Wim Taymans b69f767656 Update to 1.14.4 2018-10-03 09:25:27 +02:00
Wim Taymans b547270a0d Update to 1.14.3 2018-09-18 10:22:10 +02:00
Wim Taymans 38168cfee0 Update to 1.14.2 2018-07-23 13:14:01 +02:00
Fedora Release Engineering d1d9f0e71c - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2018-07-13 04:38:18 +00:00
4 changed files with 81 additions and 25 deletions

8
.gitignore vendored
View File

@ -60,3 +60,11 @@
/gstreamer-1.13.91.tar.xz
/gstreamer-1.14.0.tar.xz
/gstreamer-1.14.1.tar.xz
/gstreamer-1.14.2.tar.xz
/gstreamer-1.14.3.tar.xz
/gstreamer-1.14.4.tar.xz
/gstreamer-1.15.1.tar.xz
/gstreamer-1.15.2.tar.xz
/gstreamer-1.16.0.tar.xz
/gstreamer-1.16.1.tar.xz
/gstreamer-1.16.2.tar.xz

View File

@ -1,19 +1,19 @@
From 7c0fb2de2921d15493d7353ae269140b17e8d88e Mon Sep 17 00:00:00 2001
From 22e55e9f8eba1f483588d18b0b7d83fe7d40b590 Mon Sep 17 00:00:00 2001
From: Wim Taymans <wtaymans@redhat.com>
Date: Mon, 4 Jan 2016 11:39:33 +0100
Subject: [PATCH] inspect: Add RPM output format
---
tools/gst-inspect.c | 277 +++++++++++++++++++++++++++++++++++++++++++++++++---
tools/gst-inspect.c | 277 +++++++++++++++++++++++++++++++++++++++++---
1 file changed, 262 insertions(+), 15 deletions(-)
diff --git a/tools/gst-inspect.c b/tools/gst-inspect.c
index 89a1fab92..6d2369814 100644
index 823e82b61..96f5bc786 100644
--- a/tools/gst-inspect.c
+++ b/tools/gst-inspect.c
@@ -1524,7 +1524,224 @@ print_tracer_info (GstPluginFeature * feature, gboolean print_names)
}
@@ -1728,7 +1728,224 @@ print_tracer_info (GstPluginFeature * feature, gboolean print_names)
* is meant for machines, not humans.
*/
static void
-print_plugin_automatic_install_info_codecs (GstElementFactory * factory)
+print_gst_structure_append_field (GList * strings, const char *field)
@ -237,7 +237,7 @@ index 89a1fab92..6d2369814 100644
{
GstPadDirection direction;
const gchar *type_name;
@@ -1550,6 +1767,13 @@ print_plugin_automatic_install_info_codecs (GstElementFactory * factory)
@@ -1754,6 +1971,13 @@ print_plugin_automatic_install_info_codecs (GstElementFactory * factory)
return;
}
@ -251,7 +251,7 @@ index 89a1fab92..6d2369814 100644
/* decoder/demuxer sink pads should always be static and there should only
* be one, the same applies to encoders/muxers and source pads */
static_templates = gst_element_factory_get_static_pad_templates (factory);
@@ -1586,15 +1810,20 @@ print_plugin_automatic_install_info_codecs (GstElementFactory * factory)
@@ -1790,15 +2014,20 @@ print_plugin_automatic_install_info_codecs (GstElementFactory * factory)
gst_structure_remove_field (s, "rate");
gst_structure_remove_field (s, "depth");
gst_structure_remove_field (s, "clock-rate");
@ -276,7 +276,7 @@ index 89a1fab92..6d2369814 100644
{
const gchar *const *protocols;
@@ -1603,13 +1832,19 @@ print_plugin_automatic_install_info_protocols (GstElementFactory * factory)
@@ -1807,13 +2036,19 @@ print_plugin_automatic_install_info_protocols (GstElementFactory * factory)
switch (gst_element_factory_get_uri_type (factory)) {
case GST_URI_SINK:
while (*protocols != NULL) {
@ -298,7 +298,7 @@ index 89a1fab92..6d2369814 100644
++protocols;
}
break;
@@ -1620,7 +1855,7 @@ print_plugin_automatic_install_info_protocols (GstElementFactory * factory)
@@ -1824,7 +2059,7 @@ print_plugin_automatic_install_info_protocols (GstElementFactory * factory)
}
static void
@ -307,7 +307,7 @@ index 89a1fab92..6d2369814 100644
{
GList *features, *l;
@@ -1639,11 +1874,15 @@ print_plugin_automatic_install_info (GstPlugin * plugin)
@@ -1843,11 +2078,15 @@ print_plugin_automatic_install_info (GstPlugin * plugin)
if (feature_plugin == plugin) {
GstElementFactory *factory;
@ -326,7 +326,7 @@ index 89a1fab92..6d2369814 100644
}
if (feature_plugin)
gst_object_unref (feature_plugin);
@@ -1665,7 +1904,7 @@ print_all_plugin_automatic_install_info (void)
@@ -1869,7 +2108,7 @@ print_all_plugin_automatic_install_info (void)
plugin = (GstPlugin *) (plugins->data);
plugins = g_list_next (plugins);
@ -335,7 +335,7 @@ index 89a1fab92..6d2369814 100644
}
gst_plugin_list_free (orig_plugins);
}
@@ -1677,6 +1916,7 @@ main (int argc, char *argv[])
@@ -1934,6 +2173,7 @@ main (int argc, char *argv[])
gboolean do_print_blacklist = FALSE;
gboolean plugin_name = FALSE;
gboolean print_aii = FALSE;
@ -343,7 +343,7 @@ index 89a1fab92..6d2369814 100644
gboolean uri_handlers = FALSE;
gboolean check_exists = FALSE;
gchar *min_version = NULL;
@@ -1695,6 +1935,9 @@ main (int argc, char *argv[])
@@ -1954,6 +2194,9 @@ main (int argc, char *argv[])
"or all plugins provide.\n "
"Useful in connection with external automatic plugin "
"installation mechanisms"), NULL},
@ -353,7 +353,7 @@ index 89a1fab92..6d2369814 100644
{"plugin", '\0', 0, G_OPTION_ARG_NONE, &plugin_name,
N_("List the plugin contents"), NULL},
{"types", 't', 0, G_OPTION_ARG_STRING, &types,
@@ -1825,7 +2068,7 @@ main (int argc, char *argv[])
@@ -2109,7 +2352,7 @@ main (int argc, char *argv[])
/* if there is such a plugin, print out info */
if (plugin) {
if (print_aii) {
@ -362,7 +362,7 @@ index 89a1fab92..6d2369814 100644
} else {
print_plugin_info (plugin);
print_plugin_features (plugin);
@@ -1838,13 +2081,17 @@ main (int argc, char *argv[])
@@ -2122,13 +2365,17 @@ main (int argc, char *argv[])
if (plugin) {
if (print_aii) {
@ -380,8 +380,8 @@ index 89a1fab92..6d2369814 100644
+ g_printerr (_("Could not load plugin file: %s\n"),
+ error->message);
g_clear_error (&error);
return -1;
}
exit_code = -1;
goto done;
--
2.14.3
2.20.1

View File

@ -7,10 +7,11 @@
%global _glib2 2.32.0
%global _libxml2 2.4.0
%global _gobject_introspection 1.31.1
%global __python %{__python3}
Name: gstreamer1
Version: 1.14.1
Release: 5%{?gitcommit:.git%{shortcommit}}.0.riscv64%{?dist}
Version: 1.16.2
Release: 2%{?gitcommit:.git%{shortcommit}}.0.riscv64%{?dist}
Summary: GStreamer streaming media framework runtime
License: LGPLv2+
@ -38,13 +39,14 @@ BuildRequires: check-devel
BuildRequires: gtk-doc >= 1.3
BuildRequires: gettext
BuildRequires: pkgconfig
BuildRequires: libcap-devel
# ./autogen.sh deps
BuildRequires: automake gettext-devel libtool
BuildRequires: chrpath
### documentation requirements
BuildRequires: python2
BuildRequires: python3
BuildRequires: openjade
BuildRequires: texlive-jadetex
BuildRequires: libxslt
@ -105,7 +107,9 @@ NOCONFIGURE=1 \
--enable-debug \
--disable-fatal-warnings \
--disable-silent-rules \
--disable-tests --disable-examples
--disable-tests --disable-examples \
--with-ptp-helper-permissions=capabilities
%make_build V=1
@ -190,6 +194,10 @@ install -m0644 -D %{SOURCE2} $RPM_BUILD_ROOT%{_rpmconfigdir}/fileattrs/gstreamer
%{_datadir}/aclocal/gst-element-check-%{majorminor}.m4
%dir %{_datadir}/gstreamer-%{majorminor}/gdb/
%{_datadir}/gstreamer-%{majorminor}/gdb/
%{_datadir}/gdb/auto-load/
%{_libdir}/pkgconfig/gstreamer-%{majorminor}.pc
%{_libdir}/pkgconfig/gstreamer-base-%{majorminor}.pc
%{_libdir}/pkgconfig/gstreamer-controller-%{majorminor}.pc
@ -203,9 +211,49 @@ install -m0644 -D %{SOURCE2} $RPM_BUILD_ROOT%{_rpmconfigdir}/fileattrs/gstreamer
%changelog
* Tue Jun 19 2018 David Abdurachmanov <david.abdurachmanov@gmail.com> - 1.14.1-5.0.riscv64
* Fri Apr 03 2020 David Abdurachmanov <david.abdurachmanov@sifive.com> - 1.16.2-2.0.riscv64
- Add support for RISC-V (riscv64)
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.16.2-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
* Thu Jan 2 2020 Wim Taymans <wtaymans@redhat.com> - 1.16.2-1
- Update to 1.16.2
* Tue Sep 24 2019 Wim Taymans <wtaymans@redhat.com> - 1.16.1-1
- Update to 1.16.1
- Enable libcap for the ptp helper permissions
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.16.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
* Tue Apr 23 2019 Wim Taymans <wtaymans@redhat.com> - 1.16.0-1
- Update to 1.16.0
* Fri Mar 01 2019 Wim Taymans <wtaymans@redhat.com> - 1.15.2-1
- Update to 1.15.2
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.15.1-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
* Mon Jan 28 2019 Wim Taymans <wtaymans@redhat.com> - 1.15.1-2
- Rebuild for dependencies
* Fri Jan 25 2019 Wim Taymans <wtaymans@redhat.com> - 1.15.1-1
- Update to 1.15.1
* Wed Oct 03 2018 Wim Taymans <wtaymans@redhat.com> - 1.14.4-1
- Update to 1.14.4
* Tue Sep 18 2018 Wim Taymans <wtaymans@redhat.com> - 1.14.3-1
- Update to 1.14.3
* Mon Jul 23 2018 Wim Taymans <wtaymans@redhat.com> - 1.14.2-1
- Update to 1.14.2
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.14.1-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
* Fri Jun 15 2018 Wim Taymans <wtaymans@redhat.com> - 1.14.1-5
- Remove xfig build dependency. It has not been needed since
version 1.2.0

View File

@ -1 +1 @@
SHA512 (gstreamer-1.14.1.tar.xz) = 9cf16d79774293dd7fa10c08f6628b83f4e77f0386bebbfd47ded0498e4abd48eee1aee164af53d59fbea2d395e42eb5a12ef4b8f631bc4fd5d4f69545191f9b
SHA512 (gstreamer-1.16.2.tar.xz) = a8dcdb452a88f411676e54016fcf83149068b2f0b60422bebdbc81220078c61c415512006010ba0299df81ffb59853695c3ce00580f8fc46a079f6aaaa42609f