* [ptxdist] [PATCHv1] msmtp: version bump 1.4.30 -> 1.8.1
@ 2019-01-08 14:57 Oliver Graute
2019-01-11 15:42 ` Roland Hieber
0 siblings, 1 reply; 3+ messages in thread
From: Oliver Graute @ 2019-01-08 14:57 UTC (permalink / raw)
To: ptxdist, oliver.graute; +Cc: Oliver Graute
version bump from 1.4.30 to 1.81
- changed URL to project url
- renamed SSL to TLS
- dropped --without-gnome-keyring
Signed-off-by: Oliver Graute <oliver.graute@neuhaus.de>
---
rules/msmtp.in | 4 ++--
rules/msmtp.make | 11 +++++------
2 files changed, 7 insertions(+), 8 deletions(-)
diff --git a/rules/msmtp.in b/rules/msmtp.in
index 8c5a801..a937088 100644
--- a/rules/msmtp.in
+++ b/rules/msmtp.in
@@ -27,9 +27,9 @@ config MSMTP_GNUTLS
endchoice
-config MSMTP_SSL
+config MSMTP_TLS
string
- default "no" if MSMTP_NOSSL
+ default "no" if MSMTP_NOTLS
default "openssl" if MSMTP_OPENSSL
default "gnutls" if MSMTP_GNUTLS
diff --git a/rules/msmtp.make b/rules/msmtp.make
index 3c5ab0d..6cd2c02 100644
--- a/rules/msmtp.make
+++ b/rules/msmtp.make
@@ -16,11 +16,11 @@ PACKAGES-$(PTXCONF_MSMTP) += msmtp
#
# Paths and names
#
-MSMTP_VERSION := 1.4.30
-MSMTP_MD5 := 4d32724a2b03f07aa6d4ea9d49367ad3
+MSMTP_VERSION := 1.8.1
+MSMTP_MD5 := 64c153c384fa2bd4128ae73733c555d5
MSMTP := msmtp-$(MSMTP_VERSION)
-MSMTP_SUFFIX := tar.bz2
-MSMTP_URL := $(call ptx/mirror, SF, msmtp/$(MSMTP).$(MSMTP_SUFFIX))
+MSMTP_SUFFIX := tar.xz
+MSMTP_URL := https://marlam.de/msmtp/releases/$(MSMTP).$(MSMTP_SUFFIX))
MSMTP_SOURCE := $(SRCDIR)/$(MSMTP).$(MSMTP_SUFFIX)
MSMTP_DIR := $(BUILDDIR)/$(MSMTP)
MSMTP_LICENSE := GPL-3.0-only
@@ -38,10 +38,9 @@ MSMTP_CONF_OPT := \
$(GLOBAL_LARGE_FILE_OPTION) \
--disable-nls \
--disable-rpath \
- --with-ssl=$(PTXCONF_MSMTP_SSL) \
+ --with-tls=$(PTXCONF_MSMTP_TLS) \
--without-libgsasl \
--without-libidn \
- --without-gnome-keyring
# ----------------------------------------------------------------------------
# Target-Install
--
1.9.1
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [ptxdist] [PATCHv1] msmtp: version bump 1.4.30 -> 1.8.1
2019-01-08 14:57 [ptxdist] [PATCHv1] msmtp: version bump 1.4.30 -> 1.8.1 Oliver Graute
@ 2019-01-11 15:42 ` Roland Hieber
2019-01-11 16:14 ` Michael Olbrich
0 siblings, 1 reply; 3+ messages in thread
From: Roland Hieber @ 2019-01-11 15:42 UTC (permalink / raw)
To: ptxdist; +Cc: oliver.graute, Oliver Graute
On Tue, Jan 08, 2019 at 03:57:26PM +0100, Oliver Graute wrote:
> version bump from 1.4.30 to 1.81
>
> - changed URL to project url
> - renamed SSL to TLS
> - dropped --without-gnome-keyring
>
> Signed-off-by: Oliver Graute <oliver.graute@neuhaus.de>
> ---
> rules/msmtp.in | 4 ++--
> rules/msmtp.make | 11 +++++------
> 2 files changed, 7 insertions(+), 8 deletions(-)
>
> diff --git a/rules/msmtp.in b/rules/msmtp.in
> index 8c5a801..a937088 100644
> --- a/rules/msmtp.in
> +++ b/rules/msmtp.in
> @@ -27,9 +27,9 @@ config MSMTP_GNUTLS
>
> endchoice
>
> -config MSMTP_SSL
> +config MSMTP_TLS
If you rename a config option, also add a snippet to
scripts/migrate/migrate_ptx to ease migration from earlier PTXdist
releases (it's a simple awk script that does search-and-replace on the
kconfig file).
- Roland
> string
> - default "no" if MSMTP_NOSSL
> + default "no" if MSMTP_NOTLS
> default "openssl" if MSMTP_OPENSSL
> default "gnutls" if MSMTP_GNUTLS
>
> diff --git a/rules/msmtp.make b/rules/msmtp.make
> index 3c5ab0d..6cd2c02 100644
> --- a/rules/msmtp.make
> +++ b/rules/msmtp.make
> @@ -16,11 +16,11 @@ PACKAGES-$(PTXCONF_MSMTP) += msmtp
> #
> # Paths and names
> #
> -MSMTP_VERSION := 1.4.30
> -MSMTP_MD5 := 4d32724a2b03f07aa6d4ea9d49367ad3
> +MSMTP_VERSION := 1.8.1
> +MSMTP_MD5 := 64c153c384fa2bd4128ae73733c555d5
> MSMTP := msmtp-$(MSMTP_VERSION)
> -MSMTP_SUFFIX := tar.bz2
> -MSMTP_URL := $(call ptx/mirror, SF, msmtp/$(MSMTP).$(MSMTP_SUFFIX))
> +MSMTP_SUFFIX := tar.xz
> +MSMTP_URL := https://marlam.de/msmtp/releases/$(MSMTP).$(MSMTP_SUFFIX))
> MSMTP_SOURCE := $(SRCDIR)/$(MSMTP).$(MSMTP_SUFFIX)
> MSMTP_DIR := $(BUILDDIR)/$(MSMTP)
> MSMTP_LICENSE := GPL-3.0-only
> @@ -38,10 +38,9 @@ MSMTP_CONF_OPT := \
> $(GLOBAL_LARGE_FILE_OPTION) \
> --disable-nls \
> --disable-rpath \
> - --with-ssl=$(PTXCONF_MSMTP_SSL) \
> + --with-tls=$(PTXCONF_MSMTP_TLS) \
> --without-libgsasl \
> --without-libidn \
> - --without-gnome-keyring
>
> # ----------------------------------------------------------------------------
> # Target-Install
> --
> 1.9.1
>
>
> _______________________________________________
> ptxdist mailing list
> ptxdist@pengutronix.de
--
Roland Hieber | r.hieber@pengutronix.de |
Pengutronix e.K. | https://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim | Phone: +49-5121-206917-5086 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [ptxdist] [PATCHv1] msmtp: version bump 1.4.30 -> 1.8.1
2019-01-11 15:42 ` Roland Hieber
@ 2019-01-11 16:14 ` Michael Olbrich
0 siblings, 0 replies; 3+ messages in thread
From: Michael Olbrich @ 2019-01-11 16:14 UTC (permalink / raw)
To: ptxdist
On Fri, Jan 11, 2019 at 04:42:36PM +0100, Roland Hieber wrote:
> On Tue, Jan 08, 2019 at 03:57:26PM +0100, Oliver Graute wrote:
> > version bump from 1.4.30 to 1.81
> >
> > - changed URL to project url
> > - renamed SSL to TLS
> > - dropped --without-gnome-keyring
> >
> > Signed-off-by: Oliver Graute <oliver.graute@neuhaus.de>
> > ---
> > rules/msmtp.in | 4 ++--
> > rules/msmtp.make | 11 +++++------
> > 2 files changed, 7 insertions(+), 8 deletions(-)
> >
> > diff --git a/rules/msmtp.in b/rules/msmtp.in
> > index 8c5a801..a937088 100644
> > --- a/rules/msmtp.in
> > +++ b/rules/msmtp.in
> > @@ -27,9 +27,9 @@ config MSMTP_GNUTLS
> >
> > endchoice
> >
> > -config MSMTP_SSL
> > +config MSMTP_TLS
>
> If you rename a config option, also add a snippet to
> scripts/migrate/migrate_ptx to ease migration from earlier PTXdist
> releases (it's a simple awk script that does search-and-replace on the
> kconfig file).
Yes, please add this.
> > string
> > - default "no" if MSMTP_NOSSL
> > + default "no" if MSMTP_NOTLS
> > default "openssl" if MSMTP_OPENSSL
> > default "gnutls" if MSMTP_GNUTLS
> >
> > diff --git a/rules/msmtp.make b/rules/msmtp.make
> > index 3c5ab0d..6cd2c02 100644
> > --- a/rules/msmtp.make
> > +++ b/rules/msmtp.make
> > @@ -16,11 +16,11 @@ PACKAGES-$(PTXCONF_MSMTP) += msmtp
> > #
> > # Paths and names
> > #
> > -MSMTP_VERSION := 1.4.30
> > -MSMTP_MD5 := 4d32724a2b03f07aa6d4ea9d49367ad3
> > +MSMTP_VERSION := 1.8.1
> > +MSMTP_MD5 := 64c153c384fa2bd4128ae73733c555d5
> > MSMTP := msmtp-$(MSMTP_VERSION)
> > -MSMTP_SUFFIX := tar.bz2
> > -MSMTP_URL := $(call ptx/mirror, SF, msmtp/$(MSMTP).$(MSMTP_SUFFIX))
> > +MSMTP_SUFFIX := tar.xz
> > +MSMTP_URL := https://marlam.de/msmtp/releases/$(MSMTP).$(MSMTP_SUFFIX))
Extra ')' at the end break the download.
Michael
> > MSMTP_SOURCE := $(SRCDIR)/$(MSMTP).$(MSMTP_SUFFIX)
> > MSMTP_DIR := $(BUILDDIR)/$(MSMTP)
> > MSMTP_LICENSE := GPL-3.0-only
> > @@ -38,10 +38,9 @@ MSMTP_CONF_OPT := \
> > $(GLOBAL_LARGE_FILE_OPTION) \
> > --disable-nls \
> > --disable-rpath \
> > - --with-ssl=$(PTXCONF_MSMTP_SSL) \
> > + --with-tls=$(PTXCONF_MSMTP_TLS) \
> > --without-libgsasl \
> > --without-libidn \
> > - --without-gnome-keyring
> >
> > # ----------------------------------------------------------------------------
> > # Target-Install
> > --
> > 1.9.1
> >
> >
> > _______________________________________________
> > ptxdist mailing list
> > ptxdist@pengutronix.de
>
> --
> Roland Hieber | r.hieber@pengutronix.de |
> Pengutronix e.K. | https://www.pengutronix.de/ |
> Peiner Str. 6-8, 31137 Hildesheim | Phone: +49-5121-206917-5086 |
> Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
>
> _______________________________________________
> ptxdist mailing list
> ptxdist@pengutronix.de
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2019-01-11 16:14 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-01-08 14:57 [ptxdist] [PATCHv1] msmtp: version bump 1.4.30 -> 1.8.1 Oliver Graute
2019-01-11 15:42 ` Roland Hieber
2019-01-11 16:14 ` Michael Olbrich
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox