Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package gstreamer-plugins-bad for
openSUSE:Factory checked in at 2021-04-18 21:44:56
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/gstreamer-plugins-bad (Old)
and /work/SRC/openSUSE:Factory/.gstreamer-plugins-bad.new.12324 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gstreamer-plugins-bad"
Sun Apr 18 21:44:56 2021 rev:115 rq:885637 version:1.18.4
Changes:
--------
---
/work/SRC/openSUSE:Factory/gstreamer-plugins-bad/gstreamer-plugins-bad.changes
2021-04-10 15:27:20.582376037 +0200
+++
/work/SRC/openSUSE:Factory/.gstreamer-plugins-bad.new.12324/gstreamer-plugins-bad.changes
2021-04-18 21:45:07.552723408 +0200
@@ -1,0 +2,7 @@
+Thu Apr 15 07:36:06 UTC 2021 - [email protected]
+
+- added patches
+ fix https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/issues/1574
+ + gstreamer-plugins-bad-openexr3.patch
+
+-------------------------------------------------------------------
New:
----
gstreamer-plugins-bad-openexr3.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ gstreamer-plugins-bad.spec ++++++
--- /var/tmp/diff_new_pack.xbPrQF/_old 2021-04-18 21:45:08.024724206 +0200
+++ /var/tmp/diff_new_pack.xbPrQF/_new 2021-04-18 21:45:08.028724213 +0200
@@ -39,6 +39,8 @@
Source0: %{_name}-%{version}.tar.xz
Source2: gstreamer-plugins-bad.appdata.xml
Source99: baselibs.conf
+# https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/issues/1574
+Patch0: gstreamer-plugins-bad-openexr3.patch
BuildRequires: Mesa-libGLESv3-devel
BuildRequires: fdupes
++++++ gstreamer-plugins-bad-openexr3.patch ++++++
Index: gst-plugins-bad-1.18.4/ext/openexr/gstopenexrdec.cpp
===================================================================
--- gst-plugins-bad-1.18.4.orig/ext/openexr/gstopenexrdec.cpp 2021-03-15
18:49:18.000000000 +0100
+++ gst-plugins-bad-1.18.4/ext/openexr/gstopenexrdec.cpp 2021-04-15
09:14:56.055900956 +0200
@@ -42,8 +42,8 @@ public:
}
virtual bool read (char c[], int n);
- virtual Int64 tellg ();
- virtual void seekg (Int64 pos);
+ virtual uint64_t tellg ();
+ virtual void seekg (uint64_t pos);
virtual void clear ();
private:
@@ -63,13 +63,13 @@ bool MemIStream::read (char c[], int n)
return (offset == size);
}
-Int64 MemIStream::tellg ()
+uint64_t MemIStream::tellg ()
{
return offset;
}
void
-MemIStream::seekg (Int64 pos)
+MemIStream::seekg (uint64_t pos)
{
offset = pos;
if (offset > size)