From 0dcffde1d497b08da83906a2f6ec8dddbc76d6ce33310a967719dc8fb38be7f5 Mon Sep 17 00:00:00 2001 From: "Dr. Werner Fink" Date: Tue, 30 Oct 2018 10:48:18 +0000 Subject: [PATCH] Update to mailutils-3.5 OBS-URL: https://build.opensuse.org/package/show/server:mail/mailutils?expand=0&rev=14 --- mailutils-3.4.tar.xz | 3 --- mailutils-3.5.tar.xz | 3 +++ mailutils.changes | 36 ++++++++++++++++++++++++++++ mailutils.spec | 8 +++---- mimeview_lexer_format-security.patch | 13 ---------- 5 files changed, 42 insertions(+), 21 deletions(-) delete mode 100644 mailutils-3.4.tar.xz create mode 100644 mailutils-3.5.tar.xz delete mode 100644 mimeview_lexer_format-security.patch diff --git a/mailutils-3.4.tar.xz b/mailutils-3.4.tar.xz deleted file mode 100644 index 671de9c..0000000 --- a/mailutils-3.4.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f39f528cf6eebc9a045658bd98c86619002f06df4664647e4f78e27e90c62173 -size 2619672 diff --git a/mailutils-3.5.tar.xz b/mailutils-3.5.tar.xz new file mode 100644 index 0000000..ac90222 --- /dev/null +++ b/mailutils-3.5.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bac687b5fdb139fcc569dd2f32f21663cc95e378e721b69488963b347839a2f3 +size 2742824 diff --git a/mailutils.changes b/mailutils.changes index 95793ed..e4567a6 100644 --- a/mailutils.changes +++ b/mailutils.changes @@ -1,3 +1,39 @@ +------------------------------------------------------------------- +Tue Oct 30 10:40:54 UTC 2018 - Dr. Werner Fink + +- Update to mailutils 3.5 + * Support for Guile version 2.2.0 and later + Support for prior versions has been withdrawn. + * New scheme functions + + mu-encoder-port port name . args + + mu-decoder-port port name . args + + mu-header-decode hdr [charset] + + mu-header-encode hdr [encoding [charset]] + * Introduced support for Python 3.x + * Define sieve variables from the command line + The sieve utility now allows you to supply initial values for + RFC 5229 variables using the --variable command line option, e.g. + sieve --variable mailbox=outgoing + * Support for Berkeley DB versions 5 and 6 + * headline variable in the mail utility + The new %D specifier has been implemented, which allows the user to + supply arbitrary strftime(3) format string for outputting message + date/time. E.g.: + set headline="%4m %20D{%Y-%m-%dT%H:%M:%S} %18f %s" + In simplified form, %D can be followed by a single time format + specifier. E.g. %DH can be used instead of %D{%H}. + * Bugfixes + + Fix alignment specifiers in the headline variable (mail utility) + + Fix eventual segmentation violation in imap4d + It occurred when a recently started subprocess received a termination + signal before initializing its I/O subsystem. Most often this happens + when the master process is being shut down. + + Fix endianness bug in string to IP conversion + + Force terminating null character in the output of mh_format + + Fix bug in base64 encoder - don't return immediately upon receiving eof + + Fix command expansion in wordsplit +- Remove patch mimeview_lexer_format-security.patch now upstream + ------------------------------------------------------------------- Fri Aug 3 09:45:20 UTC 2018 - werner@suse.de diff --git a/mailutils.spec b/mailutils.spec index dbca98c..b9e392e 100644 --- a/mailutils.spec +++ b/mailutils.spec @@ -23,16 +23,15 @@ %define somajor 5 Name: mailutils -Version: 3.4 +Version: 3.5 Release: 0 Summary: GNU Mailutils License: LGPL-3.0-or-later AND GPL-3.0-or-later Group: Productivity/Networking/Email/Clients Url: https://mailutils.org/ -Source: ftp://ftp.gnu.org/gnu/mailutils/mailutils-3.4.tar.xz -Source1: mailutils-rpmlintrc +Source: ftp://ftp.gnu.org/gnu/mailutils/%{name}-%{version}.tar.xz +Source1: %{name}-rpmlintrc Patch0: lisp-load-silent.patch -Patch1: mimeview_lexer_format-security.patch Patch2: silent-rpmlint-with_initgroups.patch BuildRequires: bison BuildRequires: cpio @@ -171,7 +170,6 @@ implementations: UNIX mailbox, Maildir, MH, POP3, IMAP4, even SMTP. %prep %setup -q %patch0 -%patch1 -p1 %patch2 # # Avoid build require for emacs as emacs does diff --git a/mimeview_lexer_format-security.patch b/mimeview_lexer_format-security.patch deleted file mode 100644 index 685664c..0000000 --- a/mimeview_lexer_format-security.patch +++ /dev/null @@ -1,13 +0,0 @@ -Index: mailutils/mimeview/lexer.l -=================================================================== ---- mailutils.orig/mimeview/lexer.l -+++ mailutils/mimeview/lexer.l -@@ -277,7 +277,7 @@ mimetypes_close () - int - yyerror (char *s) - { -- mu_error (s); -+ mu_error ("%s", s); - return 0; - } -