mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] [PATCH 1/2] libxml2: add extra http download urls
@ 2021-07-31 12:41 Bruno Thomsen
  2021-07-31 12:41 ` [ptxdist] [PATCH 2/2] libxslt: " Bruno Thomsen
  2021-08-04  6:14 ` [ptxdist] [APPLIED] libxml2: " Michael Olbrich
  0 siblings, 2 replies; 4+ messages in thread
From: Bruno Thomsen @ 2021-07-31 12:41 UTC (permalink / raw)
  To: ptxdist; +Cc: bruno.thomsen

ftp download urls seems fail for some users,
so add http urls from xmlsoft.org as well.

Signed-off-by: Bruno Thomsen <bruno.thomsen@gmail.com>
---
 rules/libxml2.make | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/rules/libxml2.make b/rules/libxml2.make
index 9eb1993b0..c87a088d0 100644
--- a/rules/libxml2.make
+++ b/rules/libxml2.make
@@ -29,6 +29,8 @@ LIBXML2_LICENSE_FILES := \
 	file://hash.c;startline=6;endline=15;md5=e77f77b12cb69e203d8b4090a0eee879
 
 LIBXML2_URL := \
+	http://xmlsoft.org/sources/$(LIBXML2).$(LIBXML2_SUFFIX) \
+	http://xmlsoft.org/sources/old/$(LIBXML2).$(LIBXML2_SUFFIX) \
 	ftp://xmlsoft.org/libxml2/$(LIBXML2).$(LIBXML2_SUFFIX) \
 	ftp://xmlsoft.org/libxml2/old/$(LIBXML2).$(LIBXML2_SUFFIX)
 

base-commit: cf777f9ebc8ae074b2c78ff297662ce25aec2e8f
-- 
2.31.1


_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [ptxdist] [PATCH 2/2] libxslt: add extra http download urls
  2021-07-31 12:41 [ptxdist] [PATCH 1/2] libxml2: add extra http download urls Bruno Thomsen
@ 2021-07-31 12:41 ` Bruno Thomsen
  2021-08-04  6:14   ` [ptxdist] [APPLIED] " Michael Olbrich
  2021-08-04  6:14 ` [ptxdist] [APPLIED] libxml2: " Michael Olbrich
  1 sibling, 1 reply; 4+ messages in thread
From: Bruno Thomsen @ 2021-07-31 12:41 UTC (permalink / raw)
  To: ptxdist; +Cc: bruno.thomsen

ftp download urls seems fail for some users,
so add http urls from xmlsoft.org as well.

Signed-off-by: Bruno Thomsen <bruno.thomsen@gmail.com>
---
 rules/libxslt.make | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/rules/libxslt.make b/rules/libxslt.make
index 0ea879ead..ce13a7d7e 100644
--- a/rules/libxslt.make
+++ b/rules/libxslt.make
@@ -24,6 +24,8 @@ LIBXSLT_DIR	:= $(BUILDDIR)/$(LIBXSLT)
 LIBXSLT_LICENSE	:= MIT
 
 LIBXSLT_URL	:= \
+	http://xmlsoft.org/sources/$(LIBXSLT).$(LIBXSLT_SUFFIX) \
+	http://xmlsoft.org/sources/old/$(LIBXSLT).$(LIBXSLT_SUFFIX) \
 	ftp://xmlsoft.org/libxslt/$(LIBXSLT).$(LIBXSLT_SUFFIX) \
 	ftp://xmlsoft.org/libxslt/old/$(LIBXSLT).$(LIBXSLT_SUFFIX)
 
-- 
2.31.1


_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [ptxdist] [APPLIED] libxml2: add extra http download urls
  2021-07-31 12:41 [ptxdist] [PATCH 1/2] libxml2: add extra http download urls Bruno Thomsen
  2021-07-31 12:41 ` [ptxdist] [PATCH 2/2] libxslt: " Bruno Thomsen
@ 2021-08-04  6:14 ` Michael Olbrich
  1 sibling, 0 replies; 4+ messages in thread
From: Michael Olbrich @ 2021-08-04  6:14 UTC (permalink / raw)
  To: ptxdist; +Cc: Bruno Thomsen

Thanks, applied as 261c5f165e7eadeaf21301a3ad066df98a6d9cbf.

Michael

[sent from post-receive hook]

On Wed, 04 Aug 2021 08:14:15 +0200, Bruno Thomsen <bruno.thomsen@gmail.com> wrote:
> ftp download urls seems fail for some users,
> so add http urls from xmlsoft.org as well.
> 
> Signed-off-by: Bruno Thomsen <bruno.thomsen@gmail.com>
> Message-Id: <20210731124152.89414-1-bruno.thomsen@gmail.com>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/rules/libxml2.make b/rules/libxml2.make
> index 9eb1993b07c1..c87a088d0aba 100644
> --- a/rules/libxml2.make
> +++ b/rules/libxml2.make
> @@ -29,6 +29,8 @@ LIBXML2_LICENSE_FILES := \
>  	file://hash.c;startline=6;endline=15;md5=e77f77b12cb69e203d8b4090a0eee879
>  
>  LIBXML2_URL := \
> +	http://xmlsoft.org/sources/$(LIBXML2).$(LIBXML2_SUFFIX) \
> +	http://xmlsoft.org/sources/old/$(LIBXML2).$(LIBXML2_SUFFIX) \
>  	ftp://xmlsoft.org/libxml2/$(LIBXML2).$(LIBXML2_SUFFIX) \
>  	ftp://xmlsoft.org/libxml2/old/$(LIBXML2).$(LIBXML2_SUFFIX)
>  

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [ptxdist] [APPLIED] libxslt: add extra http download urls
  2021-07-31 12:41 ` [ptxdist] [PATCH 2/2] libxslt: " Bruno Thomsen
@ 2021-08-04  6:14   ` Michael Olbrich
  0 siblings, 0 replies; 4+ messages in thread
From: Michael Olbrich @ 2021-08-04  6:14 UTC (permalink / raw)
  To: ptxdist; +Cc: Bruno Thomsen

Thanks, applied as df831ba87ff1eb7b54499b716ab18375d3396567.

Michael

[sent from post-receive hook]

On Wed, 04 Aug 2021 08:14:16 +0200, Bruno Thomsen <bruno.thomsen@gmail.com> wrote:
> ftp download urls seems fail for some users,
> so add http urls from xmlsoft.org as well.
> 
> Signed-off-by: Bruno Thomsen <bruno.thomsen@gmail.com>
> Message-Id: <20210731124152.89414-2-bruno.thomsen@gmail.com>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/rules/libxslt.make b/rules/libxslt.make
> index 0ea879ead228..ce13a7d7e8cb 100644
> --- a/rules/libxslt.make
> +++ b/rules/libxslt.make
> @@ -24,6 +24,8 @@ LIBXSLT_DIR	:= $(BUILDDIR)/$(LIBXSLT)
>  LIBXSLT_LICENSE	:= MIT
>  
>  LIBXSLT_URL	:= \
> +	http://xmlsoft.org/sources/$(LIBXSLT).$(LIBXSLT_SUFFIX) \
> +	http://xmlsoft.org/sources/old/$(LIBXSLT).$(LIBXSLT_SUFFIX) \
>  	ftp://xmlsoft.org/libxslt/$(LIBXSLT).$(LIBXSLT_SUFFIX) \
>  	ftp://xmlsoft.org/libxslt/old/$(LIBXSLT).$(LIBXSLT_SUFFIX)
>  

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-08-04  6:15 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-31 12:41 [ptxdist] [PATCH 1/2] libxml2: add extra http download urls Bruno Thomsen
2021-07-31 12:41 ` [ptxdist] [PATCH 2/2] libxslt: " Bruno Thomsen
2021-08-04  6:14   ` [ptxdist] [APPLIED] " Michael Olbrich
2021-08-04  6:14 ` [ptxdist] [APPLIED] libxml2: " Michael Olbrich

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox