From de5521ee73be8b6c07ec82664ecca60d7f226aa8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= Date: Fri, 26 Nov 2021 15:12:13 +0100 Subject: [PATCH 01/20] Adjust to Autconf-2.71 --- whatsup-1.14-Adjust-to-Autoconf-2.71.patch | 59 ++++++++++++++++++++++ whatsup.spec | 10 +++- 2 files changed, 68 insertions(+), 1 deletion(-) create mode 100644 whatsup-1.14-Adjust-to-Autoconf-2.71.patch diff --git a/whatsup-1.14-Adjust-to-Autoconf-2.71.patch b/whatsup-1.14-Adjust-to-Autoconf-2.71.patch new file mode 100644 index 0000000..df11910 --- /dev/null +++ b/whatsup-1.14-Adjust-to-Autoconf-2.71.patch @@ -0,0 +1,59 @@ +From c261979245527ae780f83d00d3cffcc117873658 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= +Date: Fri, 26 Nov 2021 14:55:49 +0100 +Subject: [PATCH] Adjust to Autoconf-2.71 +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +Autoconf-2.71 fixed handling traling white spaces (marked with an +underscore here): + + AC_CHECK_FUNCS( \ + strcpy \ + strdup \ + strchr \_ + strlen \_ + strcat \_ + strtok \_ + ) + +and correctly converted them to this shell code: + + for ac_func in strcpy strdup strchr \ strlen \ strcat \ strtok \ + do : + [...] + done + +This patch removes the trailing new lines. + + + + +Signed-off-by: Petr Písař +--- + configure.ac | 8 ++++---- + 1 file changed, 4 insertions(+), 4 deletions(-) + +diff --git a/configure.ac b/configure.ac +index 668b3c9..0f7c26d 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -174,10 +174,10 @@ AC_FUNC_MALLOC + AC_CHECK_FUNCS( \ + strcpy \ + strdup \ +- strchr \ +- strlen \ +- strcat \ +- strtok \ ++ strchr \ ++ strlen \ ++ strcat \ ++ strtok \ + ) + AC_CHECK_FUNCS([getopt_long]) + +-- +2.31.1 + diff --git a/whatsup.spec b/whatsup.spec index 980f1ba..56fc7e2 100644 --- a/whatsup.spec +++ b/whatsup.spec @@ -11,13 +11,17 @@ Summary: Node up/down detection utility Name: whatsup Version: 1.14 -Release: 36%{?dist} +Release: 37%{?dist} License: GPLv2+ URL: https://computing.llnl.gov/linux/whatsup.html Source0: http://downloads.sourceforge.net/project/%{name}/%{name}/%{version}-1/%{name}-%{version}.tar.gz Source1: %{name}-hostsfile Source2: %{name}-pingd.service Patch0: %{name}-%{version}-bug#1117251.patch +# Adjust to Autconf-2.71, bug #1999491, +# , +# +Patch1: %{name}-%{version}-Adjust-to-Autoconf-2.71.patch BuildRequires: make BuildRequires: perl-devel BuildRequires: perl-generators @@ -116,6 +120,7 @@ Genders clusterlist module for %{libname} %prep %setup -q %patch0 -p0 +%patch1 -p1 %if 0%{?fedora} > 17 autoreconf -I config -f -i %endif @@ -309,6 +314,9 @@ fi %changelog +* Fri Nov 26 2021 Petr Pisar - 1.14-37 +- Adjust to Autconf-2.71 (bug #1999491) + * Fri Jul 23 2021 Fedora Release Engineering - 1.14-36 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild From 26d7701f735f272318680f33432fb7ade99ee61c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= Date: Fri, 26 Nov 2021 15:49:31 +0100 Subject: [PATCH 02/20] Move depreacted comments after %else macros rpmbuild complains: warning: extra tokens at the end of %else directive in line 191: %else # EPEL thing warning: extra tokens at the end of %else directive in line 209: %else # EPEL thing warning: extra tokens at the end of %else directive in line 228: %else #EPEL thing --- whatsup.spec | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/whatsup.spec b/whatsup.spec index 56fc7e2..d5508c8 100644 --- a/whatsup.spec +++ b/whatsup.spec @@ -188,7 +188,8 @@ if [ $1 -eq 1 ] ; then /bin/systemctl daemon-reload >/dev/null 2>&1 || : fi %endif -%else # EPEL thing +%else +# EPEL thing if [ $1 -eq 1 ] ; then # Initial installation /sbin/chkconfig --add whatsup-pingd @@ -206,7 +207,8 @@ if [ $1 -eq 0 ] ; then /bin/systemctl stop whatsup-pingd.service > /dev/null 2>&1 || : fi %endif -%else # EPEL thing +%else +# EPEL thing if [ $1 -eq 0 ] ; then # Package removal, not upgrade /sbin/service whatsup-pingd stop >/dev/null 2>&1 || : @@ -225,7 +227,8 @@ if [ $1 -ge 1 ] ; then /bin/systemctl try-restart whatsup-pingd.service >/dev/null 2>&1 || : fi %endif -%else #EPEL thing +%else +#EPEL thing if [ $1 -ge 1 ] ; then # Package upgrade, not uninstall /sbin/service whatsup-pingd condrestart From e916cee4ddb8794cc7d5646adf2632e2048b820e Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 22 Jan 2022 04:26:04 +0000 Subject: [PATCH 03/20] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- whatsup.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/whatsup.spec b/whatsup.spec index d5508c8..3dc8e09 100644 --- a/whatsup.spec +++ b/whatsup.spec @@ -11,7 +11,7 @@ Summary: Node up/down detection utility Name: whatsup Version: 1.14 -Release: 37%{?dist} +Release: 38%{?dist} License: GPLv2+ URL: https://computing.llnl.gov/linux/whatsup.html Source0: http://downloads.sourceforge.net/project/%{name}/%{name}/%{version}-1/%{name}-%{version}.tar.gz @@ -317,6 +317,9 @@ fi %changelog +* Sat Jan 22 2022 Fedora Release Engineering - 1.14-38 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Fri Nov 26 2021 Petr Pisar - 1.14-37 - Adjust to Autconf-2.71 (bug #1999491) From 68beb9d55e94777d9f4612ac082d5cb77ec0d6c5 Mon Sep 17 00:00:00 2001 From: Jitka Plesnikova Date: Mon, 30 May 2022 20:16:04 +0200 Subject: [PATCH 04/20] Perl 5.36 rebuild --- whatsup.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/whatsup.spec b/whatsup.spec index 3dc8e09..4875666 100644 --- a/whatsup.spec +++ b/whatsup.spec @@ -11,7 +11,7 @@ Summary: Node up/down detection utility Name: whatsup Version: 1.14 -Release: 38%{?dist} +Release: 39%{?dist} License: GPLv2+ URL: https://computing.llnl.gov/linux/whatsup.html Source0: http://downloads.sourceforge.net/project/%{name}/%{name}/%{version}-1/%{name}-%{version}.tar.gz @@ -317,6 +317,9 @@ fi %changelog +* Mon May 30 2022 Jitka Plesnikova - 1.14-39 +- Perl 5.36 rebuild + * Sat Jan 22 2022 Fedora Release Engineering - 1.14-38 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild From f442652c0bf16345e8abd02b2924d5a698cfd6e0 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 23 Jul 2022 12:22:59 +0000 Subject: [PATCH 05/20] Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- whatsup.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/whatsup.spec b/whatsup.spec index 4875666..807f67a 100644 --- a/whatsup.spec +++ b/whatsup.spec @@ -11,7 +11,7 @@ Summary: Node up/down detection utility Name: whatsup Version: 1.14 -Release: 39%{?dist} +Release: 40%{?dist} License: GPLv2+ URL: https://computing.llnl.gov/linux/whatsup.html Source0: http://downloads.sourceforge.net/project/%{name}/%{name}/%{version}-1/%{name}-%{version}.tar.gz @@ -317,6 +317,9 @@ fi %changelog +* Sat Jul 23 2022 Fedora Release Engineering - 1.14-40 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + * Mon May 30 2022 Jitka Plesnikova - 1.14-39 - Perl 5.36 rebuild From 24913ce99af7f0f12206db6152e867e2251b96aa Mon Sep 17 00:00:00 2001 From: Jitka Plesnikova Date: Fri, 13 Jan 2023 21:18:35 +0100 Subject: [PATCH 06/20] Remove perl(MODULE_COMPAT), it will be replaced by generators --- whatsup.spec | 1 - 1 file changed, 1 deletion(-) diff --git a/whatsup.spec b/whatsup.spec index 807f67a..87ede8e 100644 --- a/whatsup.spec +++ b/whatsup.spec @@ -96,7 +96,6 @@ pingd daemon for %{name} %package -n perl-%{libname} Summary: Perl bindings for %{libname} Requires: %{libname} = %{version}-%{release} -Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description -n perl-%{libname} Perl bindings for %{libname} From 5ca4899cb702142ce9cb968b02ae217cdd9b98dc Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 21 Jan 2023 06:47:14 +0000 Subject: [PATCH 07/20] Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- whatsup.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/whatsup.spec b/whatsup.spec index 87ede8e..3f27163 100644 --- a/whatsup.spec +++ b/whatsup.spec @@ -11,7 +11,7 @@ Summary: Node up/down detection utility Name: whatsup Version: 1.14 -Release: 40%{?dist} +Release: 41%{?dist} License: GPLv2+ URL: https://computing.llnl.gov/linux/whatsup.html Source0: http://downloads.sourceforge.net/project/%{name}/%{name}/%{version}-1/%{name}-%{version}.tar.gz @@ -316,6 +316,9 @@ fi %changelog +* Sat Jan 21 2023 Fedora Release Engineering - 1.14-41 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + * Sat Jul 23 2022 Fedora Release Engineering - 1.14-40 - Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild From 30a90cfec6f22b33d65ae06b4f8340eeb4f13165 Mon Sep 17 00:00:00 2001 From: Jitka Plesnikova Date: Tue, 11 Jul 2023 16:32:19 +0200 Subject: [PATCH 08/20] Perl 5.38 rebuild --- whatsup.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/whatsup.spec b/whatsup.spec index 3f27163..86f7e9f 100644 --- a/whatsup.spec +++ b/whatsup.spec @@ -11,7 +11,7 @@ Summary: Node up/down detection utility Name: whatsup Version: 1.14 -Release: 41%{?dist} +Release: 42%{?dist} License: GPLv2+ URL: https://computing.llnl.gov/linux/whatsup.html Source0: http://downloads.sourceforge.net/project/%{name}/%{name}/%{version}-1/%{name}-%{version}.tar.gz @@ -316,6 +316,9 @@ fi %changelog +* Tue Jul 11 2023 Jitka Plesnikova - 1.14-42 +- Perl 5.38 rebuild + * Sat Jan 21 2023 Fedora Release Engineering - 1.14-41 - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild From 0c51d40c5a36bcb148f10b8d2d13331bb01ce0ec Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 22 Jul 2023 18:10:11 +0000 Subject: [PATCH 09/20] Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- whatsup.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/whatsup.spec b/whatsup.spec index 86f7e9f..a191e37 100644 --- a/whatsup.spec +++ b/whatsup.spec @@ -11,7 +11,7 @@ Summary: Node up/down detection utility Name: whatsup Version: 1.14 -Release: 42%{?dist} +Release: 43%{?dist} License: GPLv2+ URL: https://computing.llnl.gov/linux/whatsup.html Source0: http://downloads.sourceforge.net/project/%{name}/%{name}/%{version}-1/%{name}-%{version}.tar.gz @@ -316,6 +316,9 @@ fi %changelog +* Sat Jul 22 2023 Fedora Release Engineering - 1.14-43 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + * Tue Jul 11 2023 Jitka Plesnikova - 1.14-42 - Perl 5.38 rebuild From 9e2a5dce5a8d5ca6a2bf59f60cc76bae9ed2b298 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 27 Jan 2024 08:43:09 +0000 Subject: [PATCH 10/20] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild --- whatsup.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/whatsup.spec b/whatsup.spec index a191e37..4227cd8 100644 --- a/whatsup.spec +++ b/whatsup.spec @@ -11,7 +11,7 @@ Summary: Node up/down detection utility Name: whatsup Version: 1.14 -Release: 43%{?dist} +Release: 44%{?dist} License: GPLv2+ URL: https://computing.llnl.gov/linux/whatsup.html Source0: http://downloads.sourceforge.net/project/%{name}/%{name}/%{version}-1/%{name}-%{version}.tar.gz @@ -316,6 +316,9 @@ fi %changelog +* Sat Jan 27 2024 Fedora Release Engineering - 1.14-44 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Sat Jul 22 2023 Fedora Release Engineering - 1.14-43 - Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild From 988541aa2d3f2cb0ce9ad3d7f7606ececf4b322b Mon Sep 17 00:00:00 2001 From: Software Management Team Date: Thu, 30 May 2024 12:46:49 +0200 Subject: [PATCH 11/20] Eliminate use of obsolete %patchN syntax (#2283636) --- whatsup.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/whatsup.spec b/whatsup.spec index 4227cd8..1c35976 100644 --- a/whatsup.spec +++ b/whatsup.spec @@ -118,8 +118,8 @@ Genders clusterlist module for %{libname} %prep %setup -q -%patch0 -p0 -%patch1 -p1 +%patch -P0 -p0 +%patch -P1 -p1 %if 0%{?fedora} > 17 autoreconf -I config -f -i %endif From dbddbde50330ea4435f490e78d47f1e09bb9f569 Mon Sep 17 00:00:00 2001 From: Jitka Plesnikova Date: Mon, 10 Jun 2024 20:09:48 +0200 Subject: [PATCH 12/20] Perl 5.40 rebuild --- whatsup.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/whatsup.spec b/whatsup.spec index 1c35976..00b109d 100644 --- a/whatsup.spec +++ b/whatsup.spec @@ -11,7 +11,7 @@ Summary: Node up/down detection utility Name: whatsup Version: 1.14 -Release: 44%{?dist} +Release: 45%{?dist} License: GPLv2+ URL: https://computing.llnl.gov/linux/whatsup.html Source0: http://downloads.sourceforge.net/project/%{name}/%{name}/%{version}-1/%{name}-%{version}.tar.gz @@ -316,6 +316,9 @@ fi %changelog +* Mon Jun 10 2024 Jitka Plesnikova - 1.14-45 +- Perl 5.40 rebuild + * Sat Jan 27 2024 Fedora Release Engineering - 1.14-44 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From 71456af3490f30f5017e7e3b0fc52a4b9f7d1f38 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 20 Jul 2024 09:18:07 +0000 Subject: [PATCH 13/20] Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild --- whatsup.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/whatsup.spec b/whatsup.spec index 00b109d..8f717a0 100644 --- a/whatsup.spec +++ b/whatsup.spec @@ -11,7 +11,7 @@ Summary: Node up/down detection utility Name: whatsup Version: 1.14 -Release: 45%{?dist} +Release: 46%{?dist} License: GPLv2+ URL: https://computing.llnl.gov/linux/whatsup.html Source0: http://downloads.sourceforge.net/project/%{name}/%{name}/%{version}-1/%{name}-%{version}.tar.gz @@ -316,6 +316,9 @@ fi %changelog +* Sat Jul 20 2024 Fedora Release Engineering - 1.14-46 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + * Mon Jun 10 2024 Jitka Plesnikova - 1.14-45 - Perl 5.40 rebuild From 0df6a73258bd7a850ecff51c29eca918d1cd835c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Fri, 26 Jul 2024 03:39:44 +0200 Subject: [PATCH 14/20] convert GPLv2+ license to SPDX This is part of https://fedoraproject.org/wiki/Changes/SPDX_Licenses_Phase_4 --- whatsup.spec | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/whatsup.spec b/whatsup.spec index 8f717a0..42c2623 100644 --- a/whatsup.spec +++ b/whatsup.spec @@ -11,8 +11,9 @@ Summary: Node up/down detection utility Name: whatsup Version: 1.14 -Release: 46%{?dist} -License: GPLv2+ +Release: 47%{?dist} +# Automatically converted from old format: GPLv2+ - review is highly recommended. +License: GPL-2.0-or-later URL: https://computing.llnl.gov/linux/whatsup.html Source0: http://downloads.sourceforge.net/project/%{name}/%{name}/%{version}-1/%{name}-%{version}.tar.gz Source1: %{name}-hostsfile @@ -316,6 +317,9 @@ fi %changelog +* Fri Jul 26 2024 Miroslav Suchý - 1.14-47 +- convert license to SPDX + * Sat Jul 20 2024 Fedora Release Engineering - 1.14-46 - Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild From b819536011e1d6ae1cea7238470b5f8a539c7301 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sun, 19 Jan 2025 14:58:20 +0000 Subject: [PATCH 15/20] Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild --- whatsup.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/whatsup.spec b/whatsup.spec index 42c2623..b6c9516 100644 --- a/whatsup.spec +++ b/whatsup.spec @@ -11,7 +11,7 @@ Summary: Node up/down detection utility Name: whatsup Version: 1.14 -Release: 47%{?dist} +Release: 48%{?dist} # Automatically converted from old format: GPLv2+ - review is highly recommended. License: GPL-2.0-or-later URL: https://computing.llnl.gov/linux/whatsup.html @@ -317,6 +317,9 @@ fi %changelog +* Sun Jan 19 2025 Fedora Release Engineering - 1.14-48 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + * Fri Jul 26 2024 Miroslav Suchý - 1.14-47 - convert license to SPDX From 446e5e94fc117af82755e61ace464ac70f11d011 Mon Sep 17 00:00:00 2001 From: Jitka Plesnikova Date: Mon, 7 Jul 2025 16:11:37 +0200 Subject: [PATCH 16/20] Perl 5.42 rebuild --- whatsup.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/whatsup.spec b/whatsup.spec index b6c9516..612b22b 100644 --- a/whatsup.spec +++ b/whatsup.spec @@ -11,7 +11,7 @@ Summary: Node up/down detection utility Name: whatsup Version: 1.14 -Release: 48%{?dist} +Release: 49%{?dist} # Automatically converted from old format: GPLv2+ - review is highly recommended. License: GPL-2.0-or-later URL: https://computing.llnl.gov/linux/whatsup.html @@ -317,6 +317,9 @@ fi %changelog +* Mon Jul 07 2025 Jitka Plesnikova - 1.14-49 +- Perl 5.42 rebuild + * Sun Jan 19 2025 Fedora Release Engineering - 1.14-48 - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild From 811bc14c2a23f4b085e9d960171504aef2af873f Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 25 Jul 2025 20:23:55 +0000 Subject: [PATCH 17/20] Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild --- whatsup.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/whatsup.spec b/whatsup.spec index 612b22b..7902b02 100644 --- a/whatsup.spec +++ b/whatsup.spec @@ -11,7 +11,7 @@ Summary: Node up/down detection utility Name: whatsup Version: 1.14 -Release: 49%{?dist} +Release: 50%{?dist} # Automatically converted from old format: GPLv2+ - review is highly recommended. License: GPL-2.0-or-later URL: https://computing.llnl.gov/linux/whatsup.html @@ -317,6 +317,9 @@ fi %changelog +* Fri Jul 25 2025 Fedora Release Engineering - 1.14-50 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild + * Mon Jul 07 2025 Jitka Plesnikova - 1.14-49 - Perl 5.42 rebuild From b86f8c227b3bba719534fafdcb2d26dbb6adeff2 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 17 Jan 2026 20:13:01 +0000 Subject: [PATCH 18/20] Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild --- whatsup.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/whatsup.spec b/whatsup.spec index 7902b02..987e7ec 100644 --- a/whatsup.spec +++ b/whatsup.spec @@ -11,7 +11,7 @@ Summary: Node up/down detection utility Name: whatsup Version: 1.14 -Release: 50%{?dist} +Release: 51%{?dist} # Automatically converted from old format: GPLv2+ - review is highly recommended. License: GPL-2.0-or-later URL: https://computing.llnl.gov/linux/whatsup.html @@ -317,6 +317,9 @@ fi %changelog +* Sat Jan 17 2026 Fedora Release Engineering - 1.14-51 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild + * Fri Jul 25 2025 Fedora Release Engineering - 1.14-50 - Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild From dc06683ca1b44438441ffd4f5a4901291b9e48ad Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 17 Jul 2026 08:47:21 +0000 Subject: [PATCH 19/20] Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild --- whatsup.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/whatsup.spec b/whatsup.spec index 987e7ec..27eeb56 100644 --- a/whatsup.spec +++ b/whatsup.spec @@ -11,7 +11,7 @@ Summary: Node up/down detection utility Name: whatsup Version: 1.14 -Release: 51%{?dist} +Release: 52%{?dist} # Automatically converted from old format: GPLv2+ - review is highly recommended. License: GPL-2.0-or-later URL: https://computing.llnl.gov/linux/whatsup.html @@ -317,6 +317,9 @@ fi %changelog +* Fri Jul 17 2026 Fedora Release Engineering - 1.14-52 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild + * Sat Jan 17 2026 Fedora Release Engineering - 1.14-51 - Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild From 737a6505acb0566c860beb80aca85f63e7dac700 Mon Sep 17 00:00:00 2001 From: Jitka Plesnikova Date: Wed, 22 Jul 2026 18:36:55 +0200 Subject: [PATCH 20/20] Perl 5.44 rebuild --- whatsup.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/whatsup.spec b/whatsup.spec index 27eeb56..0aaa840 100644 --- a/whatsup.spec +++ b/whatsup.spec @@ -11,7 +11,7 @@ Summary: Node up/down detection utility Name: whatsup Version: 1.14 -Release: 52%{?dist} +Release: 53%{?dist} # Automatically converted from old format: GPLv2+ - review is highly recommended. License: GPL-2.0-or-later URL: https://computing.llnl.gov/linux/whatsup.html @@ -317,6 +317,9 @@ fi %changelog +* Wed Jul 22 2026 Jitka Plesnikova - 1.14-53 +- Perl 5.44 rebuild + * Fri Jul 17 2026 Fedora Release Engineering - 1.14-52 - Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild