Compare commits
No commits in common. "c9-beta" and "c10s" have entirely different histories.
22
.gitignore
vendored
22
.gitignore
vendored
@ -1 +1,21 @@
|
||||
SOURCES/sdl12-compat-1.2.60.tar.gz
|
||||
/sdl12-compat-cc5826a.tar.gz
|
||||
/sdl12-compat-efe9791.tar.gz
|
||||
/sdl12-compat-21830e8.tar.gz
|
||||
/sdl12-compat-c0504eb.tar.gz
|
||||
/sdl12-compat-44f299f.tar.gz
|
||||
/sdl12-compat-f44f295.tar.gz
|
||||
/sdl12-compat-4ad7ba6.tar.gz
|
||||
/sdl12-compat-08b5def.tar.gz
|
||||
/sdl12-compat-cf47f88.tar.gz
|
||||
/sdl12-compat-51254e5.tar.gz
|
||||
/sdl12-compat-aa9919b.tar.gz
|
||||
/sdl12-compat-a3bfcb2.tar.gz
|
||||
/sdl12-compat-b5f7170.tar.gz
|
||||
/sdl12-compat-a98590a.tar.gz
|
||||
/sdl12-compat-c6cfc8f.tar.gz
|
||||
/sdl12-compat-a10d6b6.tar.gz
|
||||
/sdl12-compat-4e4527a.tar.gz
|
||||
/sdl12-compat-1.2.52.tar.gz
|
||||
/sdl12-compat-1.2.56.tar.gz
|
||||
/sdl12-compat-1.2.60.tar.gz
|
||||
/sdl12-compat-1.2.68.tar.gz
|
||||
|
||||
@ -1 +0,0 @@
|
||||
5e9712564734f439f766bb24117ad910f9ba28c8 SOURCES/sdl12-compat-1.2.60.tar.gz
|
||||
@ -1,26 +0,0 @@
|
||||
From 77892a1ef5260fe78e593c8337dbe98874ff336c Mon Sep 17 00:00:00 2001
|
||||
From: Ozkan Sezer <sezeroz@gmail.com>
|
||||
Date: Tue, 25 Oct 2022 15:56:50 +0300
|
||||
Subject: [PATCH] fix SDL12COMPAT_MAX_VIDMODE,
|
||||
|
||||
.. was broken by commit 7be4b3c99a436e360a43aefc929087c46cdadee9
|
||||
---
|
||||
src/SDL12_compat.c | 2 ++
|
||||
1 file changed, 2 insertions(+)
|
||||
|
||||
diff --git a/src/SDL12_compat.c b/src/SDL12_compat.c
|
||||
index 64ba56f..1123cc9 100644
|
||||
--- a/src/SDL12_compat.c
|
||||
+++ b/src/SDL12_compat.c
|
||||
@@ -2119,6 +2119,8 @@ Init12VidModes(void)
|
||||
SDL_sscanf(maxmodestr, "%ux%u", &w, &h);
|
||||
if (w > 0xFFFF) w = 0xFFFF;
|
||||
if (h > 0xFFFF) h = 0xFFFF;
|
||||
+ maxw = w;
|
||||
+ maxh = h;
|
||||
}
|
||||
|
||||
for (i = 0; i < total; ++i) {
|
||||
--
|
||||
2.38.1
|
||||
|
||||
6
gating.yaml
Normal file
6
gating.yaml
Normal file
@ -0,0 +1,6 @@
|
||||
--- !Policy
|
||||
product_versions:
|
||||
- rhel-10
|
||||
decision_context: osci_compose_gate
|
||||
rules:
|
||||
- !PassingTestCaseRule {test_case_name: desktop-qe.desktop-ci.tier1-gating.functional}
|
||||
@ -6,8 +6,8 @@
|
||||
%endif
|
||||
|
||||
Name: sdl12-compat
|
||||
Version: 1.2.60
|
||||
Release: 1%{?dist}
|
||||
Version: 1.2.68
|
||||
Release: 4%{?dist}
|
||||
Summary: SDL 1.2 runtime compatibility library using SDL 2.0
|
||||
# mp3 decoder code is MIT-0/PD
|
||||
# SDL_opengl.h is zlib and MIT
|
||||
@ -18,8 +18,6 @@ Source0: %{url}/archive/release-%{version}/%{name}-%{version}.tar.gz
|
||||
Source1: SDL_config.h
|
||||
|
||||
# Backports from upstream (0001~0500)
|
||||
## From: https://github.com/libsdl-org/sdl12-compat/commit/77892a1ef5260fe78e593c8337dbe98874ff336c
|
||||
Patch0001: 0001-fix-SDL12COMPAT_MAX_VIDMODE.patch
|
||||
|
||||
# Proposed patches (0501~1000)
|
||||
|
||||
@ -152,20 +150,46 @@ rm -rf %{buildroot}%{_libdir}/*.a
|
||||
|
||||
|
||||
%changelog
|
||||
* Sun Oct 30 2022 Neal Gompa <ngompa@centosproject.org> - 1.2.60-1
|
||||
- Rebase to 1.2.60
|
||||
Resolves: rhbz#2127565
|
||||
* Tue Oct 29 2024 Troy Dawson <tdawson@redhat.com> - 1.2.68-4
|
||||
- Bump release for October 2024 mass rebuild:
|
||||
Resolves: RHEL-64018
|
||||
|
||||
* Fri Mar 04 2022 Neal Gompa <ngompa@centosproject.org> - 1.2.52-1
|
||||
- Rebase to 1.2.52
|
||||
Resolves: rhbz#2060907
|
||||
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 1.2.68-3
|
||||
- Bump release for June 2024 mass rebuild
|
||||
|
||||
* Sat Dec 11 2021 Neal Gompa <ngompa@centosproject.org> - 0.0.1~git.20211125.4e4527a-4
|
||||
* Sat Jan 27 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.68-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Tue Sep 26 2023 Neal Gompa <ngompa@fedoraproject.org> - 1.2.68-1
|
||||
- Update to 1.2.68
|
||||
|
||||
* Sat Jul 22 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.60-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||
|
||||
* Fri Mar 10 2023 Petr Pisar <ppisar@redhat.com> - 1.2.60-3
|
||||
- Fix a hang in SDL_FreeYUVOverlay() (RH#2173510)
|
||||
|
||||
* Sat Jan 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.60-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||
|
||||
* Sun Oct 30 2022 Neal Gompa <ngompa@fedoraproject.org> - 1.2.60-1
|
||||
- Update to 1.2.60
|
||||
|
||||
* Fri Sep 16 2022 Neal Gompa <ngompa@fedoraproject.org> - 1.2.56-1
|
||||
- Update to 1.2.56 (RH#2127545)
|
||||
|
||||
* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.52-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Thu Mar 03 2022 Neal Gompa <ngompa@fedoraproject.org> - 1.2.52-1
|
||||
- Update to 1.2.52 (RH#2060590)
|
||||
|
||||
* Sat Jan 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.0.1~git.20211125.4e4527a-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Sat Dec 11 2021 Neal Gompa <ngompa@fedoraproject.org> - 0.0.1~git.20211125.4e4527a-3
|
||||
- Conflict with all old SDL subpackages properly
|
||||
|
||||
* Tue Dec 07 2021 Wim Taymans <wtaymans@redhat.com> - 0.0.1~git.20211125.4e4527a-3
|
||||
- Bump for rebuild after resync
|
||||
|
||||
* Wed Dec 01 2021 Neal Gompa <ngompa@centosproject.org> - 0.0.1~git.20211125.4e4527a-2
|
||||
- Obsolete the SDL package properly
|
||||
|
||||
Loading…
Reference in New Issue
Block a user