forked from jengelh/wxWidgets-3_2
Compare commits
8 Commits
Author | SHA256 | Date | |
---|---|---|---|
b80324c47b | |||
0c4e48f77e | |||
842b67f926 | |||
5af5487f2a | |||
fd86d0bbda | |||
4f73079cf2 | |||
79cfb31c27 | |||
2df551cde5 |
@ -22,11 +22,11 @@ signatures.
|
||||
build/aclocal/bakefile.m4 | 3 +--
|
||||
2 files changed, 4 insertions(+), 4 deletions(-)
|
||||
|
||||
Index: wxWidgets-3.2.6/Makefile.in
|
||||
Index: wxWidgets-3.2.8/Makefile.in
|
||||
===================================================================
|
||||
--- wxWidgets-3.2.6.orig/Makefile.in
|
||||
+++ wxWidgets-3.2.6/Makefile.in
|
||||
@@ -2225,6 +2225,7 @@ LOCALE_LINGUAS = ca cs da de el es fi fr
|
||||
--- wxWidgets-3.2.8.orig/Makefile.in
|
||||
+++ wxWidgets-3.2.8/Makefile.in
|
||||
@@ -2226,6 +2226,7 @@ LOCALE_LINGUAS = af an ar ca ca@valencia
|
||||
@COND_OFFICIAL_BUILD_0_PLATFORM_WIN32_1@WXCOMPILER = _gcc
|
||||
@COND_OFFICIAL_BUILD_1_PLATFORM_WIN32_1@WXCOMPILER \
|
||||
@COND_OFFICIAL_BUILD_1_PLATFORM_WIN32_1@ = _gcc$(COMPILER_VERSION)
|
||||
@ -34,7 +34,7 @@ Index: wxWidgets-3.2.6/Makefile.in
|
||||
@COND_OFFICIAL_BUILD_0_PLATFORM_WIN32_1@VENDORTAG = _$(VENDOR)
|
||||
@COND_OFFICIAL_BUILD_1_PLATFORM_WIN32_1@VENDORTAG =
|
||||
@COND_BUILD_debug@WXDEBUGFLAG = d
|
||||
@@ -2236,7 +2237,7 @@ LOCALE_LINGUAS = ca cs da de el es fi fr
|
||||
@@ -2237,7 +2238,7 @@ LOCALE_LINGUAS = af an ar ca ca@valencia
|
||||
@COND_PLATFORM_WIN32_0@WXDLLNAMEPREFIXGUI = wx_$(PORTNAME)$(WXUNIVNAME)
|
||||
@COND_PLATFORM_WIN32_1@WXDLLNAMEPREFIXGUI = \
|
||||
@COND_PLATFORM_WIN32_1@ wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)
|
||||
@ -43,19 +43,19 @@ Index: wxWidgets-3.2.6/Makefile.in
|
||||
@COND_PLATFORM_WIN32_1@WXDLLVERSIONTAG =
|
||||
COND_wxUSE_REGEX_builtin___wxregex___depname = \
|
||||
$(LIBDIRNAME)/$(LIBPREFIX)wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)-$(WX_RELEASE)$(HOST_SUFFIX)$(LIBEXT)
|
||||
@@ -13982,7 +13983,7 @@ COND_MONOLITHIC_0_SHARED_1_USE_GUI_1_USE
|
||||
@COND_PLATFORM_MACOSX_1_USE_SOVERSION_1@ = .0.3.0.$(SO_SUFFIX)
|
||||
@@ -13984,7 +13985,7 @@ COND_MONOLITHIC_0_SHARED_1_USE_GUI_1_USE
|
||||
@COND_PLATFORM_MACOSX_1_USE_SOVERSION_1@ = .0.4.1.$(SO_SUFFIX)
|
||||
@COND_USE_SOVERCYGWIN_1_USE_SOVERSION_1@dll___targetsuf3 = -0.$(SO_SUFFIX)
|
||||
@COND_USE_SOVERSION_0@dll___targetsuf3 = .$(SO_SUFFIX)
|
||||
-@COND_USE_SOVERSION_1_USE_SOVERSOLARIS_1@dll___targetsuf3 = .$(SO_SUFFIX).0
|
||||
+@COND_USE_SOVERSION_1_USE_SOVERSOLARIS_1@dll___targetsuf3 = .$(SO_SUFFIX).12.0.0
|
||||
+@COND_USE_SOVERSION_1_USE_SOVERSOLARIS_1@dll___targetsuf3 = .$(SO_SUFFIX).16.0.0
|
||||
@COND_TOOLKIT_MSW@__RCDEFDIR_p = --include-dir \
|
||||
@COND_TOOLKIT_MSW@ $(LIBDIRNAME)/wx/include/$(TOOLCHAIN_FULLNAME)
|
||||
@COND_USE_GUI_1_wxUSE_LIBTIFF_builtin@__LIB_TIFF_p \
|
||||
Index: wxWidgets-3.2.6/build/aclocal/bakefile.m4
|
||||
Index: wxWidgets-3.2.8/build/aclocal/bakefile.m4
|
||||
===================================================================
|
||||
--- wxWidgets-3.2.6.orig/build/aclocal/bakefile.m4
|
||||
+++ wxWidgets-3.2.6/build/aclocal/bakefile.m4
|
||||
--- wxWidgets-3.2.8.orig/build/aclocal/bakefile.m4
|
||||
+++ wxWidgets-3.2.8/build/aclocal/bakefile.m4
|
||||
@@ -408,8 +408,7 @@ AC_DEFUN([AC_BAKEFILE_SHARED_VERSIONS],
|
||||
SONAME_FLAG="-Wl,-soname,"
|
||||
fi
|
||||
|
BIN
wxWidgets-3.2.6.tar.bz2
(Stored with Git LFS)
BIN
wxWidgets-3.2.6.tar.bz2
(Stored with Git LFS)
Binary file not shown.
BIN
wxWidgets-3.2.8.tar.bz2
(Stored with Git LFS)
Normal file
BIN
wxWidgets-3.2.8.tar.bz2
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -1,3 +1,51 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Apr 28 09:39:40 UTC 2025 - Jan Engelhardt <jengelh@inai.de>
|
||||
|
||||
- Update to release 3.2.8
|
||||
* Fix crash in wxPropertyGrid with wxGTK3 after recent change.
|
||||
* Fix key codes in WXK_NUMPADx events in wxGTK.
|
||||
* Add wxVector(std::initializer_list<U> list) constructor.
|
||||
* Add mouse scrolling support to generic wxSpinCtrl.
|
||||
* Compute wxStaticText best size ourselves if GTK does it wrongly.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 20 12:11:36 UTC 2025 - Jan Engelhardt <jengelh@inai.de>
|
||||
|
||||
- Update to release 3.2.7
|
||||
* Fix crash in wxWebRequestCURL when connection was refused
|
||||
* Fix buffer read overflow when compiling RE ending with
|
||||
backslash
|
||||
* Fix crash in wxWebRequest::Close() with recent libcurl
|
||||
* Improve wxPropGrid checkboxes in high DPI
|
||||
* Many fixes to key event generation (#25053, #25199, #25200)
|
||||
* Fix copy-pasting text under more Wayland compositors (Weston,
|
||||
kwin)
|
||||
* Don't consume Ctrl-C when using SDL-based wxSound
|
||||
* Avoid repaint problems when using wxWindow::Update() with
|
||||
Wayland
|
||||
* Fix crash when connection is refused in wxWebRequestCURL
|
||||
(gh#wxWidgets/wxWidgets#24885, bsc#1239902)
|
||||
- Delete doxygen111.patch (merged)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Mar 9 22:04:26 UTC 2025 - Jan Engelhardt <jengelh@inai.de>
|
||||
|
||||
- Build with --enable-secretstore [boo#1239137].
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Mar 1 09:12:56 UTC 2025 - Jan Engelhardt <jengelh@inai.de>
|
||||
|
||||
- Build with --enable-glcanvasegl [boo#1235150]. This turns off GLX
|
||||
and enables EGL instead. Sibling toolkits need to do this at the
|
||||
same time for this to work, e.g. hugin needs both wx and GLEW to
|
||||
be built for EGL.
|
||||
- Bump SO version since the base for wxGLCanvas changed. [boo#1239101]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 7 14:14:45 UTC 2024 - Jan Engelhardt <jengelh@inai.de>
|
||||
|
||||
- Use webkit2gtk-4.1 pkgconfig file instead of 4.0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 1 09:33:13 UTC 2024 - Markéta Machová <mmachova@suse.com>
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package wxWidgets-3_2
|
||||
#
|
||||
# Copyright (c) 2024 SUSE LLC
|
||||
# Copyright (c) 2025 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -27,10 +27,10 @@
|
||||
%bcond_with webview
|
||||
%endif
|
||||
|
||||
%if "%{flavor}" == "doc"
|
||||
%if "%flavor" == "doc"
|
||||
%define this_spec wxWidgets-3_2-doc
|
||||
%define variant %{nil}
|
||||
%define toolkit %{nil}
|
||||
%define variant %nil
|
||||
%define toolkit %nil
|
||||
%endif
|
||||
|
||||
%if "%flavor" == "GTK3"
|
||||
@ -65,10 +65,10 @@ wxString and instead rely on the wxChar pointer API.
|
||||
# At most one Name: line to not confuse quilt(1)
|
||||
%define base_name wxWidgets-3_2
|
||||
%define wx_minor 3.2
|
||||
%define psonum 12_0_0
|
||||
%define sonum 12.0.0
|
||||
%define psonum 16_0_0
|
||||
%define sonum 16.0.0
|
||||
Name: %this_spec
|
||||
Version: 3.2.6
|
||||
Version: 3.2.8
|
||||
Release: 0
|
||||
Summary: C++ Library for Cross-Platform Development
|
||||
License: LGPL-2.1-or-later WITH WxWindows-exception-3.1
|
||||
@ -83,8 +83,7 @@ Source6: wxpython-mkdiff.sh
|
||||
Patch0: soversion.diff
|
||||
Patch1: autoconf-2_72.diff
|
||||
Patch2: textfiletest-fix-file-exists.diff
|
||||
Patch3: doxygen111.patch
|
||||
%if "%{flavor}" == "doc"
|
||||
%if "%flavor" == "doc"
|
||||
BuildRequires: doxygen
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: graphviz
|
||||
@ -102,6 +101,7 @@ BuildRequires: pkgconfig(gstreamer-plugins-base-1.0)
|
||||
BuildRequires: pkgconfig(libcurl)
|
||||
BuildRequires: pkgconfig(libmspack)
|
||||
BuildRequires: pkgconfig(libnotify)
|
||||
BuildRequires: pkgconfig(libsecret-1)
|
||||
BuildRequires: pkgconfig(sm)
|
||||
%if "%toolkit" == "gtk2"
|
||||
BuildRequires: pkgconfig(gtk+-2.0)
|
||||
@ -109,7 +109,7 @@ BuildRequires: pkgconfig(gtk+-2.0)
|
||||
%if "%toolkit" == "gtk3"
|
||||
BuildRequires: pkgconfig(gtk+-3.0)
|
||||
%if %{with webview}
|
||||
BuildRequires: pkgconfig(webkit2gtk-4.0)
|
||||
BuildRequires: pkgconfig(webkit2gtk-4.1)
|
||||
%endif
|
||||
%endif
|
||||
%if "%toolkit" == "qt"
|
||||
@ -390,7 +390,7 @@ This package contains the API documentation in HTML format.
|
||||
cp %{S:2} .
|
||||
|
||||
%build
|
||||
%if "%{flavor}" == "doc"
|
||||
%if "%flavor" == "doc"
|
||||
pushd docs/doxygen
|
||||
echo "DOT_IMAGE_FORMAT = svg" >> Doxyfile
|
||||
WX_SKIP_DOXYGEN_VERSION_CHECK=1 ./regen.sh xml
|
||||
@ -418,10 +418,11 @@ autoconf -f -i
|
||||
--enable-ipv6 \
|
||||
--enable-mediactrl \
|
||||
--enable-optimise \
|
||||
%{wx_debug:--enable-debug=%{wx_debug}} \
|
||||
--enable-repro-build \
|
||||
--disable-glcanvasegl \
|
||||
--enable-webrequest \
|
||||
%{wx_debug:--enable-debug=%wx_debug} \
|
||||
--enable-repro-build \
|
||||
--enable-glcanvasegl \
|
||||
--enable-webrequest \
|
||||
--enable-secretstore \
|
||||
%if "%flavor" == "GTK3-nostl"
|
||||
--disable-stl \
|
||||
--disable-plugins
|
||||
@ -434,7 +435,7 @@ autoconf -f -i
|
||||
%endif
|
||||
|
||||
%install
|
||||
%if "%{flavor}" == "doc"
|
||||
%if "%flavor" == "doc"
|
||||
find docs/doxygen/out/xml/ -iname \*.png -print -delete
|
||||
find docs/doxygen/out/html/ -iname \*.dot -print -delete
|
||||
%fdupes -s docs/doxygen/out/html/
|
||||
@ -455,7 +456,7 @@ ln -sf $(echo %buildroot/%_libdir/wx/config/* | sed "s%%%buildroot%%%%") %buildr
|
||||
%endif
|
||||
|
||||
%check
|
||||
%if "%{flavor}" != "doc"
|
||||
%if "%flavor" != "doc"
|
||||
%make_build -C tests all
|
||||
pushd tests
|
||||
# Disable webrequest tests requiring network access
|
||||
@ -485,7 +486,7 @@ export WX_TEST_WEBREQUEST_URL=0
|
||||
%ldconfig_scriptlets -n libwx_%{toolkit}u_webview-%variant%psonum
|
||||
%ldconfig_scriptlets -n libwx_%{toolkit}u_xrc-%variant%psonum
|
||||
|
||||
%if "%{flavor}" == "doc"
|
||||
%if "%flavor" == "doc"
|
||||
%files xml
|
||||
%doc docs/doxygen/out/xml/*.{xml,xslt}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user