[discord/el9] Update to 0.0.62
by Sérgio M. Basto
Summary of changes:
207c890... Update to 0.0.62 (*)
(*) This commit already existed in another branch; no separate mail sent
3 months, 3 weeks
[discord/f39] Update to 0.0.62
by Sérgio M. Basto
Summary of changes:
207c890... Update to 0.0.62 (*)
(*) This commit already existed in another branch; no separate mail sent
3 months, 3 weeks
[discord/f40] Update to 0.0.62
by Sérgio M. Basto
Summary of changes:
207c890... Update to 0.0.62 (*)
(*) This commit already existed in another branch; no separate mail sent
3 months, 3 weeks
[discord] Update to 0.0.62
by Sérgio M. Basto
commit 207c89074c4ecf74a7a2271ceb61c572b15a7f37
Author: Sérgio M. Basto <sergio(a)serjux.com>
Date: Wed Jul 31 13:56:00 2024 +0100
Update to 0.0.62
discord.spec | 5 ++++-
sources | 2 +-
2 files changed, 5 insertions(+), 2 deletions(-)
---
diff --git a/discord.spec b/discord.spec
index c9b89ce..733a9c5 100644
--- a/discord.spec
+++ b/discord.spec
@@ -6,7 +6,7 @@
%global __provides_exclude_from %{_libdir}/discord/.*\\.s
Name: discord
-Version: 0.0.61
+Version: 0.0.62
Release: 1%{?dist}
Summary: All-in-one voice and text chat
@@ -86,6 +86,9 @@ appstream-util validate-relax --nonet %{buildroot}%{_metainfodir}/%{name}.metain
%changelog
+* Wed Jul 31 2024 Sérgio Basto <sergio(a)serjux.com> - 0.0.62-1
+- Update to 0.0.62
+
* Tue Jul 23 2024 Sérgio Basto <sergio(a)serjux.com> - 0.0.61-1
- Update to 0.0.61
diff --git a/sources b/sources
index 3e4c689..3d38ad3 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (discord-0.0.61.tar.gz) = 2b7955e93f2352a244ab0838c24399b556174179eb3aa7ef8ed32d914f7ab1e49165cf8ab374b15c90bddd8ec8150146d2ebcc94c7e1aa8c914c56d4b6a03d29
+SHA512 (discord-0.0.62.tar.gz) = 6271382410340c0f38c4403af766fe18ea7548279f3bc75ebe748a75281c304d7738e2d857e208b8867a2330b2a9e22d292ad63421578db35b79e4d16267456f
3 months, 3 weeks
[yapeSDL] Updated to upstream 0.80.1
by Andrea Musuruane
commit 32ed2e2d637d96a3e558f8947e33af87e1a5ba95
Author: Andrea Musuruane <musuruan(a)gmail.com>
Date: Tue Jul 30 16:56:35 2024 +0200
Updated to upstream 0.80.1
.gitignore | 1 +
Plus4.png | Bin 456 -> 0 bytes
sources | 2 +-
yapeSDL-0.80.1-force_machine_switch.patch | 29 +++++++++++++++++++++
yapeSDL.spec | 41 +++++++++++++++---------------
5 files changed, 52 insertions(+), 21 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 3cae724..1c15de9 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,3 +2,4 @@ yapeSDL-0.58.2.zip
/yapeSDL-0.70.1.zip
/yapeSDL-0.70.2.tar.gz
/yapeSDL-0.71.2.tar.gz
+/yapeSDL-0.80.1.tar.gz
diff --git a/sources b/sources
index 52c0b88..e932c3c 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (yapeSDL-0.71.2.tar.gz) = bfa685c77c74ea80007bb1a9125585c5e7c7bd48ddf383a077fc3dec350fbc5b75f90cd4b6cb0141b94047cdc4f736d5722ea748c7ab4299bfc75fd204f70e4d
+SHA512 (yapeSDL-0.80.1.tar.gz) = 745f09b6153ca08b301903738bf138d678e72ca9cb17947df529ac98b87522b6b8b8f52ea75a5a16db293eb0d6924282f4ac54e1ec858e2ba9b03fb367da7ea5
diff --git a/yapeSDL-0.80.1-force_machine_switch.patch b/yapeSDL-0.80.1-force_machine_switch.patch
new file mode 100644
index 0000000..79af457
--- /dev/null
+++ b/yapeSDL-0.80.1-force_machine_switch.patch
@@ -0,0 +1,29 @@
+From f28839b5d51c9a86bfe850b2278db06daba42709 Mon Sep 17 00:00:00 2001
+From: calmopyrin <calmopyrin(a)users.noreply.github.com>
+Date: Sat, 20 Jul 2024 15:56:53 +0200
+Subject: [PATCH] Force machine switch
+
+Force switch when dialog window fails to show (Linux SDL issue)
+---
+ main.cpp | 8 +++++---
+ 1 file changed, 5 insertions(+), 3 deletions(-)
+
+diff --git a/main.cpp b/main.cpp
+index 0719799..e322ebf 100644
+--- a/main.cpp
++++ b/main.cpp
+@@ -852,9 +852,11 @@ static void confirmEmulationLevelChange(unsigned int shiftPressed)
+ NULL
+ };
+
+- if (SDL_ShowMessageBox(&messageboxdata, &buttonid) < 0)
+- SDL_Log("error opening window");
+- else if (buttonid == 0)
++ if (SDL_ShowMessageBox(&messageboxdata, &buttonid) < 0) {
++ SDL_Log("Error opening window: %s\n", SDL_GetError());
++ buttonid = 0;
++ }
++ if (buttonid == 0)
+ #endif
+ {
+ char name[64];
diff --git a/yapeSDL.spec b/yapeSDL.spec
index e92cb6a..59858d0 100644
--- a/yapeSDL.spec
+++ b/yapeSDL.spec
@@ -1,27 +1,20 @@
Name: yapeSDL
-Version: 0.71.2
-Release: 3%{?dist}
+Version: 0.80.1
+Release: 1%{?dist}
Summary: A Commodore 264 family (C16, plus/4 etc.) emulator
-License: GPLv2+
+License: GPL-2.0-or-later
URL: https://github.com/calmopyrin/yapesdl
Source: https://github.com/calmopyrin/yapesdl/archive/v%{version}.tar.gz#/%{name}...
Source1: %{name}.desktop
-# Icon taken from
-# http://ahlberg.deviantart.com/art/Commodore-Icons-70563314
-# License:
-# These icons are FREE! Feel free to use them in your applications,
-# on your site, signature on a forum or whatever.
-Source2: Plus4.png
-Source3: %{name}.appdata.xml
+Source2: %{name}.appdata.xml
+# Force switch when dialog window fails to show
+# https://github.com/calmopyrin/yapesdl/commit/f28839b5d51c9a86bfe850b2278d...
+Patch0: %{name}-0.80.1-force_machine_switch.patch
BuildRequires: gcc-c++
BuildRequires: SDL2-devel
-%if 0%{?fedora} >= 30
BuildRequires: minizip-compat-devel
-%else
-BuildRequires: minizip-devel
-%endif
BuildRequires: desktop-file-utils
BuildRequires: libappstream-glib
Requires: hicolor-icon-theme
@@ -47,12 +40,15 @@ Features:
- snapshots / savestates
%prep
-%setup -q -n yapesdl-%{version}
+%autosetup -n yapesdl-%{version} -p1
# Fix UTF-8 encoding
iconv --from=ISO-8859-1 --to=UTF-8 README.SDL > README.SDL.utf8
mv README.SDL.utf8 README.SDL
+# Remove bundled libs
+rm -rf zlib
+
# Fix unzip.h include path
sed -i 's!#include "zlib/unzip.h"!#include "minizip/unzip.h"!' archdep.cpp
@@ -85,23 +81,28 @@ desktop-file-install \
# Install icon
install -d %{buildroot}%{_datadir}/icons/hicolor/32x32/apps
-install -p -m 644 %{SOURCE2} %{buildroot}%{_datadir}/icons/hicolor/32x32/apps/%{name}.png
+install -p -m 644 plus4.xcassets/MacAppIcon.appiconset/icon_32x32.png \
+ %{buildroot}%{_datadir}/icons/hicolor/32x32/apps/%{name}.png
# Install AppData file
-install -d %{buildroot}%{_datadir}/metainfo
-install -p -m 644 %{SOURCE3} %{buildroot}%{_datadir}/metainfo
-appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/%{name}.appdata.xml
+install -d %{buildroot}%{_metainfodir}
+install -p -m 644 %{SOURCE2} %{buildroot}%{_metainfodir}
+appstream-util validate-relax --nonet \
+ %{buildroot}%{_metainfodir}/%{name}.appdata.xml
%files
%{_bindir}/yapesdl
%{_datadir}/applications/%{name}.desktop
%{_datadir}/icons/hicolor/32x32/apps/%{name}.png
-%{_datadir}/metainfo/%{name}.appdata.xml
+%{_metainfodir}/%{name}.appdata.xml
%doc Changes README.SDL
%license COPYING
%changelog
+* Tue Jul 30 2024 Andrea Musuruane <musuruan(a)gmail.com> - 0.80.1-1
+- Updated to upstream 0.80.1
+
* Sun Feb 04 2024 RPM Fusion Release Engineering <sergiomb(a)rpmfusion.org> - 0.71.2-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
3 months, 3 weeks
[mythtv-status] Fix a misspelling in the sysconfig file
by Göran Uddeborg
commit 15079edabc1886d2608ec2cbd494ca35be88ca42
Author: Göran Uddeborg <goeran(a)uddeborg.se>
Date: Tue Jul 30 10:44:28 2024 +0200
Fix a misspelling in the sysconfig file
sysconfig | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/sysconfig b/sysconfig
index 4dcb40a..a5302c6 100644
--- a/sysconfig
+++ b/sysconfig
@@ -1,7 +1,7 @@
# Configurations for the update of /etc/motd
# Set UPDATE_MOTD to "yes" to enable updates.
UPDATE_MOTD=yes
-# Specify a different defult host than localhost.
+# Specify a different default host than localhost.
# HOST=example.com
# Address to send health check results to.
# EMAIL=user(a)example.com
3 months, 3 weeks
[cinelerra-gg] Update to latest monthly release
by Leigh Scott
commit c79cc0affcd1a79089b557c3b326bae046d73175
Author: Leigh Scott <leigh123linux(a)gmail.com>
Date: Mon Jul 29 23:27:57 2024 +0100
Update to latest monthly release
.gitignore | 1 +
cinelerra-gg.spec | 5 ++++-
sources | 2 +-
3 files changed, 6 insertions(+), 2 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 6be2b77..ce9fd38 100644
--- a/.gitignore
+++ b/.gitignore
@@ -15,3 +15,4 @@
/cinelerra-gg-2024-01.tar.gz
/cinelerra-gg-2024-02.tar.gz
/cinelerra-gg-2024-05.tar.gz
+/cinelerra-gg-2024-06.tar.gz
diff --git a/cinelerra-gg.spec b/cinelerra-gg.spec
index 550baeb..fa0636c 100644
--- a/cinelerra-gg.spec
+++ b/cinelerra-gg.spec
@@ -1,7 +1,7 @@
# disable lto rfbz#6570
%global _lto_cflags %nil
-%global git_tag 2024-05
+%global git_tag 2024-06
%global tag_version %(c=%{git_tag}; echo "${c}" | tr '-' '.')
Name: cinelerra-gg
@@ -223,6 +223,9 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/%{name}.desktop
%changelog
+* Mon Jul 29 2024 Leigh Scott <leigh123linux(a)gmail.com> - 5.1.2024.06-1
+- Update to latest monthly release
+
* Tue Jun 04 2024 Leigh Scott <leigh123linux(a)gmail.com> - 5.1.2024.05-1
- Update to latest monthly release
diff --git a/sources b/sources
index 481225c..0a34166 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (cinelerra-gg-2024-05.tar.gz) = eab82f9a3c6e703308d551b822d5e86f2e64384b673ccca8bd420e3b628518a4ac63f41005da145ab50ad05b3cad14a43470c00d2fa611ae40d0d71f4df1c577
+SHA512 (cinelerra-gg-2024-06.tar.gz) = 3d3c2cef48cce6a60ea8f93771d5c1d8b74f1c0105337b75972c18cde000abd276b098c8334ed3e4fb119a74a46e317270e85b281aded458a52bae7b8f0b3768
3 months, 3 weeks