[qt5-qtwebengine-freeworld] Add a hunk to the QTBUG-61521 fix according to the upstream review
by Kevin Kofler
commit 4a8ebc82231975c874a2d037857eddca1d6e2635
Author: Kevin Kofler <kevin.kofler(a)chello.at>
Date: Tue Jun 27 01:43:58 2017 +0200
Add a hunk to the QTBUG-61521 fix according to the upstream review
* Mon Jun 26 2017 Kevin Kofler <Kevin(a)tigcc.ticalc.org> - 5.9.0-3
- Add a hunk to the QTBUG-61521 fix according to the upstream review
qt5-qtwebengine-freeworld.spec | 11 +++++++----
...ebengine-opensource-src-5.9.0-qtbug-61521.patch | 23 ++++++++++++++++++++--
2 files changed, 28 insertions(+), 6 deletions(-)
---
diff --git a/qt5-qtwebengine-freeworld.spec b/qt5-qtwebengine-freeworld.spec
index d6e9646..f149bc3 100644
--- a/qt5-qtwebengine-freeworld.spec
+++ b/qt5-qtwebengine-freeworld.spec
@@ -44,7 +44,7 @@
Summary: Qt5 - QtWebEngine components (freeworld version)
Name: qt5-qtwebengine-freeworld
Version: 5.9.0
-Release: 2%{?dist}
+Release: 3%{?dist}
%global major_minor %(echo %{version} | cut -d. -f-2)
%global major %(echo %{version} | cut -d. -f1)
@@ -100,8 +100,8 @@ Patch21: qtwebengine-opensource-src-5.9.0-gn-bootstrap-verbose.patch
# Fix src/3rdparty/chromium/build/linux/unbundle/re2.gn
Patch22: qtwebengine-opensource-src-5.9.0-system-re2.patch
# Fix broken binary compatibility for C memory management functions (incomplete
-# upstream fix for QTBUG-60565)
-Patch23: qtwebengine-opensource-src-5.9.0-qtbug-60565-c-symbols.patch
+# upstream fix for QTBUG-60565) (QTBUG-61521)
+Patch23: qtwebengine-opensource-src-5.9.0-qtbug-61521.patch
# Backport upstream patch to fix GN FTBFS on aarch64 (QTBUG-61128)
# https://codereview.qt-project.org/196178
Patch100: qtwebengine-opensource-src-5.9.0-gn-aarch64.patch
@@ -332,7 +332,7 @@ This version is compiled with support for patent-encumbered codecs enabled.
%patch20 -p1 -b .qt57
%patch21 -p1 -b .gn-bootstrap-verbose
%patch22 -p1 -b .system-re2
-%patch23 -p1 -b .qtbug-60565-c-symbols
+%patch23 -p1 -b .qtbug-61521
%patch100 -p1 -b .gn-aarch64
%patch101 -p1 -b .aarch64-gcc-toolchain
# fix // in #include in content/renderer/gpu to avoid debugedit failure
@@ -413,6 +413,9 @@ echo "%{_libdir}/%{name}" \
%config(noreplace) %{_sysconfdir}/ld.so.conf.d/%{name}-%{_arch}.conf
%changelog
+* Mon Jun 26 2017 Kevin Kofler <Kevin(a)tigcc.ticalc.org> - 5.9.0-3
+- Add a hunk to the QTBUG-61521 fix according to the upstream review
+
* Sun Jun 25 2017 Kevin Kofler <Kevin(a)tigcc.ticalc.org> - 5.9.0-2
- Fix broken binary compatibility for C memory management functions (incomplete
upstream fix for QTBUG-60565)
diff --git a/qtwebengine-opensource-src-5.9.0-qtbug-60565-c-symbols.patch b/qtwebengine-opensource-src-5.9.0-qtbug-61521.patch
similarity index 82%
rename from qtwebengine-opensource-src-5.9.0-qtbug-60565-c-symbols.patch
rename to qtwebengine-opensource-src-5.9.0-qtbug-61521.patch
index 35edb0c..a9a0109 100644
--- a/qtwebengine-opensource-src-5.9.0-qtbug-60565-c-symbols.patch
+++ b/qtwebengine-opensource-src-5.9.0-qtbug-61521.patch
@@ -1,6 +1,25 @@
-diff -ur qtwebengine-opensource-src-5.9.0/src/core/api/qtbug-60565.cpp qtwebengine-opensource-src-5.9.0-qtbug-60565-c-symbols/src/core/api/qtbug-60565.cpp
+diff -ur qtwebengine-opensource-src-5.9.0/src/3rdparty/chromium/base/process/memory_linux.cc qtwebengine-opensource-src-5.9.0-qtbug-61521/src/3rdparty/chromium/base/process/memory_linux.cc
+--- qtwebengine-opensource-src-5.9.0/src/3rdparty/chromium/base/process/memory_linux.cc 2017-05-18 16:51:44.000000000 +0200
++++ qtwebengine-opensource-src-5.9.0-qtbug-61521/src/3rdparty/chromium/base/process/memory_linux.cc 2017-06-26 23:48:15.166464570 +0200
+@@ -60,6 +60,7 @@
+ #endif
+ void* __libc_memalign(size_t alignment, size_t size);
+
++#if !defined(TOOLKIT_QT) //QTBUG-61521,QTBUG-60565
+ // Overriding the system memory allocation functions:
+ //
+ // For security reasons, we want malloc failures to be fatal. Too much code
+@@ -129,6 +130,7 @@
+ *ptr = memalign(alignment, size);
+ return 0;
+ }
++#endif // TOOLKIT_QT
+
+ } // extern C
+
+diff -ur qtwebengine-opensource-src-5.9.0/src/core/api/qtbug-60565.cpp qtwebengine-opensource-src-5.9.0-qtbug-61521/src/core/api/qtbug-60565.cpp
--- qtwebengine-opensource-src-5.9.0/src/core/api/qtbug-60565.cpp 2017-05-19 06:22:04.000000000 +0200
-+++ qtwebengine-opensource-src-5.9.0-qtbug-60565-c-symbols/src/core/api/qtbug-60565.cpp 2017-06-25 22:33:28.508223362 +0200
++++ qtwebengine-opensource-src-5.9.0-qtbug-61521/src/core/api/qtbug-60565.cpp 2017-06-25 22:33:28.508223362 +0200
@@ -39,6 +39,8 @@
#include <new>
7 years, 4 months
[x264] Update x264 to x264-0.148-20170521-aaa9aa8
by Sérgio M. Basto
commit a9dbfde90925f95fc67d1ce5640b066dba021513
Author: Sérgio M. Basto <sergio(a)serjux.com>
Date: Mon Jun 26 23:49:58 2017 +0100
Update x264 to x264-0.148-20170521-aaa9aa8
.gitignore | 1 +
sources | 2 +-
x264.spec | 11 +++++++----
3 files changed, 9 insertions(+), 5 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 9a2673d..17e043b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -5,3 +5,4 @@ x264-0.148-20160118-5c65704.tar.bz2
/x264-0.148-20161201-4d5c8b0.tar.bz2
/x264-0.148-20170121-97eaef2.tar.bz2
/x264-0.148-20170519-d32d7bf.tar.bz2
+/x264-0.148-20170521-aaa9aa8.tar.bz2
diff --git a/sources b/sources
index 9d45765..7123f7e 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-d1ede9cb29c9e6972216ed99f663c5dc x264-0.148-20170519-d32d7bf.tar.bz2
+4fcea0ce575c7955486bc4ae3867f62c x264-0.148-20170521-aaa9aa8.tar.bz2
diff --git a/x264.spec b/x264.spec
index e8630f3..17b53ad 100644
--- a/x264.spec
+++ b/x264.spec
@@ -1,7 +1,7 @@
-# globals for x264-0.148-20170519-d32d7bf.tar.bz2
+# globals for x264-0.148-20170521-aaa9aa8.tar.bz2
%global api 148
-%global gitdate 20170519
-%global gitversion d32d7bf
+%global gitdate 20170521
+%global gitversion aaa9aa8
%global snapshot %{gitdate}-%{gitversion}
%global gver .%{gitdate}git%{gitversion}
@@ -31,7 +31,7 @@
Summary: H264/AVC video streams encoder
Name: x264
Version: 0.%{api}
-Release: 20%{?gver}%{?_with_bootstrap:_bootstrap}%{?dist}
+Release: 21%{?gver}%{?_with_bootstrap:_bootstrap}%{?dist}
License: GPLv2+
URL: https://www.videolan.org/developers/x264.html
Source0: %{name}-0.%{api}-%{snapshot}.tar.bz2
@@ -201,6 +201,9 @@ install -pm644 generic/{AUTHORS,COPYING} %{buildroot}%{_pkgdocdir}/
%endif
%changelog
+* Mon Jun 26 2017 Sérgio Basto <sergio(a)serjux.com> - 0.148-21.20170521gitaaa9aa8
+- Update x264 to x264-0.148-20170521-aaa9aa8
+
* Mon May 22 2017 Sérgio Basto <sergio(a)serjux.com> - 0.148-20.20170519gitd32d7bf
- Update x264 to x264-0.148-20170519-d32d7bf
7 years, 4 months
[ffmpeg/f24] Updated to 3.1.9
by Julian Sikorski
commit e09870f47e075a2b3e7599cb00ee67d94ac81c0b
Author: Julian Sikorski <belegdol(a)fedoraproject.org>
Date: Mon Jun 26 08:33:40 2017 +0200
Updated to 3.1.9
.gitignore | 1 +
ffmpeg.spec | 5 ++++-
sources | 2 +-
3 files changed, 6 insertions(+), 2 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index ab67a26..2176cb3 100644
--- a/.gitignore
+++ b/.gitignore
@@ -5,3 +5,4 @@ ffmpeg-2.8.7.tar.xz
/ffmpeg-3.1.6.tar.xz
/ffmpeg-3.1.7.tar.xz
/ffmpeg-3.1.8.tar.xz
+/ffmpeg-3.1.9.tar.xz
diff --git a/ffmpeg.spec b/ffmpeg.spec
index 341c12f..b4696d6 100644
--- a/ffmpeg.spec
+++ b/ffmpeg.spec
@@ -19,7 +19,7 @@
Summary: Digital VCR and streaming server
Name: ffmpeg
-Version: 3.1.8
+Version: 3.1.9
Release: 1%{?date}%{?date:git}%{?rel}%{?dist}
%if 0%{?_with_amr} || 0%{?_with_gmp}
License: GPLv3+
@@ -329,6 +329,9 @@ install -pm755 tools/qt-faststart $RPM_BUILD_ROOT%{_bindir}
%changelog
+* Mon Jun 26 2017 Julian Sikorski <belegdol(a)fedoraproject.org> - 3.1.9-1
+- Updated to 3.1.9
+
* Wed May 17 2017 Leigh Scott <leigh123linux(a)googlemail.com> - 3.1.8-1
- Updated to 3.1.8
diff --git a/sources b/sources
index ddc09af..b82bfed 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-7a7d8a9a3a05e51882178f45841da44b ffmpeg-3.1.8.tar.xz
+f7fb77e81502624b98f5d9848cfbfe02 ffmpeg-3.1.9.tar.xz
7 years, 5 months
[ffmpeg/f25] Updated to 3.1.9
by Julian Sikorski
commit 6f283a92da836dc61b77403c026c93e44656d6d0
Author: Julian Sikorski <belegdol(a)fedoraproject.org>
Date: Mon Jun 26 08:33:40 2017 +0200
Updated to 3.1.9
.gitignore | 1 +
ffmpeg.spec | 5 ++++-
sources | 2 +-
3 files changed, 6 insertions(+), 2 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index b39fb6f..63dae20 100644
--- a/.gitignore
+++ b/.gitignore
@@ -9,3 +9,4 @@ ffmpeg-2.8.7.tar.xz
/ffmpeg-3.1.6.tar.xz
/ffmpeg-3.1.7.tar.xz
/ffmpeg-3.1.8.tar.xz
+/ffmpeg-3.1.9.tar.xz
diff --git a/ffmpeg.spec b/ffmpeg.spec
index 2584870..3482740 100644
--- a/ffmpeg.spec
+++ b/ffmpeg.spec
@@ -19,7 +19,7 @@
Summary: Digital VCR and streaming server
Name: ffmpeg
-Version: 3.1.8
+Version: 3.1.9
Release: 1%{?date}%{?date:git}%{?rel}%{?dist}
%if 0%{?_with_amr} || 0%{?_with_gmp}
License: GPLv3+
@@ -329,6 +329,9 @@ install -pm755 tools/qt-faststart $RPM_BUILD_ROOT%{_bindir}
%changelog
+* Mon Jun 26 2017 Julian Sikorski <belegdol(a)fedoraproject.org> - 3.1.9-1
+- Updated to 3.1.9
+
* Wed May 17 2017 Leigh Scott <leigh123linux(a)googlemail.com> - 3.1.8-1
- Updated to 3.1.8
diff --git a/sources b/sources
index ddc09af..b82bfed 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-7a7d8a9a3a05e51882178f45841da44b ffmpeg-3.1.8.tar.xz
+f7fb77e81502624b98f5d9848cfbfe02 ffmpeg-3.1.9.tar.xz
7 years, 5 months
[qt5-qtwebengine-freeworld] Fix broken binary compatibility for C memory management functions
by Kevin Kofler
commit f274866ee24165f68c0a5d1556ddf494902b0dd0
Author: Kevin Kofler <kevin.kofler(a)chello.at>
Date: Mon Jun 26 00:28:43 2017 +0200
Fix broken binary compatibility for C memory management functions
* Sun Jun 25 2017 Kevin Kofler <Kevin(a)tigcc.ticalc.org> - 5.9.0-2
- Fix broken binary compatibility for C memory management functions (incomplete
upstream fix for QTBUG-60565)
qt5-qtwebengine-freeworld.spec | 10 +-
...pensource-src-5.9.0-qtbug-60565-c-symbols.patch | 162 +++++++++++++++++++++
2 files changed, 171 insertions(+), 1 deletion(-)
---
diff --git a/qt5-qtwebengine-freeworld.spec b/qt5-qtwebengine-freeworld.spec
index 2ef9dec..d6e9646 100644
--- a/qt5-qtwebengine-freeworld.spec
+++ b/qt5-qtwebengine-freeworld.spec
@@ -44,7 +44,7 @@
Summary: Qt5 - QtWebEngine components (freeworld version)
Name: qt5-qtwebengine-freeworld
Version: 5.9.0
-Release: 1%{?dist}
+Release: 2%{?dist}
%global major_minor %(echo %{version} | cut -d. -f-2)
%global major %(echo %{version} | cut -d. -f1)
@@ -99,6 +99,9 @@ Patch20: qtwebengine-opensource-src-5.8.0-qt57.patch
Patch21: qtwebengine-opensource-src-5.9.0-gn-bootstrap-verbose.patch
# Fix src/3rdparty/chromium/build/linux/unbundle/re2.gn
Patch22: qtwebengine-opensource-src-5.9.0-system-re2.patch
+# Fix broken binary compatibility for C memory management functions (incomplete
+# upstream fix for QTBUG-60565)
+Patch23: qtwebengine-opensource-src-5.9.0-qtbug-60565-c-symbols.patch
# Backport upstream patch to fix GN FTBFS on aarch64 (QTBUG-61128)
# https://codereview.qt-project.org/196178
Patch100: qtwebengine-opensource-src-5.9.0-gn-aarch64.patch
@@ -329,6 +332,7 @@ This version is compiled with support for patent-encumbered codecs enabled.
%patch20 -p1 -b .qt57
%patch21 -p1 -b .gn-bootstrap-verbose
%patch22 -p1 -b .system-re2
+%patch23 -p1 -b .qtbug-60565-c-symbols
%patch100 -p1 -b .gn-aarch64
%patch101 -p1 -b .aarch64-gcc-toolchain
# fix // in #include in content/renderer/gpu to avoid debugedit failure
@@ -409,6 +413,10 @@ echo "%{_libdir}/%{name}" \
%config(noreplace) %{_sysconfdir}/ld.so.conf.d/%{name}-%{_arch}.conf
%changelog
+* Sun Jun 25 2017 Kevin Kofler <Kevin(a)tigcc.ticalc.org> - 5.9.0-2
+- Fix broken binary compatibility for C memory management functions (incomplete
+ upstream fix for QTBUG-60565)
+
* Sun Jun 18 2017 Kevin Kofler <Kevin(a)tigcc.ticalc.org> - 5.9.0-1
- Update to 5.9.0
- Update version numbers of bundled stuff
diff --git a/qtwebengine-opensource-src-5.9.0-qtbug-60565-c-symbols.patch b/qtwebengine-opensource-src-5.9.0-qtbug-60565-c-symbols.patch
new file mode 100644
index 0000000..35edb0c
--- /dev/null
+++ b/qtwebengine-opensource-src-5.9.0-qtbug-60565-c-symbols.patch
@@ -0,0 +1,162 @@
+diff -ur qtwebengine-opensource-src-5.9.0/src/core/api/qtbug-60565.cpp qtwebengine-opensource-src-5.9.0-qtbug-60565-c-symbols/src/core/api/qtbug-60565.cpp
+--- qtwebengine-opensource-src-5.9.0/src/core/api/qtbug-60565.cpp 2017-05-19 06:22:04.000000000 +0200
++++ qtwebengine-opensource-src-5.9.0-qtbug-60565-c-symbols/src/core/api/qtbug-60565.cpp 2017-06-25 22:33:28.508223362 +0200
+@@ -39,6 +39,8 @@
+
+ #include <new>
+ #include <unistd.h>
++#include <stdlib.h>
++#include <malloc.h>
+
+ #if defined(__LP64__)
+ # define SIZE_T_MANGLING "m"
+@@ -47,6 +49,7 @@
+ #endif
+
+ #define SHIM_ALIAS_SYMBOL(fn) __attribute__((weak, alias(#fn)))
++#define SHIM_HIDDEN __attribute__ ((visibility ("hidden")))
+
+ extern "C" {
+
+@@ -82,26 +85,100 @@
+ void __ShimCppDeleteArrayNoThrow(void* address, const std::nothrow_t&) noexcept
+ SHIM_ALIAS_SYMBOL(ShimCppDeleteArray);
+
++__asm__(".symver __ShimMalloc, malloc@Qt_5");
++void* __ShimMalloc(size_t size) noexcept
++ SHIM_ALIAS_SYMBOL(ShimMalloc);
++
++__asm__(".symver __ShimCalloc, calloc@Qt_5");
++void* __ShimCalloc(size_t n, size_t size) noexcept
++ SHIM_ALIAS_SYMBOL(ShimCalloc);
++
++__asm__(".symver __ShimRealloc, realloc@Qt_5");
++void* __ShimRealloc(void* address, size_t size) noexcept
++ SHIM_ALIAS_SYMBOL(ShimRealloc);
++
++__asm__(".symver __ShimMemalign, memalign@Qt_5");
++void* __ShimMemalign(size_t alignment, size_t size) noexcept
++ SHIM_ALIAS_SYMBOL(ShimMemalign);
++
++__asm__(".symver __ShimPosixMemalign, posix_memalign@Qt_5");
++int __ShimPosixMemalign(void** res, size_t alignment, size_t size) noexcept
++ SHIM_ALIAS_SYMBOL(ShimPosixMemalign);
++
++__asm__(".symver __ShimValloc, valloc@Qt_5");
++void* __ShimValloc(size_t size) noexcept
++ SHIM_ALIAS_SYMBOL(ShimValloc);
++
++__asm__(".symver __ShimPvalloc, pvalloc@Qt_5");
++void* __ShimPvalloc(size_t size) noexcept
++ SHIM_ALIAS_SYMBOL(ShimPvalloc);
++
++__asm__(".symver __ShimFree, free@Qt_5");
++void __ShimFree(void* address) noexcept
++ SHIM_ALIAS_SYMBOL(ShimFree);
++
+ static void* __shimCppNew(size_t size);
+ static void* __shimCppNewArray(size_t size);
+ static void __shimCppDelete(void *address);
+ static void __shimCppDeleteArray(void *address);
++static void* __shimMalloc(size_t size) noexcept;
++static void* __shimCalloc(size_t n, size_t size) noexcept;
++static void* __shimRealloc(void* address, size_t size) noexcept;
++static void* __shimMemalign(size_t alignment, size_t size) noexcept;
++static int __shimPosixMemalign(void** res, size_t alignment, size_t size)
++ noexcept;
++static void* __shimValloc(size_t size) noexcept;
++static void* __shimPvalloc(size_t size) noexcept;
++static void __shimFree(void* address) noexcept;
+
+-static void* ShimCppNew(size_t size) {
++SHIM_HIDDEN void* ShimCppNew(size_t size) {
+ return __shimCppNew(size);
+ }
+
+-static void* ShimCppNewArray(size_t size) {
++SHIM_HIDDEN void* ShimCppNewArray(size_t size) {
+ return __shimCppNewArray(size);
+ }
+
+-static void ShimCppDelete(void* address) {
++SHIM_HIDDEN void ShimCppDelete(void* address) {
+ __shimCppDelete(address);
+ }
+
+-static void ShimCppDeleteArray(void* address) {
++SHIM_HIDDEN void ShimCppDeleteArray(void* address) {
+ __shimCppDeleteArray(address);
+ }
++
++SHIM_HIDDEN void* ShimMalloc(size_t size) noexcept {
++ return __shimMalloc(size);
++}
++
++SHIM_HIDDEN void* ShimCalloc(size_t n, size_t size) noexcept {
++ return __shimCalloc(n, size);
++}
++
++SHIM_HIDDEN void* ShimRealloc(void* address, size_t size) noexcept {
++ return __shimRealloc(address, size);
++}
++
++SHIM_HIDDEN void* ShimMemalign(size_t alignment, size_t size) noexcept {
++ return __shimMemalign(alignment, size);
++}
++
++SHIM_HIDDEN int ShimPosixMemalign(void** res, size_t alignment, size_t size)
++ noexcept {
++ return __shimPosixMemalign(res, alignment, size);
++}
++
++SHIM_HIDDEN void* ShimValloc(size_t size) noexcept {
++ return __shimValloc(size);
++}
++
++SHIM_HIDDEN void* ShimPvalloc(size_t size) noexcept {
++ return __shimPvalloc(size);
++}
++
++SHIM_HIDDEN void ShimFree(void* address) noexcept {
++ __shimFree(address);
++}
+ } // extern "C"
+
+ static void* __shimCppNew(size_t size) {
+@@ -119,3 +196,36 @@
+ static void __shimCppDeleteArray(void* address) {
+ operator delete[](address);
+ }
++
++static void* __shimMalloc(size_t size) noexcept {
++ return malloc(size);
++}
++
++static void* __shimCalloc(size_t n, size_t size) noexcept {
++ return calloc(n, size);
++}
++
++static void* __shimRealloc(void* address, size_t size) noexcept {
++ return realloc(address, size);
++}
++
++static void* __shimMemalign(size_t alignment, size_t size) noexcept {
++ return memalign(alignment, size);
++}
++
++static int __shimPosixMemalign(void** res, size_t alignment, size_t size)
++ noexcept {
++ return posix_memalign(res, alignment, size);
++}
++
++static void* __shimValloc(size_t size) noexcept {
++ return valloc(size);
++}
++
++static void* __shimPvalloc(size_t size) noexcept {
++ return pvalloc(size);
++}
++
++static void __shimFree(void* address) noexcept {
++ free(address);
++}
7 years, 5 months
[xvst] Update to recent git version 2.6-1.20170307git73d3f51 Dropped patch7 Add BR qt5-qtwebengine-devel Ad
by Martin Gansser
commit 229f1a34311ce03120f877ceab0d9cdf67115190
Author: Martin Gansser <mgansser(a)alice.de>
Date: Sat Jun 24 21:02:06 2017 +0200
Update to recent git version 2.6-1.20170307git73d3f51
Dropped patch7
Add BR qt5-qtwebengine-devel
Add ExcludeArch: ppc64 ppc64le
xvst.spec | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/xvst.spec b/xvst.spec
index 8cd9310..f21a22b 100644
--- a/xvst.spec
+++ b/xvst.spec
@@ -19,7 +19,7 @@ Patch4: myvideo.patch
Patch5: sunporno.patch
Patch6: wat.tv.patch
-ExcludeArch: ppc64
+ExcludeArch: ppc64 ppc64le
BuildRequires: desktop-file-utils
BuildRequires: qt5-qtbase-devel
@@ -107,7 +107,7 @@ update-desktop-database &> /dev/null || :
- Update to recent git version 2.6-1.20170307git73d3f51
- Dropped patch7
- Add BR qt5-qtwebengine-devel
-- Add ExcludeArch: ppc64
+- Add ExcludeArch: ppc64 ppc64le
* Tue Mar 21 2017 RPM Fusion Release Engineering <kwizart(a)rpmfusion.org> - 2.5.2-6.20140804gitcbfafe4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
7 years, 5 months
[xvst] Update to recent git version 2.6-1.20170307git73d3f51 Dropped patch7 Add BR qt5-qtwebengine-devel Ad
by Martin Gansser
commit ffb0c3331b0f2aa893c1235b34de862a2d717b1a
Author: Martin Gansser <mgansser(a)alice.de>
Date: Sat Jun 24 20:39:53 2017 +0200
Update to recent git version 2.6-1.20170307git73d3f51
Dropped patch7
Add BR qt5-qtwebengine-devel
Add ExcludeArch: ppc64
xvst.spec | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
---
diff --git a/xvst.spec b/xvst.spec
index b90d54a..8cd9310 100644
--- a/xvst.spec
+++ b/xvst.spec
@@ -19,6 +19,8 @@ Patch4: myvideo.patch
Patch5: sunporno.patch
Patch6: wat.tv.patch
+ExcludeArch: ppc64
+
BuildRequires: desktop-file-utils
BuildRequires: qt5-qtbase-devel
BuildRequires: qt5-qtwebkit-devel
@@ -103,8 +105,9 @@ update-desktop-database &> /dev/null || :
%changelog
* Sat Jun 24 2017 Martin Gansser <linux4martin(a)gmx.de> 2.6-1.20170307git73d3f51
- Update to recent git version 2.6-1.20170307git73d3f51
-- Add BR qt5-qtwebengine-devel
- Dropped patch7
+- Add BR qt5-qtwebengine-devel
+- Add ExcludeArch: ppc64
* Tue Mar 21 2017 RPM Fusion Release Engineering <kwizart(a)rpmfusion.org> - 2.5.2-6.20140804gitcbfafe4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
7 years, 5 months