Compare commits

...
Sign in to create a new pull request.

6 commits

Author SHA1 Message Date
Scott Talbert
0370c8a20d Update to new upstream release 3.2.9 2025-12-15 23:17:51 -05:00
Fedora Release Engineering
496728c714 Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild 2025-07-25 20:34:35 +00:00
Scott Talbert
9892600e9a Update to new upstream release 3.2.8 (#2363255) 2025-05-05 20:30:41 -04:00
Scott Talbert
4c7c0d49d9 Update to new upstream release 3.2.7 2025-04-08 20:16:27 -04:00
Yaakov Selkowitz
a5ac9517a6 Skip VirtListCtrlTestCase on ppc64le
This test started failing recently.
2025-03-18 13:50:36 -04:00
Yaakov Selkowitz
ea5765d69b Update mesa test dependencies
mesa-libEGL is needed as an implementation behind libglvnd-egl to run some
GUI tests; while usually required thereby, it is not for flatpak builds
in order to separate mesa as an extension from the runtime.  However,
mesa-libEGL now requires mesa-dri-drivers since 25.0:

https://src.fedoraproject.org/rpms/mesa/c/7f5395e84998c17715e566e7fd14fa72c47dfd4e
2025-03-18 13:39:24 -04:00
3 changed files with 22 additions and 4 deletions

3
.gitignore vendored
View file

@ -11,3 +11,6 @@
/wxWidgets-3.2.4.tar.bz2
/wxWidgets-3.2.5.tar.bz2
/wxWidgets-3.2.6.tar.bz2
/wxWidgets-3.2.7.tar.bz2
/wxWidgets-3.2.8.tar.bz2
/wxWidgets-3.2.9.tar.bz2

View file

@ -1 +1 @@
SHA512 (wxWidgets-3.2.6.tar.bz2) = 87830a73df096ab35d4ff7e131872131153da76f76c58d70e57558915c3faea280af193104163ce24e9e249a62b8e65d19ebfa20046ce0d2c45b2368b108619f
SHA512 (wxWidgets-3.2.9.tar.bz2) = 6fe5caa3deaa02df0ef1891e417625b7719cffc9968a2d43e5fbca349ec9fdb8d4fc85fb422f835df751af3a816f946fb9d0d008163924be1669e54ce2346df7

View file

@ -5,8 +5,8 @@
%bcond_without tests
Name: wxGTK
Version: 3.2.6
Release: 3%{?dist}
Version: 3.2.9
Release: 1%{?dist}
Summary: GTK port of the wxWidgets GUI library
License: LGPL-2.0-or-later WITH WxWindows-exception-3.1
URL: https://www.wxwidgets.org/
@ -43,7 +43,7 @@ BuildRequires: libcurl-devel
# For Tests
%if %{with tests}
BuildRequires: glibc-langpack-en
BuildRequires: mesa-dri-drivers
BuildRequires: mesa-libEGL
BuildRequires: xclock
BuildRequires: xorg-x11-server-Xvfb
BuildRequires: python3-httpbin
@ -263,6 +263,9 @@ LD_LIBRARY_PATH=%{buildroot}%{_libdir} wxUSE_XVFB=1 xvfb-run -a \
%ifarch i686
~ImageTestCase \
%endif
%ifarch ppc64le
~VirtListCtrlTestCase \
%endif
%ifarch s390x
~WebView \
%endif
@ -347,6 +350,18 @@ fi
%doc html
%changelog
* Tue Dec 16 2025 Scott Talbert <swt@techie.net> - 3.2.9-1
- Update to new upstream release 3.2.9
* Fri Jul 25 2025 Fedora Release Engineering <releng@fedoraproject.org> - 3.2.8-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
* Tue May 06 2025 Scott Talbert <swt@techie.net> - 3.2.8-1
- Update to new upstream release 3.2.8 (#2363255)
* Wed Apr 09 2025 Scott Talbert <swt@techie.net> - 3.2.7-1
- Update to new upstream release 3.2.7
* Tue Feb 18 2025 Scott Talbert <swt@techie.net> - 3.2.6-3
- Add conditional for disabling tests