From 7f4b35a8d7f99936807f4d29ca4382f69462edd7 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 23 Jul 2022 12:25:32 +0000 Subject: [PATCH 01/24] Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- wike.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wike.spec b/wike.spec index 6b598de..a47d285 100644 --- a/wike.spec +++ b/wike.spec @@ -2,7 +2,7 @@ Name: wike Version: 1.8.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Wikipedia Reader for the GNOME Desktop License: GPLv3 @@ -64,6 +64,9 @@ desktop-file-validate %{buildroot}/%{_datadir}/applications/%{appid}.desktop %{_datadir}/gnome-shell/search-providers/%{appid}.SearchProvider.ini %changelog +* Sat Jul 23 2022 Fedora Release Engineering - 1.8.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + * Sun May 29 2022 Gustavo Costa - 1.8.0-1 - Update to 1.8.0 From 052927b2742476399a6ac89469398d0545b8bd8a Mon Sep 17 00:00:00 2001 From: Gustavo Costa Date: Fri, 9 Sep 2022 23:07:01 -0300 Subject: [PATCH 02/24] Update wike to 1.8.1 (rhbz#2125166) --- .gitignore | 1 + sources | 2 +- wike.spec | 7 +++++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 4fbd24d..86c6231 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ /wike-1.7.1.tar.gz /wike-1.7.2.tar.gz /wike-1.8.0.tar.gz +/wike-1.8.1.tar.gz diff --git a/sources b/sources index e4b6384..90546c6 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (wike-1.8.0.tar.gz) = 18cd74e83e1574516a639f9b04c84fd6da6b4bae8a189ee2ce836beec30cd11d5a5a7e13eacfc67792b70e09086b05eb96fc3f68c98004004156c83e065dce56 +SHA512 (wike-1.8.1.tar.gz) = e98907dedaf06887122dbfadb3c87c13be8fa277fd540a042ad807ceb4e23ac43ae8084690f0d8ae94895c76c42f855aa719be2a55445fc13fa25c3a7f94fb77 diff --git a/wike.spec b/wike.spec index a47d285..4a4cb10 100644 --- a/wike.spec +++ b/wike.spec @@ -1,8 +1,8 @@ %global appid com.github.hugolabe.Wike Name: wike -Version: 1.8.0 -Release: 2%{?dist} +Version: 1.8.1 +Release: 1%{?dist} Summary: Wikipedia Reader for the GNOME Desktop License: GPLv3 @@ -64,6 +64,9 @@ desktop-file-validate %{buildroot}/%{_datadir}/applications/%{appid}.desktop %{_datadir}/gnome-shell/search-providers/%{appid}.SearchProvider.ini %changelog +* Fri Sep 09 2022 Gustavo Costa - 1.8.1-1 +- Update to 1.8.1 (rhbz#2125166) + * Sat Jul 23 2022 Fedora Release Engineering - 1.8.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild From cce490d75e8e4a8bee1180351ed47d717d55aab1 Mon Sep 17 00:00:00 2001 From: Gustavo Costa Date: Sat, 24 Sep 2022 05:53:15 -0300 Subject: [PATCH 03/24] Fix _fill_menu bug (rhbz#2128121) --- 90.patch | 22 ++++++++++++++++++++++ wike.spec | 11 +++++++++-- 2 files changed, 31 insertions(+), 2 deletions(-) create mode 100644 90.patch diff --git a/90.patch b/90.patch new file mode 100644 index 0000000..d5ba378 --- /dev/null +++ b/90.patch @@ -0,0 +1,22 @@ +From 5a6f2831c477d0f41271647e7f4ba55dd0b97ff9 Mon Sep 17 00:00:00 2001 +From: Gustavo Costa +Date: Thu, 22 Sep 2022 12:53:58 -0300 +Subject: [PATCH] Fix _fill_menu bug + +--- + src/toc.py | 2 ++ + 1 file changed, 2 insertions(+) + +diff --git a/src/toc.py b/src/toc.py +index 068de5a..f289819 100644 +--- a/src/toc.py ++++ b/src/toc.py +@@ -92,6 +92,8 @@ def _fill_menu(self, menu, toc, index): + menu.append_item(button) + return index + ++ return index ++ + # On menu activated load section + + def _section_activate_cb(self, action, parameter): diff --git a/wike.spec b/wike.spec index 4a4cb10..73c7121 100644 --- a/wike.spec +++ b/wike.spec @@ -2,13 +2,17 @@ Name: wike Version: 1.8.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Wikipedia Reader for the GNOME Desktop License: GPLv3 URL: https://github.com/hugolabe/wike Source0: %{url}/archive/%{version}/%{name}-%{version}.tar.gz +# Fix _fill_menu bug +# https://github.com/hugolabe/Wike/issues/89 +Patch0: %{url}/pull/90.patch + BuildArch: noarch BuildRequires: python3-devel @@ -32,7 +36,7 @@ content of this online encyclopedia in a native application, with a simpler and distraction-free view of articles. %prep -%autosetup -n Wike-%{version} +%autosetup -n Wike-%{version} -p1 %build %meson @@ -64,6 +68,9 @@ desktop-file-validate %{buildroot}/%{_datadir}/applications/%{appid}.desktop %{_datadir}/gnome-shell/search-providers/%{appid}.SearchProvider.ini %changelog +* Sat Sep 24 2022 Gustavo Costa - 1.8.1-2 +- Fix _fill_menu bug (rhbz#2128121) + * Fri Sep 09 2022 Gustavo Costa - 1.8.1-1 - Update to 1.8.1 (rhbz#2125166) From db89a8a5f8cad409ef2c436ae354d0aa12651de6 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 21 Jan 2023 06:49:41 +0000 Subject: [PATCH 04/24] Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- wike.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wike.spec b/wike.spec index 73c7121..12b8077 100644 --- a/wike.spec +++ b/wike.spec @@ -2,7 +2,7 @@ Name: wike Version: 1.8.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Wikipedia Reader for the GNOME Desktop License: GPLv3 @@ -68,6 +68,9 @@ desktop-file-validate %{buildroot}/%{_datadir}/applications/%{appid}.desktop %{_datadir}/gnome-shell/search-providers/%{appid}.SearchProvider.ini %changelog +* Sat Jan 21 2023 Fedora Release Engineering - 1.8.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + * Sat Sep 24 2022 Gustavo Costa - 1.8.1-2 - Fix _fill_menu bug (rhbz#2128121) From 6aeed21f4bbe0d6a40aacdd4e9631f12fe724075 Mon Sep 17 00:00:00 2001 From: Gustavo Costa Date: Fri, 24 Feb 2023 20:43:54 -0300 Subject: [PATCH 05/24] Update to 1.8.2 (rhbz#2137400) --- .gitignore | 1 + 90.patch | 22 ---------------------- sources | 2 +- wike.spec | 15 ++++++++------- 4 files changed, 10 insertions(+), 30 deletions(-) delete mode 100644 90.patch diff --git a/.gitignore b/.gitignore index 86c6231..22d06cf 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,4 @@ /wike-1.7.2.tar.gz /wike-1.8.0.tar.gz /wike-1.8.1.tar.gz +/wike-1.8.2.tar.gz diff --git a/90.patch b/90.patch deleted file mode 100644 index d5ba378..0000000 --- a/90.patch +++ /dev/null @@ -1,22 +0,0 @@ -From 5a6f2831c477d0f41271647e7f4ba55dd0b97ff9 Mon Sep 17 00:00:00 2001 -From: Gustavo Costa -Date: Thu, 22 Sep 2022 12:53:58 -0300 -Subject: [PATCH] Fix _fill_menu bug - ---- - src/toc.py | 2 ++ - 1 file changed, 2 insertions(+) - -diff --git a/src/toc.py b/src/toc.py -index 068de5a..f289819 100644 ---- a/src/toc.py -+++ b/src/toc.py -@@ -92,6 +92,8 @@ def _fill_menu(self, menu, toc, index): - menu.append_item(button) - return index - -+ return index -+ - # On menu activated load section - - def _section_activate_cb(self, action, parameter): diff --git a/sources b/sources index 90546c6..ef5050b 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (wike-1.8.1.tar.gz) = e98907dedaf06887122dbfadb3c87c13be8fa277fd540a042ad807ceb4e23ac43ae8084690f0d8ae94895c76c42f855aa719be2a55445fc13fa25c3a7f94fb77 +SHA512 (wike-1.8.2.tar.gz) = 3ff15f6f5d2be1240bd0d6fe6224119a7a816db6f3017719e59e64e8df400a9fa3a61776b250adfdf85402afb44f97a69877b1e42d143972662b4a95eba23b01 diff --git a/wike.spec b/wike.spec index 12b8077..060ab68 100644 --- a/wike.spec +++ b/wike.spec @@ -1,18 +1,14 @@ %global appid com.github.hugolabe.Wike Name: wike -Version: 1.8.1 -Release: 3%{?dist} +Version: 1.8.2 +Release: 1%{?dist} Summary: Wikipedia Reader for the GNOME Desktop -License: GPLv3 +License: GPL-3.0-or-later URL: https://github.com/hugolabe/wike Source0: %{url}/archive/%{version}/%{name}-%{version}.tar.gz -# Fix _fill_menu bug -# https://github.com/hugolabe/Wike/issues/89 -Patch0: %{url}/pull/90.patch - BuildArch: noarch BuildRequires: python3-devel @@ -68,6 +64,11 @@ desktop-file-validate %{buildroot}/%{_datadir}/applications/%{appid}.desktop %{_datadir}/gnome-shell/search-providers/%{appid}.SearchProvider.ini %changelog +* Fri Feb 24 2023 Gustavo Costa - 1.8.2-1 +- Drop patch +- Use SPDX license +- Update to 1.8.2 (rhbz#2137400) + * Sat Jan 21 2023 Fedora Release Engineering - 1.8.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild From f4f4771e6738178ed1351ab0ec4ffb5c500bc1c4 Mon Sep 17 00:00:00 2001 From: Gustavo Costa Date: Sat, 4 Mar 2023 20:39:47 -0300 Subject: [PATCH 06/24] Update to 1.8.3 (rhbz#2175378) --- .gitignore | 1 + sources | 2 +- wike.spec | 5 ++++- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 22d06cf..a5325d3 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,4 @@ /wike-1.8.0.tar.gz /wike-1.8.1.tar.gz /wike-1.8.2.tar.gz +/wike-1.8.3.tar.gz diff --git a/sources b/sources index ef5050b..d2dc239 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (wike-1.8.2.tar.gz) = 3ff15f6f5d2be1240bd0d6fe6224119a7a816db6f3017719e59e64e8df400a9fa3a61776b250adfdf85402afb44f97a69877b1e42d143972662b4a95eba23b01 +SHA512 (wike-1.8.3.tar.gz) = 3647ff69cc55261d0c2f320ee6b6c8beb296d76366b53a05265fa978d89c205a6f9dde18ca253a6fddeb1d7958e0f369f0458b62a651c0d4b66b98aaa62faaca diff --git a/wike.spec b/wike.spec index 060ab68..db85f88 100644 --- a/wike.spec +++ b/wike.spec @@ -1,7 +1,7 @@ %global appid com.github.hugolabe.Wike Name: wike -Version: 1.8.2 +Version: 1.8.3 Release: 1%{?dist} Summary: Wikipedia Reader for the GNOME Desktop @@ -64,6 +64,9 @@ desktop-file-validate %{buildroot}/%{_datadir}/applications/%{appid}.desktop %{_datadir}/gnome-shell/search-providers/%{appid}.SearchProvider.ini %changelog +* Sat Mar 04 2023 Gustavo Costa - 1.8.3-1 +- Update to 1.8.3 (rhbz#2175378) + * Fri Feb 24 2023 Gustavo Costa - 1.8.2-1 - Drop patch - Use SPDX license From 963131582d6d6b3658498cc09bc0ccc7b817884e Mon Sep 17 00:00:00 2001 From: Gustavo Costa Date: Sat, 4 Mar 2023 21:04:44 -0300 Subject: [PATCH 07/24] Use webkit2gtk4.1 --- wike.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/wike.spec b/wike.spec index db85f88..7df63c1 100644 --- a/wike.spec +++ b/wike.spec @@ -2,7 +2,7 @@ Name: wike Version: 1.8.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Wikipedia Reader for the GNOME Desktop License: GPL-3.0-or-later @@ -22,7 +22,7 @@ Requires: hicolor-icon-theme Requires: python3-gobject Requires: gtk3 Requires: libhandy1 -Requires: webkit2gtk3 +Requires: webkit2gtk4.1 Requires: python3dist(dbus-python) Requires: python3dist(requests) @@ -64,6 +64,9 @@ desktop-file-validate %{buildroot}/%{_datadir}/applications/%{appid}.desktop %{_datadir}/gnome-shell/search-providers/%{appid}.SearchProvider.ini %changelog +* Sat Mar 04 2023 Gustavo Costa - 1.8.3-2 +- Use webkit2gtk4.1 + * Sat Mar 04 2023 Gustavo Costa - 1.8.3-1 - Update to 1.8.3 (rhbz#2175378) From 23a2a926426f4fc55e69060be57878203563eed2 Mon Sep 17 00:00:00 2001 From: Gustavo Costa Date: Fri, 14 Apr 2023 18:26:50 -0300 Subject: [PATCH 08/24] Update to 2.0.0 (rhbz#2186215) --- .gitignore | 1 + sources | 2 +- wike.spec | 21 ++++++++++++--------- 3 files changed, 14 insertions(+), 10 deletions(-) diff --git a/.gitignore b/.gitignore index a5325d3..a4b9eda 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,4 @@ /wike-1.8.1.tar.gz /wike-1.8.2.tar.gz /wike-1.8.3.tar.gz +/wike-2.0.0.tar.gz diff --git a/sources b/sources index d2dc239..badea8a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (wike-1.8.3.tar.gz) = 3647ff69cc55261d0c2f320ee6b6c8beb296d76366b53a05265fa978d89c205a6f9dde18ca253a6fddeb1d7958e0f369f0458b62a651c0d4b66b98aaa62faaca +SHA512 (wike-2.0.0.tar.gz) = ca02ea2364d270571b7a4e13de7dd29a45c9a3a945b32de7fcca1b37235ec51ba7ed02f3fc69a5bb0b4463f4c72a25195297e7ac3082767d5b1e6d5e4c9ffea2 diff --git a/wike.spec b/wike.spec index 7df63c1..c456df7 100644 --- a/wike.spec +++ b/wike.spec @@ -1,8 +1,8 @@ %global appid com.github.hugolabe.Wike Name: wike -Version: 1.8.3 -Release: 2%{?dist} +Version: 2.0.0 +Release: 1%{?dist} Summary: Wikipedia Reader for the GNOME Desktop License: GPL-3.0-or-later @@ -20,19 +20,19 @@ BuildRequires: libappstream-glib Requires: hicolor-icon-theme Requires: python3-gobject -Requires: gtk3 -Requires: libhandy1 -Requires: webkit2gtk4.1 +Requires: gtk4 +Requires: libadwaita +Requires: webkitgtk6.0 Requires: python3dist(dbus-python) Requires: python3dist(requests) %description -Wike is a Wikipedia reader for the GNOME Desktop. Provides access to all the -content of this online encyclopedia in a native application, with a simpler and +Wike is a Wikipedia reader for the GNOME Desktop. Provides access to all the +content of this online encyclopedia in a native application, with a simpler and distraction-free view of articles. %prep -%autosetup -n Wike-%{version} -p1 +%autosetup -n Wike-%{version} %build %meson @@ -53,7 +53,6 @@ desktop-file-validate %{buildroot}/%{_datadir}/applications/%{appid}.desktop %{_datadir}/%{name} %{_datadir}/applications/%{appid}.desktop %{_datadir}/icons/hicolor/*/apps/* -%{_datadir}/icons/hicolor/*/actions/* %{_datadir}/glib-2.0/schemas/%{appid}.gschema.xml %{_metainfodir}/%{appid}.metainfo.xml %dir %{_datadir}/dbus-1 @@ -64,6 +63,10 @@ desktop-file-validate %{buildroot}/%{_datadir}/applications/%{appid}.desktop %{_datadir}/gnome-shell/search-providers/%{appid}.SearchProvider.ini %changelog +* Fri Apr 14 2023 Gustavo Costa - 2.0.0-1 +- Update to 2.0.0 (rhbz#2186215) +- Change gtk3, libhandy and webkit2gtk4.1 to gtk4, libadwaita and webkitgtk6.1 + * Sat Mar 04 2023 Gustavo Costa - 1.8.3-2 - Use webkit2gtk4.1 From 6e7afb9fc834287a968fb416cdebec1e7e01112b Mon Sep 17 00:00:00 2001 From: Gustavo Costa Date: Wed, 26 Apr 2023 21:48:39 -0300 Subject: [PATCH 09/24] Convert to %autorelease and %autochangelog [skip changelog] --- changelog | 62 ++++++++++++++++++++++++++++++++++++++++++++++++++++ wike.spec | 65 ++----------------------------------------------------- 2 files changed, 64 insertions(+), 63 deletions(-) create mode 100644 changelog diff --git a/changelog b/changelog new file mode 100644 index 0000000..17d8093 --- /dev/null +++ b/changelog @@ -0,0 +1,62 @@ +* Fri Apr 14 2023 Gustavo Costa - 2.0.0-1 +- Update to 2.0.0 (rhbz#2186215) +- Change gtk3, libhandy and webkit2gtk4.1 to gtk4, libadwaita and webkitgtk6.1 + +* Sat Mar 04 2023 Gustavo Costa - 1.8.3-2 +- Use webkit2gtk4.1 + +* Sat Mar 04 2023 Gustavo Costa - 1.8.3-1 +- Update to 1.8.3 (rhbz#2175378) + +* Fri Feb 24 2023 Gustavo Costa - 1.8.2-1 +- Drop patch +- Use SPDX license +- Update to 1.8.2 (rhbz#2137400) + +* Sat Jan 21 2023 Fedora Release Engineering - 1.8.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + +* Sat Sep 24 2022 Gustavo Costa - 1.8.1-2 +- Fix _fill_menu bug (rhbz#2128121) + +* Fri Sep 09 2022 Gustavo Costa - 1.8.1-1 +- Update to 1.8.1 (rhbz#2125166) + +* Sat Jul 23 2022 Fedora Release Engineering - 1.8.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + +* Sun May 29 2022 Gustavo Costa - 1.8.0-1 +- Update to 1.8.0 + +* Mon Apr 04 2022 Gustavo Costa - 1.7.2-1 +- Update to 1.7.2 + +* Tue Feb 08 2022 Gustavo Costa - 1.7.1-1 +- Update to 1.7.1 + +* Fri Jan 21 2022 Gustavo Costa - 1.7.0-1 +- Fix unowned directories +- Update to 1.7.0 + +* Fri Dec 17 2021 Gustavo Costa - 1.6.3-1 +- Update to 1.6.3 + +* Sat Dec 04 2021 Gustavo Costa - 1.6.2-1 +- Update to 1.6.2 + +* Wed Nov 17 2021 Gustavo Costa - 1.6.1-1 +- Update to 1.6.1 + +* Sat Oct 16 2021 Gustavo Costa - 1.6.0-1 +- Update to 1.6.0 + +* Wed Sep 22 2021 Gustavo Costa - 1.5.7-1 +- Update to 1.5.7 + +* Thu Sep 09 2021 Gustavo Costa - 1.5.6-1 +- Update to 1.5.6 +- Remove BR libhandy1-devel +- Add BR glib2-devel + +* Thu Sep 02 2021 Gustavo Costa - 1.5.4-1 +- Initial package diff --git a/wike.spec b/wike.spec index c456df7..446c532 100644 --- a/wike.spec +++ b/wike.spec @@ -2,7 +2,7 @@ Name: wike Version: 2.0.0 -Release: 1%{?dist} +Release: %autorelease Summary: Wikipedia Reader for the GNOME Desktop License: GPL-3.0-or-later @@ -63,65 +63,4 @@ desktop-file-validate %{buildroot}/%{_datadir}/applications/%{appid}.desktop %{_datadir}/gnome-shell/search-providers/%{appid}.SearchProvider.ini %changelog -* Fri Apr 14 2023 Gustavo Costa - 2.0.0-1 -- Update to 2.0.0 (rhbz#2186215) -- Change gtk3, libhandy and webkit2gtk4.1 to gtk4, libadwaita and webkitgtk6.1 - -* Sat Mar 04 2023 Gustavo Costa - 1.8.3-2 -- Use webkit2gtk4.1 - -* Sat Mar 04 2023 Gustavo Costa - 1.8.3-1 -- Update to 1.8.3 (rhbz#2175378) - -* Fri Feb 24 2023 Gustavo Costa - 1.8.2-1 -- Drop patch -- Use SPDX license -- Update to 1.8.2 (rhbz#2137400) - -* Sat Jan 21 2023 Fedora Release Engineering - 1.8.1-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild - -* Sat Sep 24 2022 Gustavo Costa - 1.8.1-2 -- Fix _fill_menu bug (rhbz#2128121) - -* Fri Sep 09 2022 Gustavo Costa - 1.8.1-1 -- Update to 1.8.1 (rhbz#2125166) - -* Sat Jul 23 2022 Fedora Release Engineering - 1.8.0-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild - -* Sun May 29 2022 Gustavo Costa - 1.8.0-1 -- Update to 1.8.0 - -* Mon Apr 04 2022 Gustavo Costa - 1.7.2-1 -- Update to 1.7.2 - -* Tue Feb 08 2022 Gustavo Costa - 1.7.1-1 -- Update to 1.7.1 - -* Fri Jan 21 2022 Gustavo Costa - 1.7.0-1 -- Fix unowned directories -- Update to 1.7.0 - -* Fri Dec 17 2021 Gustavo Costa - 1.6.3-1 -- Update to 1.6.3 - -* Sat Dec 04 2021 Gustavo Costa - 1.6.2-1 -- Update to 1.6.2 - -* Wed Nov 17 2021 Gustavo Costa - 1.6.1-1 -- Update to 1.6.1 - -* Sat Oct 16 2021 Gustavo Costa - 1.6.0-1 -- Update to 1.6.0 - -* Wed Sep 22 2021 Gustavo Costa - 1.5.7-1 -- Update to 1.5.7 - -* Thu Sep 09 2021 Gustavo Costa - 1.5.6-1 -- Update to 1.5.6 -- Remove BR libhandy1-devel -- Add BR glib2-devel - -* Thu Sep 02 2021 Gustavo Costa - 1.5.4-1 -- Initial package +%autochangelog From b318edee36eeb139f42eff52649af35800069cbf Mon Sep 17 00:00:00 2001 From: Gustavo Costa Date: Wed, 26 Apr 2023 21:56:12 -0300 Subject: [PATCH 10/24] Update to 2.0.1 (rhbz#2188956) --- .gitignore | 1 + sources | 2 +- wike.spec | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index a4b9eda..4513245 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,4 @@ /wike-1.8.2.tar.gz /wike-1.8.3.tar.gz /wike-2.0.0.tar.gz +/wike-2.0.1.tar.gz diff --git a/sources b/sources index badea8a..abeebda 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (wike-2.0.0.tar.gz) = ca02ea2364d270571b7a4e13de7dd29a45c9a3a945b32de7fcca1b37235ec51ba7ed02f3fc69a5bb0b4463f4c72a25195297e7ac3082767d5b1e6d5e4c9ffea2 +SHA512 (wike-2.0.1.tar.gz) = 4cddc6e139f786521bf55050c08c40978d18996d17234dc812069933bab612b9bf5a99c4ff9e4e8c2fa73221d34ff9c29f7741ec9caac93d5001fa65a51a4b9c diff --git a/wike.spec b/wike.spec index 446c532..cf6ab18 100644 --- a/wike.spec +++ b/wike.spec @@ -1,7 +1,7 @@ %global appid com.github.hugolabe.Wike Name: wike -Version: 2.0.0 +Version: 2.0.1 Release: %autorelease Summary: Wikipedia Reader for the GNOME Desktop From 662ee23987d20bcd3ff7edcad771f38fa4f5c0b5 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 22 Jul 2023 18:12:54 +0000 Subject: [PATCH 11/24] Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild Signed-off-by: Fedora Release Engineering From f46e3eb5acb2e7b1bfb36b1a344335314c5dc110 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 27 Jan 2024 08:48:11 +0000 Subject: [PATCH 12/24] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From 63c52e01145a80a30a4b14a44a10181c2cbc8935 Mon Sep 17 00:00:00 2001 From: Gustavo Costa Date: Tue, 13 Feb 2024 17:17:37 -0300 Subject: [PATCH 13/24] Update to 2.1.0 (rhbz#2252759) --- .gitignore | 1 + sources | 2 +- wike.spec | 3 +-- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 4513245..502d8d1 100644 --- a/.gitignore +++ b/.gitignore @@ -12,3 +12,4 @@ /wike-1.8.3.tar.gz /wike-2.0.0.tar.gz /wike-2.0.1.tar.gz +/wike-2.1.0.tar.gz diff --git a/sources b/sources index abeebda..18d9d5f 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (wike-2.0.1.tar.gz) = 4cddc6e139f786521bf55050c08c40978d18996d17234dc812069933bab612b9bf5a99c4ff9e4e8c2fa73221d34ff9c29f7741ec9caac93d5001fa65a51a4b9c +SHA512 (wike-2.1.0.tar.gz) = dff9931874a52dd08093ea4c34dd86e317511b9ec698026277c8929965342406ecdcf711f3c89755403827b13758d8fe445352ec0471f25181817fa4312a6588 diff --git a/wike.spec b/wike.spec index cf6ab18..8a15a7a 100644 --- a/wike.spec +++ b/wike.spec @@ -1,7 +1,7 @@ %global appid com.github.hugolabe.Wike Name: wike -Version: 2.0.1 +Version: 2.1.0 Release: %autorelease Summary: Wikipedia Reader for the GNOME Desktop @@ -23,7 +23,6 @@ Requires: python3-gobject Requires: gtk4 Requires: libadwaita Requires: webkitgtk6.0 -Requires: python3dist(dbus-python) Requires: python3dist(requests) %description From 97801a5f97daa280ef0f91d0f95c96999dca9108 Mon Sep 17 00:00:00 2001 From: Gustavo Costa Date: Sun, 17 Mar 2024 21:24:22 -0300 Subject: [PATCH 14/24] Update to 3.0.0 (rhbz#2268613) --- .gitignore | 1 + sources | 2 +- wike.spec | 5 +++-- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 502d8d1..597726d 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,4 @@ /wike-2.0.0.tar.gz /wike-2.0.1.tar.gz /wike-2.1.0.tar.gz +/wike-3.0.0.tar.gz diff --git a/sources b/sources index 18d9d5f..f3b38a7 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (wike-2.1.0.tar.gz) = dff9931874a52dd08093ea4c34dd86e317511b9ec698026277c8929965342406ecdcf711f3c89755403827b13758d8fe445352ec0471f25181817fa4312a6588 +SHA512 (wike-3.0.0.tar.gz) = 7e5c268135fee05d225c8e281c56c70b157c5c395f0b0bca2b8e68f585261d6573b118a4fc6eee55997d9ec2ab12a3c61b5e0649c896610a39adb1e065ffc30c diff --git a/wike.spec b/wike.spec index 8a15a7a..b0611d2 100644 --- a/wike.spec +++ b/wike.spec @@ -1,7 +1,7 @@ %global appid com.github.hugolabe.Wike Name: wike -Version: 2.1.0 +Version: 3.0.0 Release: %autorelease Summary: Wikipedia Reader for the GNOME Desktop @@ -23,7 +23,8 @@ Requires: python3-gobject Requires: gtk4 Requires: libadwaita Requires: webkitgtk6.0 -Requires: python3dist(requests) +Requires: libsoup +Requires: pango %description Wike is a Wikipedia reader for the GNOME Desktop. Provides access to all the From 5818913a42b0fc8900cb35ad61c3357b1111cdde Mon Sep 17 00:00:00 2001 From: Gustavo Costa Date: Fri, 5 Apr 2024 21:05:41 -0300 Subject: [PATCH 15/24] Update to 3.0.1 (rhbz#2271241) --- .gitignore | 1 + sources | 2 +- wike.spec | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 597726d..c27c905 100644 --- a/.gitignore +++ b/.gitignore @@ -14,3 +14,4 @@ /wike-2.0.1.tar.gz /wike-2.1.0.tar.gz /wike-3.0.0.tar.gz +/wike-3.0.1.tar.gz diff --git a/sources b/sources index f3b38a7..d6bb194 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (wike-3.0.0.tar.gz) = 7e5c268135fee05d225c8e281c56c70b157c5c395f0b0bca2b8e68f585261d6573b118a4fc6eee55997d9ec2ab12a3c61b5e0649c896610a39adb1e065ffc30c +SHA512 (wike-3.0.1.tar.gz) = f31e0dff2b1d2f2dbceef63e0c0b59d850791624301bd5ec9e1c9e015ca1503cff03701a8b2867c1a4783fffccb7fecb2517252535a640a3ff3d25f7acf9ea93 diff --git a/wike.spec b/wike.spec index b0611d2..b0d7707 100644 --- a/wike.spec +++ b/wike.spec @@ -1,7 +1,7 @@ %global appid com.github.hugolabe.Wike Name: wike -Version: 3.0.0 +Version: 3.0.1 Release: %autorelease Summary: Wikipedia Reader for the GNOME Desktop From 236acfdaff65d3e2566abb3992879639f6ef63a9 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 20 Jul 2024 09:21:12 +0000 Subject: [PATCH 16/24] Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild From 35f8187b9cb9afd2b572ae0d1019734a4a196bf3 Mon Sep 17 00:00:00 2001 From: Gustavo Costa Date: Thu, 5 Sep 2024 22:06:23 -0300 Subject: [PATCH 17/24] Update to 3.1.0 (rhbz#2305195) --- .gitignore | 1 + sources | 2 +- wike.spec | 7 ++++--- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index c27c905..30667a1 100644 --- a/.gitignore +++ b/.gitignore @@ -15,3 +15,4 @@ /wike-2.1.0.tar.gz /wike-3.0.0.tar.gz /wike-3.0.1.tar.gz +/wike-3.1.0.tar.gz diff --git a/sources b/sources index d6bb194..0a1ec14 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (wike-3.0.1.tar.gz) = f31e0dff2b1d2f2dbceef63e0c0b59d850791624301bd5ec9e1c9e015ca1503cff03701a8b2867c1a4783fffccb7fecb2517252535a640a3ff3d25f7acf9ea93 +SHA512 (wike-3.1.0.tar.gz) = cca3199ca39fdc369bf73ac207377dbe99dd4021f8352d2714a507328b55c02beeb907deb1c5b065237255b0f211b8de8e164c4f1305c8b7f64eebad08cffcfd diff --git a/wike.spec b/wike.spec index b0d7707..1bb8fbc 100644 --- a/wike.spec +++ b/wike.spec @@ -1,13 +1,13 @@ %global appid com.github.hugolabe.Wike Name: wike -Version: 3.0.1 +Version: 3.1.0 Release: %autorelease Summary: Wikipedia Reader for the GNOME Desktop License: GPL-3.0-or-later -URL: https://github.com/hugolabe/wike -Source0: %{url}/archive/%{version}/%{name}-%{version}.tar.gz +URL: https://hugolabe.github.io/Wike +Source0: https://github.com/hugolabe/wike/archive/%{version}/%{name}-%{version}.tar.gz BuildArch: noarch @@ -17,6 +17,7 @@ BuildRequires: gettext BuildRequires: glib2-devel BuildRequires: desktop-file-utils BuildRequires: libappstream-glib +BuildRequires: gtk-update-icon-cache Requires: hicolor-icon-theme Requires: python3-gobject From 8a3a2f90e74d4d32e0f79284bdcb56361c0789fc Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sun, 19 Jan 2025 15:02:03 +0000 Subject: [PATCH 18/24] Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild From dca85d672e3fba9c9b68870754f8289d540c981b Mon Sep 17 00:00:00 2001 From: Gustavo Costa Date: Sun, 30 Mar 2025 21:25:27 -0300 Subject: [PATCH 19/24] Update to 3.1.1 (rhbz#2342560) --- .gitignore | 1 + sources | 2 +- wike.spec | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 30667a1..2f2bf96 100644 --- a/.gitignore +++ b/.gitignore @@ -16,3 +16,4 @@ /wike-3.0.0.tar.gz /wike-3.0.1.tar.gz /wike-3.1.0.tar.gz +/wike-3.1.1.tar.gz diff --git a/sources b/sources index 0a1ec14..4bdefb5 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (wike-3.1.0.tar.gz) = cca3199ca39fdc369bf73ac207377dbe99dd4021f8352d2714a507328b55c02beeb907deb1c5b065237255b0f211b8de8e164c4f1305c8b7f64eebad08cffcfd +SHA512 (wike-3.1.1.tar.gz) = 8d5917914f64e199dae4fabca8caff71c5986982fe2f1000e4250e60f9f0973b23fa2ef191f34d7dfff6547bdaf7e9b718c7fef7ecff31a81dd28d781185f1c6 diff --git a/wike.spec b/wike.spec index 1bb8fbc..2321477 100644 --- a/wike.spec +++ b/wike.spec @@ -1,7 +1,7 @@ %global appid com.github.hugolabe.Wike Name: wike -Version: 3.1.0 +Version: 3.1.1 Release: %autorelease Summary: Wikipedia Reader for the GNOME Desktop From f96a19189cd9683eac0702428d974a93b18434d3 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 25 Jul 2025 20:25:37 +0000 Subject: [PATCH 20/24] Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild From 60ca67af0e4ed70e7327897c894b4b6312d0f95a Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 17 Jan 2026 20:14:41 +0000 Subject: [PATCH 21/24] Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild From 17c79b16b8e7d972063e8c76b3a04fe56211dab0 Mon Sep 17 00:00:00 2001 From: Gustavo Costa Date: Tue, 17 Feb 2026 14:13:04 -0300 Subject: [PATCH 22/24] Update to 3.2.0 (rhbz#2406092) --- .gitignore | 1 + sources | 2 +- wike.spec | 3 ++- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 2f2bf96..b14269a 100644 --- a/.gitignore +++ b/.gitignore @@ -17,3 +17,4 @@ /wike-3.0.1.tar.gz /wike-3.1.0.tar.gz /wike-3.1.1.tar.gz +/wike-3.2.0.tar.gz diff --git a/sources b/sources index 4bdefb5..98333fb 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (wike-3.1.1.tar.gz) = 8d5917914f64e199dae4fabca8caff71c5986982fe2f1000e4250e60f9f0973b23fa2ef191f34d7dfff6547bdaf7e9b718c7fef7ecff31a81dd28d781185f1c6 +SHA512 (wike-3.2.0.tar.gz) = 404e9b9e2be54314d703b40c81167fe3684188ed64561d27fd353eb6704137156e230604ff58874fa50358b6ecde7548cb5edb614272bd8a9b1f91191ed78740 diff --git a/wike.spec b/wike.spec index 2321477..c1b99d5 100644 --- a/wike.spec +++ b/wike.spec @@ -1,7 +1,7 @@ %global appid com.github.hugolabe.Wike Name: wike -Version: 3.1.1 +Version: 3.2.0 Release: %autorelease Summary: Wikipedia Reader for the GNOME Desktop @@ -58,6 +58,7 @@ desktop-file-validate %{buildroot}/%{_datadir}/applications/%{appid}.desktop %{_metainfodir}/%{appid}.metainfo.xml %dir %{_datadir}/dbus-1 %dir %{_datadir}/dbus-1/services +%{_datadir}/dbus-1/services/%{appid}.service %{_datadir}/dbus-1/services/%{appid}.SearchProvider.service %dir %{_datadir}/gnome-shell %dir %{_datadir}/gnome-shell/search-providers From 50223646555ea55fc3d1f7a780b22665dc71dff7 Mon Sep 17 00:00:00 2001 From: Gustavo Costa Date: Sat, 9 May 2026 23:43:10 -0300 Subject: [PATCH 23/24] Update to 3.2.1 (rhbz#2464124) --- .gitignore | 1 + sources | 2 +- wike.spec | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index b14269a..143693b 100644 --- a/.gitignore +++ b/.gitignore @@ -18,3 +18,4 @@ /wike-3.1.0.tar.gz /wike-3.1.1.tar.gz /wike-3.2.0.tar.gz +/wike-3.2.1.tar.gz diff --git a/sources b/sources index 98333fb..af4d0d0 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (wike-3.2.0.tar.gz) = 404e9b9e2be54314d703b40c81167fe3684188ed64561d27fd353eb6704137156e230604ff58874fa50358b6ecde7548cb5edb614272bd8a9b1f91191ed78740 +SHA512 (wike-3.2.1.tar.gz) = 562f97396e05c1e679f9977305eff6b75e8918fc87b0e567f9e09ff1bafcf2858cc9e376cbab558095438729854cbb76597f0fca65de42c683234590a2b04b9e diff --git a/wike.spec b/wike.spec index c1b99d5..c07f1e1 100644 --- a/wike.spec +++ b/wike.spec @@ -1,7 +1,7 @@ %global appid com.github.hugolabe.Wike Name: wike -Version: 3.2.0 +Version: 3.2.1 Release: %autorelease Summary: Wikipedia Reader for the GNOME Desktop From 819b88c607f9ce0586eeeb5164f2f8adadb35a0f Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 17 Jul 2026 08:48:56 +0000 Subject: [PATCH 24/24] Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild