[OpenEXR_Viewers-nonfree] openexr_viewers-gcc-11-fixes.patch
by Nicolas Chauvet
commit c9ef5b56745c28df481ef5ba572483f80f7390dc
Author: Nicolas Chauvet <kwizart(a)gmail.com>
Date: Mon Jan 3 17:00:22 2022 +0100
openexr_viewers-gcc-11-fixes.patch
openexr_viewers-gcc-11-fixes.patch | 67 ++++++++++++++++++++++++++++++++++++++
1 file changed, 67 insertions(+)
---
diff --git a/openexr_viewers-gcc-11-fixes.patch b/openexr_viewers-gcc-11-fixes.patch
new file mode 100644
index 0000000..24e8334
--- /dev/null
+++ b/openexr_viewers-gcc-11-fixes.patch
@@ -0,0 +1,67 @@
+diff -ur openexr_viewers-2.3.0/exrdisplay/ImageView.cpp openexr_viewers-2.3.0.orig/exrdisplay/ImageView.cpp
+--- openexr_viewers-2.3.0/exrdisplay/ImageView.cpp 2022-01-03 16:09:36.458801342 +0100
++++ openexr_viewers-2.3.0.orig/exrdisplay/ImageView.cpp 2022-01-03 16:06:43.121271236 +0100
+@@ -50,6 +50,7 @@
+
+ #include <algorithm>
+ #include <stdio.h>
++#include <limits>
+
+ #if defined PLATFORM_WINDOWS || defined _WIN32
+ #include <windows.h>
+@@ -170,8 +171,8 @@
+ //
+ // find zmax and zmin values of deep data to set bound
+ //
+- float zmax = limits<float>::min();
+- float zmin = limits<float>::max();
++ float zmax = std::numeric_limits<float>::min();
++ float zmin = std::numeric_limits<float>::max();
+ _maxCount = 0;
+
+ for (int k = 0; k < _zsize; k++)
+diff -ur openexr_viewers-2.3.0/exrdisplay/main.cpp openexr_viewers-2.3.0.orig/exrdisplay/main.cpp
+--- openexr_viewers-2.3.0/exrdisplay/main.cpp 2022-01-03 16:09:36.460801325 +0100
++++ openexr_viewers-2.3.0.orig/exrdisplay/main.cpp 2022-01-03 16:05:04.747106129 +0100
+@@ -69,6 +69,7 @@
+ #include <algorithm>
+ #include <string>
+ #include <exception>
++#include <limits>
+ #include <string.h>
+ #include <stdlib.h>
+
+@@ -781,7 +782,7 @@
+
+ int lx = -1;
+ int ly = -1;
+- float farPlane = limits<float>::max(); //default value of zfar plane
++ float farPlane = numeric_limits<float>::max(); //default value of zfar plane
+ bool deepComp = true; // attempt to composite deep images together
+
+ //
+diff -ur openexr_viewers-2.3.0/exrdisplay/scaleImage.cpp openexr_viewers-2.3.0.orig/exrdisplay/scaleImage.cpp
+--- openexr_viewers-2.3.0/exrdisplay/scaleImage.cpp 2022-01-03 16:09:36.458801342 +0100
++++ openexr_viewers-2.3.0.orig/exrdisplay/scaleImage.cpp 2022-01-03 16:09:04.024076387 +0100
+@@ -195,8 +195,8 @@
+ void
+ normalizePixels (int dw, int dh, Array<Rgba> &pixels)
+ {
+- float pMax = -IMATH::limits<float>::max ();
+- float pMin = IMATH::limits<float>::max ();
++ float pMax = std::numeric_limits<float>::max ();
++ float pMin = std::numeric_limits<float>::min ();
+
+ for (int i = 0; i < dw * dh; ++i)
+ {
+diff -ur openexr_viewers-2.3.0/playexr/FileReadingThread.cpp openexr_viewers-2.3.0.orig/playexr/FileReadingThread.cpp
+--- openexr_viewers-2.3.0/playexr/FileReadingThread.cpp 2022-01-03 16:09:36.454801376 +0100
++++ openexr_viewers-2.3.0.orig/playexr/FileReadingThread.cpp 2022-01-03 16:01:09.931103948 +0100
+@@ -41,6 +41,7 @@
+ #include "FileReadingThread.h"
+ #include "fileNameForFrame.h"
+ #include "ImageBuffers.h"
++#include <ImfHeader.h>
+ #include <ImfInputFile.h>
+ #include <Iex.h>
+ #include <iostream>
2 years, 10 months
[OpenEXR_Viewers-nonfree] Add openexr_viewers-imfheader.patch
by Nicolas Chauvet
commit 721b63b3121b37e8b0fc7288a54d7e5ce3dd9b4f
Author: Nicolas Chauvet <kwizart(a)gmail.com>
Date: Mon Jan 3 17:00:08 2022 +0100
Add openexr_viewers-imfheader.patch
openexr_viewers-imfheader.patch | 36 ++++++++++++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
---
diff --git a/openexr_viewers-imfheader.patch b/openexr_viewers-imfheader.patch
new file mode 100644
index 0000000..42c6282
--- /dev/null
+++ b/openexr_viewers-imfheader.patch
@@ -0,0 +1,36 @@
+diff -ur openexr_viewers-2.3.0/exrdisplay/ImageView.cpp openexr_viewers-2.3.0-header/exrdisplay/ImageView.cpp
+--- openexr_viewers-2.3.0/exrdisplay/ImageView.cpp 2022-01-03 16:33:02.598890275 +0100
++++ openexr_viewers-2.3.0-header/exrdisplay/ImageView.cpp 2022-01-03 16:32:38.322095618 +0100
+@@ -44,7 +44,7 @@
+
+ #include <ImathMath.h>
+ #include <ImathFun.h>
+-#include <ImathLimits.h>
++#include <ImfHeader.h>
+ #include <halfFunction.h>
+
+
+diff -ur openexr_viewers-2.3.0/exrdisplay/main.cpp openexr_viewers-2.3.0-header/exrdisplay/main.cpp
+--- openexr_viewers-2.3.0/exrdisplay/main.cpp 2022-01-03 16:33:02.598890275 +0100
++++ openexr_viewers-2.3.0-header/exrdisplay/main.cpp 2022-01-03 16:32:38.324095601 +0100
+@@ -63,7 +63,7 @@
+ #include <ImfArray.h>
+ #include <ImfThreading.h>
+ #include <ImfMultiPartInputFile.h>
+-#include <ImathLimits.h>
++#include <ImfHeader.h>
+
+ #include <iostream>
+ #include <algorithm>
+diff -ur openexr_viewers-2.3.0/exrdisplay/scaleImage.cpp openexr_viewers-2.3.0-header/exrdisplay/scaleImage.cpp
+--- openexr_viewers-2.3.0/exrdisplay/scaleImage.cpp 2022-01-03 16:33:02.598890275 +0100
++++ openexr_viewers-2.3.0-header/exrdisplay/scaleImage.cpp 2022-01-03 16:32:38.323095609 +0100
+@@ -41,7 +41,7 @@
+
+ #include "scaleImage.h"
+
+-#include <ImathLimits.h>
++#include <ImfHeader.h>
+ #include <ImathFun.h>
+ #include <algorithm>
+ #include <math.h>
2 years, 10 months
[xroar/f34] new version
by Andrea Musuruane
Summary of changes:
299b997... new version (*)
(*) This commit already existed in another branch; no separate mail sent
2 years, 10 months
[xroar/f35] new version
by Andrea Musuruane
Summary of changes:
299b997... new version (*)
(*) This commit already existed in another branch; no separate mail sent
2 years, 10 months
[xroar] new version
by Andrea Musuruane
commit 299b997a6bd1c2bb50d3e1305b927e321350cc9e
Author: Andrea Musuruane <musuruan(a)gmail.com>
Date: Sun Jan 2 18:30:28 2022 +0100
new version
.gitignore | 1 +
sources | 2 +-
xroar.spec | 5 ++++-
3 files changed, 6 insertions(+), 2 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 0396635..899207e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -21,3 +21,4 @@ dragon.rom
/xroar-1.0.2.tar.gz
/xroar-1.0.4.tar.gz
/xroar-1.0.5.tar.gz
+/xroar-1.0.6.tar.gz
diff --git a/sources b/sources
index bdc792e..68b3068 100644
--- a/sources
+++ b/sources
@@ -1,2 +1,2 @@
SHA512 (dragon.rom) = bbe3dc286a828acd745155ad8b2f8f1dc7d674c10deae619758662a4f45feefd1d1aea6b8b09f4c4db8b40cbaf475ab540d88d8286e1e4f8478692ad08979285
-SHA512 (xroar-1.0.5.tar.gz) = 54594b29c2644cd62b42def85dc1ed4d51fda143f3d670fd52414f5bf2ab110ea4209bd28f440d403aa7f65bd4ee819be4ce165189d9cfa298a623d5622acec9
+SHA512 (xroar-1.0.6.tar.gz) = aa9e8a74820f024596706cd1c4b0e476aee392f37a54fe0dc9e710ecc29fef4a3e0d04955d1969a0195b3210e1203a7a442c5c3b81d5689f71e1371865bbf827
diff --git a/xroar.spec b/xroar.spec
index 732909f..e1acbe5 100644
--- a/xroar.spec
+++ b/xroar.spec
@@ -1,5 +1,5 @@
Name: xroar
-Version: 1.0.5
+Version: 1.0.6
Release: 1%{?dist}
Summary: A Dragon 32, Dragon 64 and Tandy CoCo emulator
License: GPLv3+
@@ -98,6 +98,9 @@ rm -f %{buildroot}%{_infodir}/dir
%changelog
+* Sat Jan 01 2022 Andrea Musuruane <musuruan(a)gmail.com> - 1.0.6-1
+- new version
+
* Fri Dec 24 2021 Andrea Musuruane <musuruan(a)gmail.com> - 1.0.5-1
- new version
2 years, 10 months
[telegram-desktop/f35] Updated to version 3.4.2.
by Vitaly Zaitsev
commit a81c732a5251c3ef54a8ca750415a888cee8fb42
Author: Vitaly Zaitsev <vitaly(a)easycoding.org>
Date: Sat Jan 1 13:10:00 2022 +0100
Updated to version 3.4.2.
.gitignore | 1 +
sources | 2 +-
telegram-desktop.spec | 9 +++++++--
3 files changed, 9 insertions(+), 3 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 3d6d8a7..863f26b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -168,3 +168,4 @@
/tdesktop-3.2.5-full.tar.gz
/tdesktop-3.3.0-full.tar.gz
/tdesktop-3.4.0-full.tar.gz
+/tdesktop-3.4.2-full.tar.gz
diff --git a/sources b/sources
index bea7f72..9e9a2df 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (tdesktop-3.4.0-full.tar.gz) = 3ad3beb8a63bae98eb85127fdc1cce55baba0f9b0475904e54d4dc3a7679fbbb93e737b98c22c0737ed16204abff0eedd770be0f522de6c9cf8901574cade2c4
+SHA512 (tdesktop-3.4.2-full.tar.gz) = 00cec3bcabea78bed516940d9b048c02227c816a6455714ef1f6ecf97418e86ecf0a534e5f72c3d48377299602b06000804ec5d8cd3a640441192da249f0266e
diff --git a/telegram-desktop.spec b/telegram-desktop.spec
index e3e95fd..538e25a 100644
--- a/telegram-desktop.spec
+++ b/telegram-desktop.spec
@@ -6,7 +6,7 @@
%global system_libtgvoip 0
%global system_rlottie 0
%global use_clang 0
-%global use_qt5 1
+%global use_qt5 0
# Telegram Desktop's constants...
%global appname tdesktop
@@ -25,7 +25,7 @@
%endif
Name: telegram-desktop
-Version: 3.4.0
+Version: 3.4.2
Release: 1%{?dist}
# Application and 3rd-party modules licensing:
@@ -138,6 +138,7 @@ BuildRequires: qt5-qtbase-static
BuildRequires: cmake(PlasmaWaylandProtocols)
BuildRequires: cmake(Qt6Concurrent)
BuildRequires: cmake(Qt6WaylandClient)
+BuildRequires: pkgconfig(wayland-protocols)
BuildRequires: qt6-qtbase-static
Provides: bundled(kf5-kwayland) = 5.89.0
%endif
@@ -262,6 +263,10 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/%{launcher}.desktop
%{_metainfodir}/%{launcher}.metainfo.xml
%changelog
+* Sat Jan 01 2022 Vitaly Zaitsev <vitaly(a)easycoding.org> - 3.4.2-1
+- Updated to version 3.4.2.
+- Build against Qt 6 as recommended by the upstream.
+
* Thu Dec 30 2021 Vitaly Zaitsev <vitaly(a)easycoding.org> - 3.4.0-1
- Updated to version 3.4.0.
2 years, 10 months