From 53234dce601b5be6f61da44ebd3e7d84054a539f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Mu=C5=BEila?= Date: Mon, 1 Apr 2019 17:03:23 +0200 Subject: [PATCH 01/19] Add smoke test --- tests/tests.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 tests/tests.yml diff --git a/tests/tests.yml b/tests/tests.yml new file mode 100644 index 0000000..fad7c5d --- /dev/null +++ b/tests/tests.yml @@ -0,0 +1,9 @@ +- hosts: localhost + roles: + - role: standard-test-basic + tags: + - classic + tests: + - simple: + dir: . + run: mutt --help From 80443b662e740677848e9997806cabe402545a61 Mon Sep 17 00:00:00 2001 From: Filip Janus Date: Wed, 23 Mar 2022 15:08:53 +0100 Subject: [PATCH 02/19] enable CI --- .fmf/version | 1 + ci.fmf | 9 +++++++++ 2 files changed, 10 insertions(+) create mode 100644 .fmf/version create mode 100644 ci.fmf diff --git a/.fmf/version b/.fmf/version new file mode 100644 index 0000000..d00491f --- /dev/null +++ b/.fmf/version @@ -0,0 +1 @@ +1 diff --git a/ci.fmf b/ci.fmf new file mode 100644 index 0000000..d9bf436 --- /dev/null +++ b/ci.fmf @@ -0,0 +1,9 @@ +/test: + summary: + Basic set of quick tests for mutt. + discover: + - name: fedora + how: fmf + url: "https://src.fedoraproject.org/tests/mutt.git" + execute: + how: tmt From e3bef1eb9143708200b55b7bf8724663becf9340 Mon Sep 17 00:00:00 2001 From: Florian Weimer Date: Thu, 7 Dec 2023 19:42:15 +0100 Subject: [PATCH 03/19] Fix C99 compatibility issue Related to: --- mutt-configure-c99.patch | 24 ++++++++++++++++++++++++ mutt.spec | 7 ++++++- 2 files changed, 30 insertions(+), 1 deletion(-) create mode 100644 mutt-configure-c99.patch diff --git a/mutt-configure-c99.patch b/mutt-configure-c99.patch new file mode 100644 index 0000000..0ea7010 --- /dev/null +++ b/mutt-configure-c99.patch @@ -0,0 +1,24 @@ +The standard iconv function uses char ** even for its input +argument. With a const char ** argument, ICONV_NONTRANS is incorrectly +set to 1 if the compiler produces an error for such incompatible +pointer types. + +Submitted upstream: + +diff --git a/configure.ac b/configure.ac +index 9fe461df2a5af3a8..443da363081343c5 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -1322,10 +1322,10 @@ AC_CACHE_CHECK([whether iconv is non-transcribing], mutt_cv_iconv_nontrans, + int main() + { + iconv_t cd; +- const char *ib; ++ char *ib; + char *ob; + size_t ibl, obl; +- const char *s = "\304\211"; ++ char *s = (char *) "\304\211"; + changequote(, )dnl + char t[3]; + changequote([, ])dnl diff --git a/mutt.spec b/mutt.spec index 6e0a258..7b50be4 100644 --- a/mutt.spec +++ b/mutt.spec @@ -20,7 +20,7 @@ Summary: A text mode mail user agent Name: mutt Version: 2.2.12 -Release: 1%{?dist} +Release: 2%{?dist} Epoch: 5 # The entire source code is GPLv2+ except # pgpewrap.c setenv.c sha1.c wcwidth.c which are Public Domain @@ -38,6 +38,7 @@ Patch9: mutt-1.9.0-ssl_ciphers.patch Patch10: mutt-1.9.4-lynx_no_backscapes.patch Patch12: mutt-1.9.5-nodotlock.patch Patch13: mutt-1.12.1-optusegpgagent.patch +Patch14: mutt-configure-c99.patch Url: http://www.mutt.org Requires: mailcap, urlview @@ -86,6 +87,7 @@ for selecting groups of messages. %patch10 -p1 -b .lynx_no_backscapes %patch12 -p1 -b .nodotlock +%patch14 -p1 autoreconf --install %patch1 -p1 -b .muttrc @@ -218,6 +220,9 @@ ln -sf ./muttrc.5 %{buildroot}%{_mandir}/man5/muttrc.local.5 %changelog +* Thu Dec 7 2023 Florian Weimer - 5:2.2.12-2 +- Fix C99 compatibility issue + * Mon Nov 13 2023 Matej Mužila - 5:2.2.12-1 - Upgrade to 2.2.12 - Resolves: #2232712 From 0fa6eebf327c12a1f15245ab4b08f24e1302228a Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sun, 21 Jan 2024 08:56:43 +0000 Subject: [PATCH 04/19] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild --- mutt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mutt.spec b/mutt.spec index 7b50be4..a674a7c 100644 --- a/mutt.spec +++ b/mutt.spec @@ -20,7 +20,7 @@ Summary: A text mode mail user agent Name: mutt Version: 2.2.12 -Release: 2%{?dist} +Release: 3%{?dist} Epoch: 5 # The entire source code is GPLv2+ except # pgpewrap.c setenv.c sha1.c wcwidth.c which are Public Domain @@ -220,6 +220,9 @@ ln -sf ./muttrc.5 %{buildroot}%{_mandir}/man5/muttrc.local.5 %changelog +* Sun Jan 21 2024 Fedora Release Engineering - 5:2.2.12-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Thu Dec 7 2023 Florian Weimer - 5:2.2.12-2 - Fix C99 compatibility issue From ee3bf57ab63922f41820a3fe8cd4290ba73209d1 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 25 Jan 2024 08:26:09 +0000 Subject: [PATCH 05/19] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild --- mutt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mutt.spec b/mutt.spec index a674a7c..681a524 100644 --- a/mutt.spec +++ b/mutt.spec @@ -20,7 +20,7 @@ Summary: A text mode mail user agent Name: mutt Version: 2.2.12 -Release: 3%{?dist} +Release: 4%{?dist} Epoch: 5 # The entire source code is GPLv2+ except # pgpewrap.c setenv.c sha1.c wcwidth.c which are Public Domain @@ -220,6 +220,9 @@ ln -sf ./muttrc.5 %{buildroot}%{_mandir}/man5/muttrc.local.5 %changelog +* Thu Jan 25 2024 Fedora Release Engineering - 5:2.2.12-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Sun Jan 21 2024 Fedora Release Engineering - 5:2.2.12-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From a76c12caff924deebddda5116f9621dc147fcd0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Tue, 13 Feb 2024 07:05:16 +0000 Subject: [PATCH 06/19] Migrate to SPDX license This is a part of https://fedoraproject.org/wiki/Changes/SPDX_Licenses_Phase_3 --- mutt.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mutt.spec b/mutt.spec index 681a524..72a1b68 100644 --- a/mutt.spec +++ b/mutt.spec @@ -24,7 +24,7 @@ Release: 4%{?dist} Epoch: 5 # The entire source code is GPLv2+ except # pgpewrap.c setenv.c sha1.c wcwidth.c which are Public Domain -License: GPLv2+ and Public Domain +License: GPL-2.0-or-later AND LicenseRef-Fedora-Public-Domain # hg snapshot created from http://dev.mutt.org/hg/mutt Source: ftp://ftp.mutt.org/pub/%{name}/%{name}-%{version}.tar.gz Source1: mutt_ldap_query From e744dda0d19fdb7729b554f31765ab33494e6289 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Mu=C5=BEila?= Date: Wed, 20 Mar 2024 16:27:13 +0100 Subject: [PATCH 07/19] Upgrade to 2.2.13 Resolves: #2268671 --- .gitignore | 1 + mutt.spec | 8 ++++++-- sources | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index f4959c6..98ee47d 100644 --- a/.gitignore +++ b/.gitignore @@ -56,3 +56,4 @@ mutt-1.5.23.tar.gz /mutt-2.2.10.tar.gz /mutt-2.2.11.tar.gz /mutt-2.2.12.tar.gz +/mutt-2.2.13.tar.gz diff --git a/mutt.spec b/mutt.spec index 72a1b68..6cc5a3b 100644 --- a/mutt.spec +++ b/mutt.spec @@ -19,8 +19,8 @@ Summary: A text mode mail user agent Name: mutt -Version: 2.2.12 -Release: 4%{?dist} +Version: 2.2.13 +Release: 1%{?dist} Epoch: 5 # The entire source code is GPLv2+ except # pgpewrap.c setenv.c sha1.c wcwidth.c which are Public Domain @@ -220,6 +220,10 @@ ln -sf ./muttrc.5 %{buildroot}%{_mandir}/man5/muttrc.local.5 %changelog +* Wed Mar 20 2024 Matej Mužila - 5:2.2.13-1 +- Upgrade to 2.2.13 +- Resolves: #2268671 + * Thu Jan 25 2024 Fedora Release Engineering - 5:2.2.12-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild diff --git a/sources b/sources index 4e3ecd9..abd72ee 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mutt-2.2.12.tar.gz) = 75e9926af9abc869929d7729cda67adc3710d15560b6a1853b1d95ca926a9e72d975bafa09ebd9a4919905498602a8b55cf72a576fad170c68902862e9474006 +SHA512 (mutt-2.2.13.tar.gz) = dcd84235b6f759c31b56cf021efc17c0bb1fd4d59226d12af9838f3cbbcf0301262ae5f67803565cce3afd6ff5eed3a380a81958f57fb7d8f38e2ecfd0ff7d2c From 35bad359ec417ad7d2ae7607c4a08c90afa06dbe Mon Sep 17 00:00:00 2001 From: Software Management Team Date: Thu, 30 May 2024 12:46:48 +0200 Subject: [PATCH 08/19] Eliminate use of obsolete %patchN syntax (#2283636) --- mutt.spec | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/mutt.spec b/mutt.spec index 6cc5a3b..755b3e2 100644 --- a/mutt.spec +++ b/mutt.spec @@ -85,17 +85,17 @@ for selecting groups of messages. %setup -q # do not run ./prepare -V, because it also runs ./configure -%patch10 -p1 -b .lynx_no_backscapes -%patch12 -p1 -b .nodotlock -%patch14 -p1 +%patch -P10 -p1 -b .lynx_no_backscapes +%patch -P12 -p1 -b .nodotlock +%patch -P14 -p1 autoreconf --install -%patch1 -p1 -b .muttrc -%patch2 -p1 -b .cabundle -%patch3 -p1 -b .syncdebug -%patch8 -p1 -b .system_certs -%patch9 -p1 -b .ssl_ciphers -%patch13 -p1 -b .optusegpgagent +%patch -P1 -p1 -b .muttrc +%patch -P2 -p1 -b .cabundle +%patch -P3 -p1 -b .syncdebug +%patch -P8 -p1 -b .system_certs +%patch -P9 -p1 -b .ssl_ciphers +%patch -P13 -p1 -b .optusegpgagent sed -i -r 's/`$GPGME_CONFIG --libs`/"\0 -lgpg-error"/' configure From 927aa1d2b6ddb5cc4a66940e682c0b99704322e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Sloup?= Date: Sun, 23 Jun 2024 19:48:41 +0200 Subject: [PATCH 09/19] Remove docbook2X BuildRequire dependency as it is being deprecated docbook2X is being deprecated in RHEL10, and as the mutt is the only package that requires it, the config has been edited, so it is not being used anymore. The build process is not changed otherwise as the build still passes, and no changes in the log have been observed, which seems to indicate that the package does not require it. --- mutt.spec | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/mutt.spec b/mutt.spec index 755b3e2..d38ffc7 100644 --- a/mutt.spec +++ b/mutt.spec @@ -20,7 +20,7 @@ Summary: A text mode mail user agent Name: mutt Version: 2.2.13 -Release: 1%{?dist} +Release: 2%{?dist} Epoch: 5 # The entire source code is GPLv2+ except # pgpewrap.c setenv.c sha1.c wcwidth.c which are Public Domain @@ -49,7 +49,6 @@ BuildRequires: ncurses-devel, gettext, automake BuildRequires: /usr/bin/xsltproc, docbook-style-xsl, perl-interpreter BuildRequires: perl-generators BuildRequires: lynx -BuildRequires: docbook2X %if %{with hcache} %{?with_tokyocabinet:BuildRequires: tokyocabinet-devel} @@ -220,6 +219,9 @@ ln -sf ./muttrc.5 %{buildroot}%{_mandir}/man5/muttrc.local.5 %changelog +* Sat Jun 22 2024 Ondrej Sloup - 5:2.2.13-2 +- Remove docbookX2 BuildRequire dependency as it is being deprecated + * Wed Mar 20 2024 Matej Mužila - 5:2.2.13-1 - Upgrade to 2.2.13 - Resolves: #2268671 From beb1e14f00893f24edd12061594c7d6f2961dc6d Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 18 Jul 2024 18:57:56 +0000 Subject: [PATCH 10/19] Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild --- mutt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mutt.spec b/mutt.spec index d38ffc7..ceeb0a1 100644 --- a/mutt.spec +++ b/mutt.spec @@ -20,7 +20,7 @@ Summary: A text mode mail user agent Name: mutt Version: 2.2.13 -Release: 2%{?dist} +Release: 3%{?dist} Epoch: 5 # The entire source code is GPLv2+ except # pgpewrap.c setenv.c sha1.c wcwidth.c which are Public Domain @@ -219,6 +219,9 @@ ln -sf ./muttrc.5 %{buildroot}%{_mandir}/man5/muttrc.local.5 %changelog +* Thu Jul 18 2024 Fedora Release Engineering - 5:2.2.13-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + * Sat Jun 22 2024 Ondrej Sloup - 5:2.2.13-2 - Remove docbookX2 BuildRequire dependency as it is being deprecated From fc86062c7c39eb353af9aad3e788e03c307162fc Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 17 Jan 2025 19:28:19 +0000 Subject: [PATCH 11/19] Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild --- mutt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mutt.spec b/mutt.spec index ceeb0a1..67d410c 100644 --- a/mutt.spec +++ b/mutt.spec @@ -20,7 +20,7 @@ Summary: A text mode mail user agent Name: mutt Version: 2.2.13 -Release: 3%{?dist} +Release: 4%{?dist} Epoch: 5 # The entire source code is GPLv2+ except # pgpewrap.c setenv.c sha1.c wcwidth.c which are Public Domain @@ -219,6 +219,9 @@ ln -sf ./muttrc.5 %{buildroot}%{_mandir}/man5/muttrc.local.5 %changelog +* Fri Jan 17 2025 Fedora Release Engineering - 5:2.2.13-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + * Thu Jul 18 2024 Fedora Release Engineering - 5:2.2.13-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild From 76baa05bfb39fe566141b7c7d24262b63d1ef77a Mon Sep 17 00:00:00 2001 From: Michal Hlavinka Date: Mon, 24 Feb 2025 23:20:42 +0100 Subject: [PATCH 12/19] updated to 2.2.14 (#2346767) --- .gitignore | 1 + mutt.spec | 11 +++++++---- sources | 2 +- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 98ee47d..a00c28f 100644 --- a/.gitignore +++ b/.gitignore @@ -57,3 +57,4 @@ mutt-1.5.23.tar.gz /mutt-2.2.11.tar.gz /mutt-2.2.12.tar.gz /mutt-2.2.13.tar.gz +/mutt-2.2.14.tar.gz diff --git a/mutt.spec b/mutt.spec index 67d410c..1057756 100644 --- a/mutt.spec +++ b/mutt.spec @@ -19,14 +19,14 @@ Summary: A text mode mail user agent Name: mutt -Version: 2.2.13 -Release: 4%{?dist} +Version: 2.2.14 +Release: 1%{?dist} Epoch: 5 # The entire source code is GPLv2+ except # pgpewrap.c setenv.c sha1.c wcwidth.c which are Public Domain License: GPL-2.0-or-later AND LicenseRef-Fedora-Public-Domain # hg snapshot created from http://dev.mutt.org/hg/mutt -Source: ftp://ftp.mutt.org/pub/%{name}/%{name}-%{version}.tar.gz +Source: http://ftp.mutt.org/pub/%{name}/%{name}-%{version}.tar.gz Source1: mutt_ldap_query Patch1: mutt-1.10.0-muttrc.patch Patch2: mutt-1.8.0-cabundle.patch @@ -189,7 +189,7 @@ rm -f %{buildroot}%{_mandir}/man5/mmdf.5* rm -rf %{buildroot}%{_pkgdocdir} # remove /usr/share/info/dir -rm %{buildroot}%{_infodir}/dir +rm -f %{buildroot}%{_infodir}/dir # provide muttrc.local(5): the same as muttrc(5) ln -sf ./muttrc.5 %{buildroot}%{_mandir}/man5/muttrc.local.5 @@ -219,6 +219,9 @@ ln -sf ./muttrc.5 %{buildroot}%{_mandir}/man5/muttrc.local.5 %changelog +* Mon Feb 24 2025 Michal Hlavinka - 5:2.2.14-1 +- updated to 2.2.14 (#2346767) + * Fri Jan 17 2025 Fedora Release Engineering - 5:2.2.13-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild diff --git a/sources b/sources index abd72ee..0595e3f 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mutt-2.2.13.tar.gz) = dcd84235b6f759c31b56cf021efc17c0bb1fd4d59226d12af9838f3cbbcf0301262ae5f67803565cce3afd6ff5eed3a380a81958f57fb7d8f38e2ecfd0ff7d2c +SHA512 (mutt-2.2.14.tar.gz) = 5c2aacc6a6be8e2be3ee5085c364383f7ed1b7fef730607c70d5e588f65a0fea8748b12b9cdadee7dabdaa5d3c5f94ebddc092737f0ce3b5022c8e5bc7e3c42f From f523ad5d1b44552ce1696647657186a491869493 Mon Sep 17 00:00:00 2001 From: Michal Hlavinka Date: Tue, 22 Jul 2025 23:42:31 +0200 Subject: [PATCH 13/19] adjust to Dropping of cert.pem file system change --- mutt-1.5.23-system_certs.patch | 19 ++++++++++++++----- mutt.spec | 5 ++++- 2 files changed, 18 insertions(+), 6 deletions(-) diff --git a/mutt-1.5.23-system_certs.patch b/mutt-1.5.23-system_certs.patch index dd1dc7f..2cb75fc 100644 --- a/mutt-1.5.23-system_certs.patch +++ b/mutt-1.5.23-system_certs.patch @@ -1,12 +1,21 @@ -diff -rup mutt-17a4f92e4a95-orig/init.h mutt-17a4f92e4a95-new/init.h ---- mutt-17a4f92e4a95-orig/init.h 2015-06-07 22:59:32.000000000 +0200 -+++ mutt-17a4f92e4a95-new/init.h 2015-06-25 15:28:56.095570332 +0200 -@@ -2989,7 +2989,7 @@ struct option_t MuttVars[] = { +diff -up mutt-2.2.14/init.h.system_certs mutt-2.2.14/init.h +--- mutt-2.2.14/init.h.system_certs 2025-02-20 06:31:10.000000000 +0100 ++++ mutt-2.2.14/init.h 2025-07-22 23:31:06.259171517 +0200 +@@ -4315,7 +4315,7 @@ struct option_t MuttVars[] = { */ #if defined(USE_SSL) # ifdef USE_SSL_GNUTLS - { "ssl_ca_certificates_file", DT_PATH, R_NONE, {.p=&SslCACertFile}, {.p=0} }, -+ { "ssl_ca_certificates_file", DT_PATH, R_NONE, {.p=&SslCACertFile}, {.p="/etc/ssl/certs/ca-bundle.crt"} }, ++ { "ssl_ca_certificates_file", DT_PATH, R_NONE, {.p=&SslCACertFile}, {.p="/etc/pki/ca-trust/extracted/pem/tls-ca-bundle.pem"} }, /* ** .pp ** This variable specifies a file containing trusted CA certificates. +@@ -4324,7 +4324,7 @@ struct option_t MuttVars[] = { + ** .pp + ** Example: + ** .ts +- ** set ssl_ca_certificates_file=/etc/ssl/certs/ca-certificates.crt ++ ** set ssl_ca_certificates_file=/etc/pki/ca-trust/extracted/pem/tls-ca-bundle.pem + ** .te + */ + # endif /* USE_SSL_GNUTLS */ diff --git a/mutt.spec b/mutt.spec index 1057756..3f76e10 100644 --- a/mutt.spec +++ b/mutt.spec @@ -20,7 +20,7 @@ Summary: A text mode mail user agent Name: mutt Version: 2.2.14 -Release: 1%{?dist} +Release: 2%{?dist} Epoch: 5 # The entire source code is GPLv2+ except # pgpewrap.c setenv.c sha1.c wcwidth.c which are Public Domain @@ -219,6 +219,9 @@ ln -sf ./muttrc.5 %{buildroot}%{_mandir}/man5/muttrc.local.5 %changelog +* Tue Jul 22 2025 Michal Hlavinka - 5:2.2.14-2 +- adjust to Dropping of cert.pem file system change + * Mon Feb 24 2025 Michal Hlavinka - 5:2.2.14-1 - updated to 2.2.14 (#2346767) From 22697dfee7b89365795f893cd7801f4c2a95293b Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 24 Jul 2025 22:31:33 +0000 Subject: [PATCH 14/19] Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild --- mutt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mutt.spec b/mutt.spec index 3f76e10..f049d30 100644 --- a/mutt.spec +++ b/mutt.spec @@ -20,7 +20,7 @@ Summary: A text mode mail user agent Name: mutt Version: 2.2.14 -Release: 2%{?dist} +Release: 3%{?dist} Epoch: 5 # The entire source code is GPLv2+ except # pgpewrap.c setenv.c sha1.c wcwidth.c which are Public Domain @@ -219,6 +219,9 @@ ln -sf ./muttrc.5 %{buildroot}%{_mandir}/man5/muttrc.local.5 %changelog +* Thu Jul 24 2025 Fedora Release Engineering - 5:2.2.14-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild + * Tue Jul 22 2025 Michal Hlavinka - 5:2.2.14-2 - adjust to Dropping of cert.pem file system change From a369e6f586ec82bae110ee579270b5a1e6797cfc Mon Sep 17 00:00:00 2001 From: Michal Hlavinka Date: Fri, 1 Aug 2025 07:48:48 +0200 Subject: [PATCH 15/19] fix FTBFS (rhbz#2385201) --- mutt.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/mutt.spec b/mutt.spec index f049d30..0a45312 100644 --- a/mutt.spec +++ b/mutt.spec @@ -20,7 +20,7 @@ Summary: A text mode mail user agent Name: mutt Version: 2.2.14 -Release: 3%{?dist} +Release: 4%{?dist} Epoch: 5 # The entire source code is GPLv2+ except # pgpewrap.c setenv.c sha1.c wcwidth.c which are Public Domain @@ -88,7 +88,7 @@ for selecting groups of messages. %patch -P12 -p1 -b .nodotlock %patch -P14 -p1 -autoreconf --install +autoreconf -fiv %patch -P1 -p1 -b .muttrc %patch -P2 -p1 -b .cabundle %patch -P3 -p1 -b .syncdebug @@ -219,6 +219,9 @@ ln -sf ./muttrc.5 %{buildroot}%{_mandir}/man5/muttrc.local.5 %changelog +* Fri Aug 01 2025 Michal Hlavinka - 5:2.2.14-4 +- fix FTBFS (rhbz#2385201) + * Thu Jul 24 2025 Fedora Release Engineering - 5:2.2.14-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild From 339844f64d8dc0796e34ca6b27e1edd2c76a7603 Mon Sep 17 00:00:00 2001 From: Michal Hlavinka Date: Mon, 3 Nov 2025 11:59:54 +0100 Subject: [PATCH 16/19] updated to 2.2.15 (#2400970) --- .gitignore | 1 + mutt.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index a00c28f..ce59f3b 100644 --- a/.gitignore +++ b/.gitignore @@ -58,3 +58,4 @@ mutt-1.5.23.tar.gz /mutt-2.2.12.tar.gz /mutt-2.2.13.tar.gz /mutt-2.2.14.tar.gz +/mutt-2.2.15.tar.gz diff --git a/mutt.spec b/mutt.spec index 0a45312..60631b0 100644 --- a/mutt.spec +++ b/mutt.spec @@ -19,8 +19,8 @@ Summary: A text mode mail user agent Name: mutt -Version: 2.2.14 -Release: 4%{?dist} +Version: 2.2.15 +Release: 1%{?dist} Epoch: 5 # The entire source code is GPLv2+ except # pgpewrap.c setenv.c sha1.c wcwidth.c which are Public Domain @@ -219,6 +219,9 @@ ln -sf ./muttrc.5 %{buildroot}%{_mandir}/man5/muttrc.local.5 %changelog +* Mon Nov 03 2025 Michal Hlavinka - 5:2.2.15-1 +- updated to 2.2.15 (#2400970) + * Fri Aug 01 2025 Michal Hlavinka - 5:2.2.14-4 - fix FTBFS (rhbz#2385201) diff --git a/sources b/sources index 0595e3f..0f6eba1 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mutt-2.2.14.tar.gz) = 5c2aacc6a6be8e2be3ee5085c364383f7ed1b7fef730607c70d5e588f65a0fea8748b12b9cdadee7dabdaa5d3c5f94ebddc092737f0ce3b5022c8e5bc7e3c42f +SHA512 (mutt-2.2.15.tar.gz) = f72c6d372242e2e9a2f8cdd0e38db8acc5311a85a58f90791d2725aa033ca7dbcc68dddea65d3750c9ac53b3b8606e32bf7aef8f9e1586c2d312602e13c0159a From ad5864bed4274c510ccd63d7d938a56f25b1c055 Mon Sep 17 00:00:00 2001 From: Michal Hlavinka Date: Thu, 20 Nov 2025 10:43:25 +0100 Subject: [PATCH 17/19] rebuilt for new gpgme --- mutt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mutt.spec b/mutt.spec index 60631b0..2ba5482 100644 --- a/mutt.spec +++ b/mutt.spec @@ -20,7 +20,7 @@ Summary: A text mode mail user agent Name: mutt Version: 2.2.15 -Release: 1%{?dist} +Release: 2%{?dist} Epoch: 5 # The entire source code is GPLv2+ except # pgpewrap.c setenv.c sha1.c wcwidth.c which are Public Domain @@ -219,6 +219,9 @@ ln -sf ./muttrc.5 %{buildroot}%{_mandir}/man5/muttrc.local.5 %changelog +* Thu Nov 20 2025 Michal Hlavinka - 5:2.2.15-2 +- rebuilt for new gpgme + * Mon Nov 03 2025 Michal Hlavinka - 5:2.2.15-1 - updated to 2.2.15 (#2400970) From 2c6e217b88f5fb143f3e88fd4a308d8637ef1519 Mon Sep 17 00:00:00 2001 From: Michal Hlavinka Date: Sat, 27 Dec 2025 16:48:26 +0100 Subject: [PATCH 18/19] updated to 2.2.16 (#2416539) --- .gitignore | 1 + mutt.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index ce59f3b..475048d 100644 --- a/.gitignore +++ b/.gitignore @@ -59,3 +59,4 @@ mutt-1.5.23.tar.gz /mutt-2.2.13.tar.gz /mutt-2.2.14.tar.gz /mutt-2.2.15.tar.gz +/mutt-2.2.16.tar.gz diff --git a/mutt.spec b/mutt.spec index 2ba5482..6ad28e0 100644 --- a/mutt.spec +++ b/mutt.spec @@ -19,8 +19,8 @@ Summary: A text mode mail user agent Name: mutt -Version: 2.2.15 -Release: 2%{?dist} +Version: 2.2.16 +Release: 1%{?dist} Epoch: 5 # The entire source code is GPLv2+ except # pgpewrap.c setenv.c sha1.c wcwidth.c which are Public Domain @@ -219,6 +219,9 @@ ln -sf ./muttrc.5 %{buildroot}%{_mandir}/man5/muttrc.local.5 %changelog +* Sat Dec 27 2025 Michal Hlavinka - 5:2.2.16-1 +- updated to 2.2.16 (#2416539) + * Thu Nov 20 2025 Michal Hlavinka - 5:2.2.15-2 - rebuilt for new gpgme diff --git a/sources b/sources index 0f6eba1..18c4529 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mutt-2.2.15.tar.gz) = f72c6d372242e2e9a2f8cdd0e38db8acc5311a85a58f90791d2725aa033ca7dbcc68dddea65d3750c9ac53b3b8606e32bf7aef8f9e1586c2d312602e13c0159a +SHA512 (mutt-2.2.16.tar.gz) = 5048aa9af6d928be59fe42b0bdbf22fc46c1dd47582cc7036782bff5756af2410ba80f2398c1edbf7be59a96eaa6736c8b8eff198f0dfc8841fb744093a39f80 From 791bd84bf6c519a7ea164ed146902c42f3e5bbed Mon Sep 17 00:00:00 2001 From: Michal Hlavinka Date: Thu, 8 Jan 2026 15:58:44 +0100 Subject: [PATCH 19/19] rebuild --- mutt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mutt.spec b/mutt.spec index 6ad28e0..bcf2fc5 100644 --- a/mutt.spec +++ b/mutt.spec @@ -20,7 +20,7 @@ Summary: A text mode mail user agent Name: mutt Version: 2.2.16 -Release: 1%{?dist} +Release: 2%{?dist} Epoch: 5 # The entire source code is GPLv2+ except # pgpewrap.c setenv.c sha1.c wcwidth.c which are Public Domain @@ -219,6 +219,9 @@ ln -sf ./muttrc.5 %{buildroot}%{_mandir}/man5/muttrc.local.5 %changelog +* Thu Jan 08 2026 Michal Hlavinka - 5:2.2.16-2 +- rebuild + * Sat Dec 27 2025 Michal Hlavinka - 5:2.2.16-1 - updated to 2.2.16 (#2416539)