From 6022b446d2ddfce29b994d7a066895935a5b5cf9 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sun, 4 Aug 2013 03:11:58 -0500 Subject: [PATCH 01/34] - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild --- xfhell.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfhell.spec b/xfhell.spec index ca0eeb9..f84f4b2 100644 --- a/xfhell.spec +++ b/xfhell.spec @@ -1,6 +1,6 @@ Name: xfhell Version: 1.9 -Release: 10%{?dist} +Release: 11%{?dist} Summary: GTK based Ham Radio application for the Hellschreiber communications mode Group: Applications/Communications @@ -49,6 +49,9 @@ desktop-file-install \ %{_datadir}/applications/%{name}.desktop %changelog +* Sun Aug 04 2013 Fedora Release Engineering - 1.9-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + * Sun Feb 10 2013 Parag Nemade - 1.9-10 - Remove vendor tag from desktop file as per https://fedorahosted.org/fesco/ticket/1077 - Cleanup spec as per recently changed packaging guidelines From c628c509ff3d632329dc66ea0adfead123855483 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sun, 8 Jun 2014 00:49:51 -0500 Subject: [PATCH 02/34] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild --- xfhell.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfhell.spec b/xfhell.spec index f84f4b2..3f8b6d6 100644 --- a/xfhell.spec +++ b/xfhell.spec @@ -1,6 +1,6 @@ Name: xfhell Version: 1.9 -Release: 11%{?dist} +Release: 12%{?dist} Summary: GTK based Ham Radio application for the Hellschreiber communications mode Group: Applications/Communications @@ -49,6 +49,9 @@ desktop-file-install \ %{_datadir}/applications/%{name}.desktop %changelog +* Sun Jun 08 2014 Fedora Release Engineering - 1.9-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + * Sun Aug 04 2013 Fedora Release Engineering - 1.9-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild From ef121409ea4e19fa629561b6988fdda0d9b0b79a Mon Sep 17 00:00:00 2001 From: Yaakov Selkowitz Date: Fri, 20 Jun 2014 16:05:42 -0500 Subject: [PATCH 03/34] Fix FTBFS with -Werror=format-security (#1037396, #1107276) --- xfhell-1.9-format-security.patch | 13 +++++++++++++ xfhell.spec | 8 +++++++- 2 files changed, 20 insertions(+), 1 deletion(-) create mode 100644 xfhell-1.9-format-security.patch diff --git a/xfhell-1.9-format-security.patch b/xfhell-1.9-format-security.patch new file mode 100644 index 0000000..53b8a84 --- /dev/null +++ b/xfhell-1.9-format-security.patch @@ -0,0 +1,13 @@ +diff --git a/src/utils.c b/src/utils.c +index b2dfcc3..ff76b98 100644 +--- a/src/utils.c ++++ b/src/utils.c +@@ -827,7 +827,7 @@ Save_Pixbuf( void ) + "jpeg", &error, "quality", "75", NULL ); + if( error != NULL ) + { +- fprintf( stderr, error->message ); ++ fprintf( stderr, "%s", error->message ); + Error_Dialog( "Failed to save Receive pixbuf\n", FALSE ); + } + diff --git a/xfhell.spec b/xfhell.spec index 3f8b6d6..407bec6 100644 --- a/xfhell.spec +++ b/xfhell.spec @@ -1,6 +1,6 @@ Name: xfhell Version: 1.9 -Release: 12%{?dist} +Release: 13%{?dist} Summary: GTK based Ham Radio application for the Hellschreiber communications mode Group: Applications/Communications @@ -11,6 +11,8 @@ Source0: http://5b4az.chronos.org.uk/pkg/%{name}/%{name}-%{version}.tar.g Source1: %{name}.desktop #temporary Icon Source2: %{name}.png +# -Werror=format-security +Patch0: xfhell-1.9-format-security.patch BuildRequires: autoconf, automake, gtk2-devel, desktop-file-utils #Requires: @@ -22,6 +24,7 @@ communication mode known as Hellschreiber. %prep %setup -qn %{name} +%patch0 -p1 %build @@ -49,6 +52,9 @@ desktop-file-install \ %{_datadir}/applications/%{name}.desktop %changelog +* Fri Jun 20 2014 Yaakov Selkowitz - 1.9-13 +- Fix FTBFS with -Werror=format-security (#1037396, #1107276) + * Sun Jun 08 2014 Fedora Release Engineering - 1.9-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild From f28acaa8bde156803011e8fa776b9a05a4ce4dac Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Mon, 18 Aug 2014 10:00:18 +0000 Subject: [PATCH 04/34] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild --- xfhell.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfhell.spec b/xfhell.spec index 407bec6..f6c9dc4 100644 --- a/xfhell.spec +++ b/xfhell.spec @@ -1,6 +1,6 @@ Name: xfhell Version: 1.9 -Release: 13%{?dist} +Release: 14%{?dist} Summary: GTK based Ham Radio application for the Hellschreiber communications mode Group: Applications/Communications @@ -52,6 +52,9 @@ desktop-file-install \ %{_datadir}/applications/%{name}.desktop %changelog +* Mon Aug 18 2014 Fedora Release Engineering - 1.9-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + * Fri Jun 20 2014 Yaakov Selkowitz - 1.9-13 - Fix FTBFS with -Werror=format-security (#1037396, #1107276) From 68cd70cb63d1e2b66c5f546da1abd4a207c4cd2e Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 19 Jun 2015 04:00:51 +0000 Subject: [PATCH 05/34] - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild --- xfhell.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfhell.spec b/xfhell.spec index f6c9dc4..49e9496 100644 --- a/xfhell.spec +++ b/xfhell.spec @@ -1,6 +1,6 @@ Name: xfhell Version: 1.9 -Release: 14%{?dist} +Release: 15%{?dist} Summary: GTK based Ham Radio application for the Hellschreiber communications mode Group: Applications/Communications @@ -52,6 +52,9 @@ desktop-file-install \ %{_datadir}/applications/%{name}.desktop %changelog +* Fri Jun 19 2015 Fedora Release Engineering - 1.9-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + * Mon Aug 18 2014 Fedora Release Engineering - 1.9-14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild From d8901835402fc7ca32b910d26b9a80df6847ca93 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 5 Feb 2016 03:30:08 +0000 Subject: [PATCH 06/34] - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild --- xfhell.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfhell.spec b/xfhell.spec index 49e9496..5d4e5be 100644 --- a/xfhell.spec +++ b/xfhell.spec @@ -1,6 +1,6 @@ Name: xfhell Version: 1.9 -Release: 15%{?dist} +Release: 16%{?dist} Summary: GTK based Ham Radio application for the Hellschreiber communications mode Group: Applications/Communications @@ -52,6 +52,9 @@ desktop-file-install \ %{_datadir}/applications/%{name}.desktop %changelog +* Fri Feb 05 2016 Fedora Release Engineering - 1.9-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + * Fri Jun 19 2015 Fedora Release Engineering - 1.9-15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild From 874f1e35a5da515dc63c3e74a85179fdf33fbd03 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 11 Feb 2017 17:51:40 +0000 Subject: [PATCH 07/34] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild --- xfhell.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfhell.spec b/xfhell.spec index 5d4e5be..443d531 100644 --- a/xfhell.spec +++ b/xfhell.spec @@ -1,6 +1,6 @@ Name: xfhell Version: 1.9 -Release: 16%{?dist} +Release: 17%{?dist} Summary: GTK based Ham Radio application for the Hellschreiber communications mode Group: Applications/Communications @@ -52,6 +52,9 @@ desktop-file-install \ %{_datadir}/applications/%{name}.desktop %changelog +* Sat Feb 11 2017 Fedora Release Engineering - 1.9-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + * Fri Feb 05 2016 Fedora Release Engineering - 1.9-16 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild From b13ce152f197991483682b54d11c9779f1fed975 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 27 Jul 2017 22:07:22 +0000 Subject: [PATCH 08/34] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild --- xfhell.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfhell.spec b/xfhell.spec index 443d531..7c1ae8c 100644 --- a/xfhell.spec +++ b/xfhell.spec @@ -1,6 +1,6 @@ Name: xfhell Version: 1.9 -Release: 17%{?dist} +Release: 18%{?dist} Summary: GTK based Ham Radio application for the Hellschreiber communications mode Group: Applications/Communications @@ -52,6 +52,9 @@ desktop-file-install \ %{_datadir}/applications/%{name}.desktop %changelog +* Thu Jul 27 2017 Fedora Release Engineering - 1.9-18 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + * Sat Feb 11 2017 Fedora Release Engineering - 1.9-17 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild From bcb4256729f893fcad06e329ba32d44e262b6dd3 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 3 Aug 2017 10:42:57 +0000 Subject: [PATCH 09/34] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild --- xfhell.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfhell.spec b/xfhell.spec index 7c1ae8c..b06be3d 100644 --- a/xfhell.spec +++ b/xfhell.spec @@ -1,6 +1,6 @@ Name: xfhell Version: 1.9 -Release: 18%{?dist} +Release: 19%{?dist} Summary: GTK based Ham Radio application for the Hellschreiber communications mode Group: Applications/Communications @@ -52,6 +52,9 @@ desktop-file-install \ %{_datadir}/applications/%{name}.desktop %changelog +* Thu Aug 03 2017 Fedora Release Engineering - 1.9-19 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + * Thu Jul 27 2017 Fedora Release Engineering - 1.9-18 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild From 9fa601cfc4492886d8f71d26073a21efef2cfab4 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 9 Feb 2018 21:39:08 +0000 Subject: [PATCH 10/34] - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xfhell.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfhell.spec b/xfhell.spec index b06be3d..cd24184 100644 --- a/xfhell.spec +++ b/xfhell.spec @@ -1,6 +1,6 @@ Name: xfhell Version: 1.9 -Release: 19%{?dist} +Release: 20%{?dist} Summary: GTK based Ham Radio application for the Hellschreiber communications mode Group: Applications/Communications @@ -52,6 +52,9 @@ desktop-file-install \ %{_datadir}/applications/%{name}.desktop %changelog +* Fri Feb 09 2018 Fedora Release Engineering - 1.9-20 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + * Thu Aug 03 2017 Fedora Release Engineering - 1.9-19 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild From a7e9ee2b02a5ce50170cf6bad3126f1c5e03e273 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Mon, 9 Jul 2018 19:06:54 +0200 Subject: [PATCH 11/34] add BuildRequires: gcc Reference: https://fedoraproject.org/wiki/Changes/Remove_GCC_from_BuildRoot --- xfhell.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/xfhell.spec b/xfhell.spec index cd24184..9ec0aae 100644 --- a/xfhell.spec +++ b/xfhell.spec @@ -14,6 +14,7 @@ Source2: %{name}.png # -Werror=format-security Patch0: xfhell-1.9-format-security.patch +BuildRequires: gcc BuildRequires: autoconf, automake, gtk2-devel, desktop-file-utils #Requires: From 388a8edc59daee88986542bcd4f466b87c8898b0 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 14 Jul 2018 09:18:17 +0000 Subject: [PATCH 12/34] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xfhell.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfhell.spec b/xfhell.spec index 9ec0aae..4c0a3cb 100644 --- a/xfhell.spec +++ b/xfhell.spec @@ -1,6 +1,6 @@ Name: xfhell Version: 1.9 -Release: 20%{?dist} +Release: 21%{?dist} Summary: GTK based Ham Radio application for the Hellschreiber communications mode Group: Applications/Communications @@ -53,6 +53,9 @@ desktop-file-install \ %{_datadir}/applications/%{name}.desktop %changelog +* Sat Jul 14 2018 Fedora Release Engineering - 1.9-21 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Fri Feb 09 2018 Fedora Release Engineering - 1.9-20 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild From 430a277f77979266734d9fdca107e97389930516 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Mon, 28 Jan 2019 20:18:31 +0100 Subject: [PATCH 13/34] Remove obsolete Group tag References: https://fedoraproject.org/wiki/Changes/Remove_Group_Tag --- xfhell.spec | 1 - 1 file changed, 1 deletion(-) diff --git a/xfhell.spec b/xfhell.spec index 4c0a3cb..83a4720 100644 --- a/xfhell.spec +++ b/xfhell.spec @@ -3,7 +3,6 @@ Version: 1.9 Release: 21%{?dist} Summary: GTK based Ham Radio application for the Hellschreiber communications mode -Group: Applications/Communications License: GPLv2+ URL: http://5b4az.chronos.org.uk/pages/digital.html Source0: http://5b4az.chronos.org.uk/pkg/%{name}/%{name}-%{version}.tar.gz From 8bf87dfdbba6fa9ce55c26f92332c202d5c57402 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sun, 3 Feb 2019 12:25:06 +0000 Subject: [PATCH 14/34] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xfhell.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfhell.spec b/xfhell.spec index 83a4720..24bb6ad 100644 --- a/xfhell.spec +++ b/xfhell.spec @@ -1,6 +1,6 @@ Name: xfhell Version: 1.9 -Release: 21%{?dist} +Release: 22%{?dist} Summary: GTK based Ham Radio application for the Hellschreiber communications mode License: GPLv2+ @@ -52,6 +52,9 @@ desktop-file-install \ %{_datadir}/applications/%{name}.desktop %changelog +* Sun Feb 03 2019 Fedora Release Engineering - 1.9-22 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Sat Jul 14 2018 Fedora Release Engineering - 1.9-21 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild From 67234b50a69e90d643eb0f743a776ad26b470cad Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 27 Jul 2019 04:12:34 +0000 Subject: [PATCH 15/34] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xfhell.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfhell.spec b/xfhell.spec index 24bb6ad..cd95c57 100644 --- a/xfhell.spec +++ b/xfhell.spec @@ -1,6 +1,6 @@ Name: xfhell Version: 1.9 -Release: 22%{?dist} +Release: 23%{?dist} Summary: GTK based Ham Radio application for the Hellschreiber communications mode License: GPLv2+ @@ -52,6 +52,9 @@ desktop-file-install \ %{_datadir}/applications/%{name}.desktop %changelog +* Sat Jul 27 2019 Fedora Release Engineering - 1.9-23 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Sun Feb 03 2019 Fedora Release Engineering - 1.9-22 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild From 31a929fe6fff8e97d26b6c48427863cd5f442c95 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 31 Jan 2020 04:28:09 +0000 Subject: [PATCH 16/34] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xfhell.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfhell.spec b/xfhell.spec index cd95c57..352c4b2 100644 --- a/xfhell.spec +++ b/xfhell.spec @@ -1,6 +1,6 @@ Name: xfhell Version: 1.9 -Release: 23%{?dist} +Release: 24%{?dist} Summary: GTK based Ham Radio application for the Hellschreiber communications mode License: GPLv2+ @@ -52,6 +52,9 @@ desktop-file-install \ %{_datadir}/applications/%{name}.desktop %changelog +* Fri Jan 31 2020 Fedora Release Engineering - 1.9-24 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Sat Jul 27 2019 Fedora Release Engineering - 1.9-23 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild From 61380ca3653f8d376600d64abdd6b0f8d1849c4b Mon Sep 17 00:00:00 2001 From: Richard Shaw Date: Wed, 19 Feb 2020 14:48:58 -0600 Subject: [PATCH 17/34] Update to 3.5.1. --- xfhell.spec | 39 +++++++++++++++++++++++++++------------ 1 file changed, 27 insertions(+), 12 deletions(-) diff --git a/xfhell.spec b/xfhell.spec index 352c4b2..a227e66 100644 --- a/xfhell.spec +++ b/xfhell.spec @@ -1,21 +1,25 @@ Name: xfhell -Version: 1.9 -Release: 24%{?dist} +Version: 3.5.1 +Release: 1%{?dist} Summary: GTK based Ham Radio application for the Hellschreiber communications mode License: GPLv2+ -URL: http://5b4az.chronos.org.uk/pages/digital.html -Source0: http://5b4az.chronos.org.uk/pkg/%{name}/%{name}-%{version}.tar.gz +URL: http://www.5b4az.org/ +Source0: http://www.5b4az.org/pkg/%{name}/%{name}-%{version}.tar.bz2 #add .desktop file Source1: %{name}.desktop #temporary Icon Source2: %{name}.png -# -Werror=format-security -Patch0: xfhell-1.9-format-security.patch -BuildRequires: gcc -BuildRequires: autoconf, automake, gtk2-devel, desktop-file-utils -#Requires: +Patch0: xfhell-Makefile.patch + +BuildRequires: gcc gcc-c++ +BuildRequires: autoconf, automake, libtool +BuildRequires: desktop-file-utils +BuildRequires: alsa-lib-devel +BuildRequires: glib2-devel +BuildRequires: gtk3-devel + %description xfhell is a GTK+ application for the "fuzzy" digital amateur radio @@ -23,14 +27,15 @@ communication mode known as Hellschreiber. %prep -%setup -qn %{name} -%patch0 -p1 +%autosetup -p1 %build ./autogen.sh +export CFLAGS="%{optflags} `pkg-config --cflags gmodule-2.0`" +export LDFLAGS="%{optflags} -lm `pkg-config --libs gmodule-2.0`" %configure -make %{?_smp_mflags} CFLAGS="$RPM_OPT_FLAGS" LIBS=" -lm" +%make_build %install @@ -39,9 +44,14 @@ make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p" # no upstream .desktop or icon yet mkdir -p ${RPM_BUILD_ROOT}%{_datadir}/pixmaps/ cp -p %{SOURCE2} ${RPM_BUILD_ROOT}%{_datadir}/pixmaps/%{name}.png + desktop-file-install \ --dir=${RPM_BUILD_ROOT}%{_datadir}/applications %{SOURCE1} +rm -f %{buildroot}%{_docdir}/%{name}/%{name}.1.gz +mkdir -p %{buildroot}%{_mandir}/man1 +cp -a doc/%{name}.1.gz %{buildroot}%{_mandir}/man1/ + %files #Missing copy of the GPL, Notified upstream @@ -50,8 +60,13 @@ desktop-file-install \ %{_bindir}/* %{_datadir}/pixmaps/%{name}.png %{_datadir}/applications/%{name}.desktop +%{_mandir}/man1/%{name}.1* + %changelog +* Wed Feb 19 2020 Richard Shaw - 3.5.1-1 +- Update to 3.5.1. + * Fri Jan 31 2020 Fedora Release Engineering - 1.9-24 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild From d317cc6e70163b5939bc219d7c24afa31fb72d4a Mon Sep 17 00:00:00 2001 From: Richard Shaw Date: Wed, 19 Feb 2020 14:49:41 -0600 Subject: [PATCH 18/34] Upload new source and add patch. --- .gitignore | 1 + sources | 2 +- xfhell-Makefile.patch | 44 +++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 46 insertions(+), 1 deletion(-) create mode 100644 xfhell-Makefile.patch diff --git a/.gitignore b/.gitignore index 277268f..b788872 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ xfhell-1.9.tar.gz +/xfhell-3.5.1.tar.bz2 diff --git a/sources b/sources index a8dbcf3..730f3b8 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -7d805d2be5fb2a67f820f488b33263e5 xfhell-1.9.tar.gz +SHA512 (xfhell-3.5.1.tar.bz2) = daa271a91e174fba5d7ad3237f56451dbc91e855c0c3775a5d5b5f5d7fce4ada332cb8084eb08cbf1c74b55b33f62eaaa7dd8439c08a61dcde0764599ec8b1b4 diff --git a/xfhell-Makefile.patch b/xfhell-Makefile.patch new file mode 100644 index 0000000..837aa03 --- /dev/null +++ b/xfhell-Makefile.patch @@ -0,0 +1,44 @@ +--- a/Makefile.am ++++ b/Makefile.am +@@ -50,16 +50,9 @@ install-data-local: + cp files/$(PACKAGE).png $(DESTDIR)/usr/share/pixmaps/; \ + fi; \ + if !(test -d $(DESTDIR)/usr/share/doc/$(PACKAGE)); then \ +- mkdir $(DESTDIR)/usr/share/doc/$(PACKAGE)/; \ ++ mkdir -p $(DESTDIR)/usr/share/doc/$(PACKAGE)/; \ + fi; \ + if test -d doc/; then \ + cp -r doc/* $(DESTDIR)/usr/share/doc/$(PACKAGE)/; \ +- cp -r doc/$(PACKAGE).1.gz $(DESTDIR)/usr/share/man/man1/; \ +- fi; \ +- if !(test -d /home/`logname`/$(PACKAGE)); then \ +- cp -r $(PACKAGE) /home/`logname`/; \ +- else \ +- cp $(PACKAGE)/$(PACKAGE).glade /home/`logname`/$(PACKAGE); \ +- fi; \ +- chown -R `logname`:`logname` /home/`logname`/$(PACKAGE); ++ fi; + +--- a/Makefile.in ++++ b/Makefile.in +@@ -903,18 +903,11 @@ install-data-local: + cp files/$(PACKAGE).png $(DESTDIR)/usr/share/pixmaps/; \ + fi; \ + if !(test -d $(DESTDIR)/usr/share/doc/$(PACKAGE)); then \ +- mkdir $(DESTDIR)/usr/share/doc/$(PACKAGE)/; \ ++ mkdir -p $(DESTDIR)/usr/share/doc/$(PACKAGE)/; \ + fi; \ + if test -d doc/; then \ + cp -r doc/* $(DESTDIR)/usr/share/doc/$(PACKAGE)/; \ +- cp -r doc/$(PACKAGE).1.gz $(DESTDIR)/usr/share/man/man1/; \ +- fi; \ +- if !(test -d /home/`logname`/$(PACKAGE)); then \ +- cp -r $(PACKAGE) /home/`logname`/; \ +- else \ +- cp $(PACKAGE)/$(PACKAGE).glade /home/`logname`/$(PACKAGE); \ +- fi; \ +- chown -R `logname`:`logname` /home/`logname`/$(PACKAGE); ++ fi; + + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. From 254342fcfd77ed3d2be85b74ee6b283de48a081a Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 29 Jul 2020 14:44:25 +0000 Subject: [PATCH 19/34] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xfhell.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfhell.spec b/xfhell.spec index a227e66..c2a6385 100644 --- a/xfhell.spec +++ b/xfhell.spec @@ -1,6 +1,6 @@ Name: xfhell Version: 3.5.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: GTK based Ham Radio application for the Hellschreiber communications mode License: GPLv2+ @@ -64,6 +64,9 @@ cp -a doc/%{name}.1.gz %{buildroot}%{_mandir}/man1/ %changelog +* Wed Jul 29 2020 Fedora Release Engineering - 3.5.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Wed Feb 19 2020 Richard Shaw - 3.5.1-1 - Update to 3.5.1. From 80cac068ba119ed57a705f81d543ce890c900fda Mon Sep 17 00:00:00 2001 From: Tom Stellard Date: Sat, 9 Jan 2021 01:26:38 +0000 Subject: [PATCH 20/34] Add BuildRequires: make https://fedoraproject.org/wiki/Changes/Remove_make_from_BuildRoot --- xfhell.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/xfhell.spec b/xfhell.spec index c2a6385..5eb318e 100644 --- a/xfhell.spec +++ b/xfhell.spec @@ -13,6 +13,7 @@ Source2: %{name}.png Patch0: xfhell-Makefile.patch +BuildRequires: make BuildRequires: gcc gcc-c++ BuildRequires: autoconf, automake, libtool BuildRequires: desktop-file-utils From 6240f7d3b2aaf64de7b8c99e77b8940db721511a Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 28 Jan 2021 00:03:32 +0000 Subject: [PATCH 21/34] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xfhell.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfhell.spec b/xfhell.spec index 5eb318e..638d26e 100644 --- a/xfhell.spec +++ b/xfhell.spec @@ -1,6 +1,6 @@ Name: xfhell Version: 3.5.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: GTK based Ham Radio application for the Hellschreiber communications mode License: GPLv2+ @@ -65,6 +65,9 @@ cp -a doc/%{name}.1.gz %{buildroot}%{_mandir}/man1/ %changelog +* Thu Jan 28 2021 Fedora Release Engineering - 3.5.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Wed Jul 29 2020 Fedora Release Engineering - 3.5.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From 3fea62cb3c056482e244b1fdc65223fd203e9b6d Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 23 Jul 2021 21:35:08 +0000 Subject: [PATCH 22/34] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xfhell.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfhell.spec b/xfhell.spec index 638d26e..609ff37 100644 --- a/xfhell.spec +++ b/xfhell.spec @@ -1,6 +1,6 @@ Name: xfhell Version: 3.5.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: GTK based Ham Radio application for the Hellschreiber communications mode License: GPLv2+ @@ -65,6 +65,9 @@ cp -a doc/%{name}.1.gz %{buildroot}%{_mandir}/man1/ %changelog +* Fri Jul 23 2021 Fedora Release Engineering - 3.5.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Thu Jan 28 2021 Fedora Release Engineering - 3.5.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild From 32baf1a0ef29e5a423a1ea64b384f7a071adadce Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 22 Jan 2022 05:06:58 +0000 Subject: [PATCH 23/34] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xfhell.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfhell.spec b/xfhell.spec index 609ff37..a1f8cc0 100644 --- a/xfhell.spec +++ b/xfhell.spec @@ -1,6 +1,6 @@ Name: xfhell Version: 3.5.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: GTK based Ham Radio application for the Hellschreiber communications mode License: GPLv2+ @@ -65,6 +65,9 @@ cp -a doc/%{name}.1.gz %{buildroot}%{_mandir}/man1/ %changelog +* Sat Jan 22 2022 Fedora Release Engineering - 3.5.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Fri Jul 23 2021 Fedora Release Engineering - 3.5.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild From 2509e9aa796fef30298e9879740866dec7cb01bf Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 23 Jul 2022 13:08:46 +0000 Subject: [PATCH 24/34] Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xfhell.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfhell.spec b/xfhell.spec index a1f8cc0..e0c387a 100644 --- a/xfhell.spec +++ b/xfhell.spec @@ -1,6 +1,6 @@ Name: xfhell Version: 3.5.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: GTK based Ham Radio application for the Hellschreiber communications mode License: GPLv2+ @@ -65,6 +65,9 @@ cp -a doc/%{name}.1.gz %{buildroot}%{_mandir}/man1/ %changelog +* Sat Jul 23 2022 Fedora Release Engineering - 3.5.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + * Sat Jan 22 2022 Fedora Release Engineering - 3.5.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild From b57970dad437045646e8926e6b410a80ca762692 Mon Sep 17 00:00:00 2001 From: Florian Weimer Date: Tue, 3 Jan 2023 16:38:34 +0100 Subject: [PATCH 25/34] C99 compatibility fixes (#2157935) Related to: --- xfhell-configure-c99.patch | 16 ++++++++++++++++ xfhell.spec | 6 +++++- 2 files changed, 21 insertions(+), 1 deletion(-) create mode 100644 xfhell-configure-c99.patch diff --git a/xfhell-configure-c99.patch b/xfhell-configure-c99.patch new file mode 100644 index 0000000..ed0ab56 --- /dev/null +++ b/xfhell-configure-c99.patch @@ -0,0 +1,16 @@ +Include for the exit function. This avoids an implicit +function declaration and mishandling of this test with future +compilers. + +diff --git a/m4/intdiv0.m4 b/m4/intdiv0.m4 +index 744b99ea8da87ca1..f5cbd3e944362697 100644 +--- a/m4/intdiv0.m4 ++++ b/m4/intdiv0.m4 +@@ -33,6 +33,7 @@ changequote([,])dnl + [AC_LANG_SOURCE([[ + #include + #include ++#include + + static void + sigfpe_handler (int sig) diff --git a/xfhell.spec b/xfhell.spec index e0c387a..081cf3e 100644 --- a/xfhell.spec +++ b/xfhell.spec @@ -1,6 +1,6 @@ Name: xfhell Version: 3.5.1 -Release: 6%{?dist} +Release: 7%{?dist} Summary: GTK based Ham Radio application for the Hellschreiber communications mode License: GPLv2+ @@ -12,6 +12,7 @@ Source1: %{name}.desktop Source2: %{name}.png Patch0: xfhell-Makefile.patch +Patch1: xfhell-configure-c99.patch BuildRequires: make BuildRequires: gcc gcc-c++ @@ -65,6 +66,9 @@ cp -a doc/%{name}.1.gz %{buildroot}%{_mandir}/man1/ %changelog +* Tue Jan 03 2023 Florian Weimer - 3.5.1-7 +- C99 compatibility fixes (#2157935) + * Sat Jul 23 2022 Fedora Release Engineering - 3.5.1-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild From b09a0366fe8091d317865122c2aa048779a7181f Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 21 Jan 2023 07:28:55 +0000 Subject: [PATCH 26/34] Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xfhell.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfhell.spec b/xfhell.spec index 081cf3e..02dda26 100644 --- a/xfhell.spec +++ b/xfhell.spec @@ -1,6 +1,6 @@ Name: xfhell Version: 3.5.1 -Release: 7%{?dist} +Release: 8%{?dist} Summary: GTK based Ham Radio application for the Hellschreiber communications mode License: GPLv2+ @@ -66,6 +66,9 @@ cp -a doc/%{name}.1.gz %{buildroot}%{_mandir}/man1/ %changelog +* Sat Jan 21 2023 Fedora Release Engineering - 3.5.1-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + * Tue Jan 03 2023 Florian Weimer - 3.5.1-7 - C99 compatibility fixes (#2157935) From 5debd567ce683fb1a3d1f2715434afd633d77cd4 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 22 Jul 2023 18:51:38 +0000 Subject: [PATCH 27/34] Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xfhell.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfhell.spec b/xfhell.spec index 02dda26..bd6bd72 100644 --- a/xfhell.spec +++ b/xfhell.spec @@ -1,6 +1,6 @@ Name: xfhell Version: 3.5.1 -Release: 8%{?dist} +Release: 9%{?dist} Summary: GTK based Ham Radio application for the Hellschreiber communications mode License: GPLv2+ @@ -66,6 +66,9 @@ cp -a doc/%{name}.1.gz %{buildroot}%{_mandir}/man1/ %changelog +* Sat Jul 22 2023 Fedora Release Engineering - 3.5.1-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + * Sat Jan 21 2023 Fedora Release Engineering - 3.5.1-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild From 673849d760c1984f4a2ef57ec65bbc1bf9ae78d1 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 27 Jan 2024 09:42:33 +0000 Subject: [PATCH 28/34] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild --- xfhell.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfhell.spec b/xfhell.spec index bd6bd72..8118c28 100644 --- a/xfhell.spec +++ b/xfhell.spec @@ -1,6 +1,6 @@ Name: xfhell Version: 3.5.1 -Release: 9%{?dist} +Release: 10%{?dist} Summary: GTK based Ham Radio application for the Hellschreiber communications mode License: GPLv2+ @@ -66,6 +66,9 @@ cp -a doc/%{name}.1.gz %{buildroot}%{_mandir}/man1/ %changelog +* Sat Jan 27 2024 Fedora Release Engineering - 3.5.1-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Sat Jul 22 2023 Fedora Release Engineering - 3.5.1-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild From 50e0c3c0973a843b60d2e446ea4fd8874235bf19 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 20 Jul 2024 10:04:27 +0000 Subject: [PATCH 29/34] Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild --- xfhell.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfhell.spec b/xfhell.spec index 8118c28..35eb3db 100644 --- a/xfhell.spec +++ b/xfhell.spec @@ -1,6 +1,6 @@ Name: xfhell Version: 3.5.1 -Release: 10%{?dist} +Release: 11%{?dist} Summary: GTK based Ham Radio application for the Hellschreiber communications mode License: GPLv2+ @@ -66,6 +66,9 @@ cp -a doc/%{name}.1.gz %{buildroot}%{_mandir}/man1/ %changelog +* Sat Jul 20 2024 Fedora Release Engineering - 3.5.1-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + * Sat Jan 27 2024 Fedora Release Engineering - 3.5.1-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From 5ce265949e5381712f1dc550436deb26c116d6a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Fri, 26 Jul 2024 03:55:47 +0200 Subject: [PATCH 30/34] convert GPLv2+ license to SPDX This is part of https://fedoraproject.org/wiki/Changes/SPDX_Licenses_Phase_4 --- xfhell.spec | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/xfhell.spec b/xfhell.spec index 35eb3db..738a986 100644 --- a/xfhell.spec +++ b/xfhell.spec @@ -1,9 +1,10 @@ Name: xfhell Version: 3.5.1 -Release: 11%{?dist} +Release: 12%{?dist} Summary: GTK based Ham Radio application for the Hellschreiber communications mode -License: GPLv2+ +# Automatically converted from old format: GPLv2+ - review is highly recommended. +License: GPL-2.0-or-later URL: http://www.5b4az.org/ Source0: http://www.5b4az.org/pkg/%{name}/%{name}-%{version}.tar.bz2 #add .desktop file @@ -66,6 +67,9 @@ cp -a doc/%{name}.1.gz %{buildroot}%{_mandir}/man1/ %changelog +* Fri Jul 26 2024 Miroslav Suchý - 3.5.1-12 +- convert license to SPDX + * Sat Jul 20 2024 Fedora Release Engineering - 3.5.1-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild From ff73abc204d59f3c14523617ee5efcb92eba68e1 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sun, 19 Jan 2025 15:50:18 +0000 Subject: [PATCH 31/34] Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild --- xfhell.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfhell.spec b/xfhell.spec index 738a986..e1a65cc 100644 --- a/xfhell.spec +++ b/xfhell.spec @@ -1,6 +1,6 @@ Name: xfhell Version: 3.5.1 -Release: 12%{?dist} +Release: 13%{?dist} Summary: GTK based Ham Radio application for the Hellschreiber communications mode # Automatically converted from old format: GPLv2+ - review is highly recommended. @@ -67,6 +67,9 @@ cp -a doc/%{name}.1.gz %{buildroot}%{_mandir}/man1/ %changelog +* Sun Jan 19 2025 Fedora Release Engineering - 3.5.1-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + * Fri Jul 26 2024 Miroslav Suchý - 3.5.1-12 - convert license to SPDX From 2fbab82f813de86cc66dc5043781e91262983928 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 25 Jul 2025 20:50:29 +0000 Subject: [PATCH 32/34] Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild --- xfhell.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfhell.spec b/xfhell.spec index e1a65cc..f79f075 100644 --- a/xfhell.spec +++ b/xfhell.spec @@ -1,6 +1,6 @@ Name: xfhell Version: 3.5.1 -Release: 13%{?dist} +Release: 14%{?dist} Summary: GTK based Ham Radio application for the Hellschreiber communications mode # Automatically converted from old format: GPLv2+ - review is highly recommended. @@ -67,6 +67,9 @@ cp -a doc/%{name}.1.gz %{buildroot}%{_mandir}/man1/ %changelog +* Fri Jul 25 2025 Fedora Release Engineering - 3.5.1-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild + * Sun Jan 19 2025 Fedora Release Engineering - 3.5.1-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild From ecad21beeadbe2b2fd9be0f5ef0398c33e0b4cc1 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 17 Jan 2026 20:40:29 +0000 Subject: [PATCH 33/34] Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild --- xfhell.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfhell.spec b/xfhell.spec index f79f075..27c9656 100644 --- a/xfhell.spec +++ b/xfhell.spec @@ -1,6 +1,6 @@ Name: xfhell Version: 3.5.1 -Release: 14%{?dist} +Release: 15%{?dist} Summary: GTK based Ham Radio application for the Hellschreiber communications mode # Automatically converted from old format: GPLv2+ - review is highly recommended. @@ -67,6 +67,9 @@ cp -a doc/%{name}.1.gz %{buildroot}%{_mandir}/man1/ %changelog +* Sat Jan 17 2026 Fedora Release Engineering - 3.5.1-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild + * Fri Jul 25 2025 Fedora Release Engineering - 3.5.1-14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild From a71fd53a7bee15e50daf5aa90ac2f409a514d271 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 17 Jul 2026 09:13:32 +0000 Subject: [PATCH 34/34] Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild --- xfhell.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfhell.spec b/xfhell.spec index 27c9656..fcc2d00 100644 --- a/xfhell.spec +++ b/xfhell.spec @@ -1,6 +1,6 @@ Name: xfhell Version: 3.5.1 -Release: 15%{?dist} +Release: 16%{?dist} Summary: GTK based Ham Radio application for the Hellschreiber communications mode # Automatically converted from old format: GPLv2+ - review is highly recommended. @@ -67,6 +67,9 @@ cp -a doc/%{name}.1.gz %{buildroot}%{_mandir}/man1/ %changelog +* Fri Jul 17 2026 Fedora Release Engineering - 3.5.1-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild + * Sat Jan 17 2026 Fedora Release Engineering - 3.5.1-15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild