[xmltv/el8] (14 commits) ...Pull in upstream patches to resolve grabber issues and remove local fixup
by Gary Buhrmaster
Summary of changes:
57f0fcd... * Fri May 9 2014 Richard Shaw <hobbes1069(a)gmail.com> - 0.5 (*)
762612a... Update to latest (*)
67a392d... Squashed commit of the following: (*)
4c0e487... - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass (*)
16281e1... Update for XMLTV 0.6.1 (*)
599eb3d... Merge commit 'c2e16c0511f75019757e1acd2b3' into el7 (*)
f53035f... Merge branch 'master' into el7 (*)
d0948ca... Fix broken requires version (rfbz#5243) (*)
c9542ba... fix commit mistake (*)
5a991a2... change whitespace to be consistent (cosmetic only) (*)
474643a... Add explicit perl-interpreter buildrequires (effective no-o (*)
451d517... Fix el6 dependencies by not building tv_grab_zz_sdjson_sqli (*)
764a8c3... Correct permissions of installed files (*)
fd7c06a... Pull in upstream patches to resolve grabber issues and remo (*)
(*) This commit already existed in another branch; no separate mail sent
5 years, 6 months
[smplayer] Update smplayer to 19.5.0
by Sérgio M. Basto
commit 5116d2575b01aecca5054555d654590173bfc6ca
Author: Sérgio M. Basto <sergio(a)serjux.com>
Date: Sun May 19 06:22:40 2019 +0100
Update smplayer to 19.5.0
smplayer-19.5.0-webserver.patch | 15 +++++++++++++++
smplayer.spec | 2 ++
2 files changed, 17 insertions(+)
---
diff --git a/smplayer-19.5.0-webserver.patch b/smplayer-19.5.0-webserver.patch
new file mode 100644
index 0000000..f667906
--- /dev/null
+++ b/smplayer-19.5.0-webserver.patch
@@ -0,0 +1,15 @@
+diff -rup ./webserver.orig/mongoose.c ./webserver/mongoose.c
+--- ./webserver.orig/mongoose.c 2018-05-27 17:59:44.000000000 +0100
++++ ./webserver/mongoose.c 2019-05-19 06:02:13.744763458 +0100
+@@ -7821,9 +7821,9 @@ MG_INTERNAL int mg_uri_to_local_path(str
+ }
+
+ out:
+- LOG(LL_DEBUG,
++/* LOG(LL_DEBUG,
+ ("'%.*s' -> '%s' + '%.*s'", (int) hm->uri.len, hm->uri.p,
+- *local_path ? *local_path : "", (int) remainder->len, remainder->p));
++ *local_path ? *local_path : "", (int) remainder->len, remainder->p)); */
+ return ok;
+ }
+
diff --git a/smplayer.spec b/smplayer.spec
index 122841f..4885ade 100644
--- a/smplayer.spec
+++ b/smplayer.spec
@@ -17,6 +17,7 @@ Source4: http://downloads.sourceforge.net/smplayer/smplayer-skins-%{smpla
Patch0: smplayer-0.8.3-desktop-files.patch
Patch2: smplayer-14.9.0.6966-system-qtsingleapplication.patch
Patch3: smtube-18.11.0-system-qtsingleapplication.patch
+Patch4: smplayer-19.5.0-webserver.patch
BuildRequires: desktop-file-utils
BuildRequires: gcc-c++
@@ -101,6 +102,7 @@ pushd smtube-%{smtube_ver}
# correction for wrong-file-end-of-line-encoding on smtube
%{__sed} -i 's/\r//' *.txt
popd
+%patch4 -p1 -b .webserver
# correction for wrong-file-end-of-line-encoding
%{__sed} -i 's/\r//' *.txt
5 years, 6 months
[telegram-desktop/f30] Updated changelog entry.
by Vitaly Zaitsev
commit be063b5f62efcb2f88ba1e02c4767fa88cdd4843
Author: Vitaly Zaitsev <vitaly(a)easycoding.org>
Date: Sat May 18 23:26:22 2019 +0200
Updated changelog entry.
telegram-desktop.spec | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
---
diff --git a/telegram-desktop.spec b/telegram-desktop.spec
index 9038592..0fb6b94 100644
--- a/telegram-desktop.spec
+++ b/telegram-desktop.spec
@@ -201,7 +201,8 @@ appstream-util validate-relax --nonet %{buildroot}%{_metainfodir}/%{name}.appdat
%changelog
* Sat May 18 2019 Vitaly Zaitsev <vitaly(a)easycoding.org> - 1.7.0-2
-- Switched to clang as temporary workaround.
+- Switched to clang as a temporary workaround on Fedora 30+.
+- Disabled LTO optimizations.
* Thu May 09 2019 Vitaly Zaitsev <vitaly(a)easycoding.org> - 1.7.0-1
- Updated to 1.7.0.
5 years, 6 months
[telegram-desktop/f30] Use clang compiler only for Fedora 30+.
by Vitaly Zaitsev
commit aff64ecf90c6bc71b18a61784c5699d33336a999
Author: Vitaly Zaitsev <vitaly(a)easycoding.org>
Date: Sat May 18 23:17:25 2019 +0200
Use clang compiler only for Fedora 30+.
telegram-desktop.spec | 10 ++++++++--
1 file changed, 8 insertions(+), 2 deletions(-)
---
diff --git a/telegram-desktop.spec b/telegram-desktop.spec
index 1038ffc..9038592 100644
--- a/telegram-desktop.spec
+++ b/telegram-desktop.spec
@@ -1,6 +1,12 @@
-# Build conditionals...
+# Enable or disable build with GTK support...
%bcond_without gtk3
+
+# Enable or disable build using clang instead of gcc...
+%if 0%{?fedora} && 0%{?fedora} >= 30
%bcond_without clang
+%else
+%bcond_with clang
+%endif
# Telegram Desktop's constants...
%global appname tdesktop
@@ -89,7 +95,7 @@ BuildRequires: clang
BuildRequires: llvm
%endif
-%if 0%{?fedora} >= 30
+%if 0%{?fedora} && 0%{?fedora} >= 30
BuildRequires: minizip-compat-devel
%else
BuildRequires: minizip-devel
5 years, 6 months