diff --git a/msmtp-1.8.4.tar.xz b/msmtp-1.8.4.tar.xz deleted file mode 100644 index 2f5b7e6..0000000 --- a/msmtp-1.8.4.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e5dd7fe95bc8e2f5eea3e4894ec9628252f30bd700a7fd1a568b10efa91129f7 -size 337292 diff --git a/msmtp-1.8.4.tar.xz.sig b/msmtp-1.8.4.tar.xz.sig deleted file mode 100644 index 0078516..0000000 Binary files a/msmtp-1.8.4.tar.xz.sig and /dev/null differ diff --git a/msmtp-1.8.5.tar.xz b/msmtp-1.8.5.tar.xz new file mode 100644 index 0000000..13085ec --- /dev/null +++ b/msmtp-1.8.5.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1613daced9c47b8c028224fc076799c2a4d72923e242be4e9e5c984cbbbb9f39 +size 338840 diff --git a/msmtp-1.8.5.tar.xz.sig b/msmtp-1.8.5.tar.xz.sig new file mode 100644 index 0000000..8d712c2 Binary files /dev/null and b/msmtp-1.8.5.tar.xz.sig differ diff --git a/msmtp.changes b/msmtp.changes index 2f0f9bd..6c91e0a 100644 --- a/msmtp.changes +++ b/msmtp.changes @@ -1,3 +1,13 @@ +------------------------------------------------------------------- +Fri Jul 12 18:22:21 UTC 2019 - Benoît Monin + +- update to version 1.8.5: + * Fixed OAUTHBEARER. + * Support for TLS client certificates via PKCS11 devices, e.g. + smart cards. + * Various small bug fixes and improvements. +- fix sh scripts shebang, in addition to bash scripts + ------------------------------------------------------------------- Wed Apr 24 18:48:28 UTC 2019 - Benoît Monin diff --git a/msmtp.spec b/msmtp.spec index 0d88bd0..4250199 100644 --- a/msmtp.spec +++ b/msmtp.spec @@ -17,7 +17,7 @@ Name: msmtp -Version: 1.8.4 +Version: 1.8.5 Release: 0 BuildRequires: gnutls-devel BuildRequires: libidn2-devel @@ -97,13 +97,13 @@ a minimalistic replacement of sendmail. %prep %setup -q -# fix bash scripts shebang while preserving mtime +# fix bash and sh scripts shebang while preserving mtime for i in scripts/msmtpqueue/*.sh \ scripts/msmtpq/msmtpq \ scripts/msmtpq/msmtp-queue \ scripts/set_sendmail/*.sh \ scripts/find_alias/*.sh; do - sed '1 s|#!/usr/bin/env bash|#!/bin/bash|' $i > $i.new + sed '1 s|#!/usr/bin/env \(.*\)|#!/bin/\1|' $i > $i.new touch -r $i $i.new mv $i.new $i done