Control: tags 1019829 + patch Dear maintainer,
I've prepared an NMU for pgn2web (versioned as 0.4-3.1) and uploaded it to unstable as per the NMU guidelines in the devref: https://www.debian.org/doc/manuals/developers-reference/pkgs.html#nmu-guidelines Cheers, Olly
diff -Nru pgn2web-0.4/debian/changelog pgn2web-0.4/debian/changelog --- pgn2web-0.4/debian/changelog 2019-10-17 08:13:27.000000000 +1300 +++ pgn2web-0.4/debian/changelog 2022-11-07 12:06:09.000000000 +1300 @@ -1,3 +1,11 @@ +pgn2web (0.4-3.1) unstable; urgency=medium + + * Non-maintainer upload. + * debian/control: Update to build with wxwidgets-3.2 (new patch + wx3.2-compat.patch) (Closes: #1019829) + + -- Olly Betts <o...@survex.com> Mon, 07 Nov 2022 12:06:09 +1300 + pgn2web (0.4-3) unstable; urgency=medium * debian/control: diff -Nru pgn2web-0.4/debian/control pgn2web-0.4/debian/control --- pgn2web-0.4/debian/control 2019-10-17 08:13:27.000000000 +1300 +++ pgn2web-0.4/debian/control 2022-11-07 11:58:56.000000000 +1300 @@ -2,7 +2,7 @@ Section: web Priority: optional Maintainer: Jose G. López <josg...@jglopez.name> -Build-Depends: debhelper-compat (= 12), libwxgtk3.0-gtk3-dev +Build-Depends: debhelper-compat (= 12), libwxgtk3.2-dev Standards-Version: 4.4.1 Rules-Requires-Root: no Homepage: http://sourceforge.net/projects/pgn2web/ diff -Nru pgn2web-0.4/debian/patches/series pgn2web-0.4/debian/patches/series --- pgn2web-0.4/debian/patches/series 2019-10-17 08:13:27.000000000 +1300 +++ pgn2web-0.4/debian/patches/series 2022-11-07 12:05:17.000000000 +1300 @@ -2,3 +2,4 @@ makefile.patch install-location.patch wx3.0-compat.patch +wx3.2-compat.patch diff -Nru pgn2web-0.4/debian/patches/wx3.2-compat.patch pgn2web-0.4/debian/patches/wx3.2-compat.patch --- pgn2web-0.4/debian/patches/wx3.2-compat.patch 1970-01-01 12:00:00.000000000 +1200 +++ pgn2web-0.4/debian/patches/wx3.2-compat.patch 2022-11-07 12:06:04.000000000 +1300 @@ -0,0 +1,17 @@ +Description: Fixes for compatibility with wxWidgets 3.2 +Author: Olly Betts <o...@survex.com> +Bug-Debian: https://bugs.debian.org/1019829 +Forwarded: no +Last-Update: 2022-11-06 + +--- pgn2web-0.4.orig/gui.cpp ++++ pgn2web-0.4/gui.cpp +@@ -367,7 +367,7 @@ void p2wFrame::do_layout() + buttonsSizer->Add(convertButton, 0, wxALL, 5); + buttonsSizer->Add(quitButton, 0, wxALL, 5); + rootSizer->Add(buttonsSizer, 0, +- wxLEFT|wxRIGHT|wxBOTTOM|wxALIGN_CENTER_HORIZONTAL|wxADJUST_MINSIZE, 5); ++ wxLEFT|wxRIGHT|wxBOTTOM|wxALIGN_CENTER_HORIZONTAL, 5); + rootPanel->SetAutoLayout(true); + rootPanel->SetSizer(rootSizer); + panelSizer->Add(rootPanel, 1, wxEXPAND, 0);