package/mutt: bump to version 2.2.0

libgsasl is an optional dependency since
68caf9140c

http://www.mutt.org/relnotes/2.2/
https://gitlab.com/muttmua/mutt/-/blob/mutt-2-2-rel/ChangeLog

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
This commit is contained in:
Fabrice Fontaine 2022-02-13 22:51:59 +01:00 committed by Arnout Vandecappelle (Essensium/Mind)
parent f5a8485963
commit d1ca33e812
2 changed files with 11 additions and 3 deletions

View File

@ -1,3 +1,3 @@
# Locally calculated
sha256 92a309e47e363a97d62425bcb71adceae5ab5c4c413dbcac37fa98ed70c12be0 mutt-2.1.5.tar.gz
sha256 e84597f06d03ca82f8ca3b5ec8bc294c150709b43ed2a0177bf479c3e3345314 mutt-2.2.0.tar.gz
sha256 732f24b69a6c71cd8e01e4672bb8e12cc1cbb88a50a4665e6ca4fd95000a57ee GPL

View File

@ -4,7 +4,7 @@
#
################################################################################
MUTT_VERSION = 2.1.5
MUTT_VERSION = 2.2.0
MUTT_SITE = https://bitbucket.org/mutt/mutt/downloads
MUTT_LICENSE = GPL-2.0+
MUTT_LICENSE_FILES = GPL
@ -53,8 +53,15 @@ else
MUTT_CONF_OPTS += --disable-pop
endif
# SSL support is only used by imap or pop3 module
# SASL and SSL support are only used by imap or pop3 module
ifneq ($(BR2_PACKAGE_MUTT_IMAP)$(BR2_PACKAGE_MUTT_POP3),)
ifeq ($(BR2_PACKAGE_LIBGSASL),y)
MUTT_DEPENDENCIES += libgsasl
MUTT_CONF_OPTS += --with-gsasl
else
MUTT_CONF_OPTS += --without-gsasl
endif
ifeq ($(BR2_PACKAGE_OPENSSL),y)
MUTT_DEPENDENCIES += openssl
MUTT_CONF_OPTS += \
@ -72,6 +79,7 @@ MUTT_CONF_OPTS += \
endif
else
MUTT_CONF_OPTS += \
--without-gsasl \
--without-gnutls \
--without-ssl
endif