All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/bitstream: update tarball URL
@ 2020-04-16  5:25 Bernd Kuhls
  2020-04-16  5:44 ` Thomas Petazzoni
  0 siblings, 1 reply; 5+ messages in thread
From: Bernd Kuhls @ 2020-04-16  5:25 UTC (permalink / raw)
  To: buildroot

Use direct URL of upstream server instead of using an URL which causes
redirects to, sometimes unreliable, mirror sites.

Fixes:
http://autobuild.buildroot.net/results/cf1/cf1f80519570fdecacfeb45ac4a3ee9725be4b0f/

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 package/bitstream/bitstream.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/bitstream/bitstream.mk b/package/bitstream/bitstream.mk
index 12124a63d3..617cb96520 100644
--- a/package/bitstream/bitstream.mk
+++ b/package/bitstream/bitstream.mk
@@ -6,7 +6,7 @@
 
 BITSTREAM_VERSION = 1.5
 BITSTREAM_SOURCE = bitstream-$(BITSTREAM_VERSION).tar.bz2
-BITSTREAM_SITE = https://get.videolan.org/bitstream/$(BITSTREAM_VERSION)
+BITSTREAM_SITE = http://download.videolan.org/pub/videolan/bitstream/$(BITSTREAM_VERSION)
 BITSTREAM_LICENSE = MIT
 BITSTREAM_LICENSE_FILES = COPYING
 
-- 
2.26.1

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

* [Buildroot] [PATCH 1/1] package/bitstream: update tarball URL
  2020-04-16  5:25 [Buildroot] [PATCH 1/1] package/bitstream: update tarball URL Bernd Kuhls
@ 2020-04-16  5:44 ` Thomas Petazzoni
  2020-04-16  9:26   ` James Hilliard
  0 siblings, 1 reply; 5+ messages in thread
From: Thomas Petazzoni @ 2020-04-16  5:44 UTC (permalink / raw)
  To: buildroot

On Thu, 16 Apr 2020 07:25:08 +0200
Bernd Kuhls <bernd.kuhls@t-online.de> wrote:

> Use direct URL of upstream server instead of using an URL which causes
> redirects to, sometimes unreliable, mirror sites.
> 
> Fixes:
> http://autobuild.buildroot.net/results/cf1/cf1f80519570fdecacfeb45ac4a3ee9725be4b0f/
> 
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
> ---
>  package/bitstream/bitstream.mk | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/package/bitstream/bitstream.mk b/package/bitstream/bitstream.mk
> index 12124a63d3..617cb96520 100644
> --- a/package/bitstream/bitstream.mk
> +++ b/package/bitstream/bitstream.mk
> @@ -6,7 +6,7 @@
>  
>  BITSTREAM_VERSION = 1.5
>  BITSTREAM_SOURCE = bitstream-$(BITSTREAM_VERSION).tar.bz2
> -BITSTREAM_SITE = https://get.videolan.org/bitstream/$(BITSTREAM_VERSION)
> +BITSTREAM_SITE = http://download.videolan.org/pub/videolan/bitstream/$(BITSTREAM_VERSION)

But we're using get.videolan.org in a number of other packages,
especially VLC. Isn't that a temporary issue that doesn't require
changing the package ? I've reported the issue on the #videolan IRC
channel.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

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

* [Buildroot] [PATCH 1/1] package/bitstream: update tarball URL
  2020-04-16  5:44 ` Thomas Petazzoni
@ 2020-04-16  9:26   ` James Hilliard
  2020-04-16  9:38     ` James Hilliard
  0 siblings, 1 reply; 5+ messages in thread
From: James Hilliard @ 2020-04-16  9:26 UTC (permalink / raw)
  To: buildroot

On Wed, Apr 15, 2020 at 11:44 PM Thomas Petazzoni
<thomas.petazzoni@bootlin.com> wrote:
>
> On Thu, 16 Apr 2020 07:25:08 +0200
> Bernd Kuhls <bernd.kuhls@t-online.de> wrote:
>
> > Use direct URL of upstream server instead of using an URL which causes
> > redirects to, sometimes unreliable, mirror sites.
> >
> > Fixes:
> > http://autobuild.buildroot.net/results/cf1/cf1f80519570fdecacfeb45ac4a3ee9725be4b0f/
> >
> > Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
> > ---
> >  package/bitstream/bitstream.mk | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/package/bitstream/bitstream.mk b/package/bitstream/bitstream.mk
> > index 12124a63d3..617cb96520 100644
> > --- a/package/bitstream/bitstream.mk
> > +++ b/package/bitstream/bitstream.mk
> > @@ -6,7 +6,7 @@
> >
> >  BITSTREAM_VERSION = 1.5
> >  BITSTREAM_SOURCE = bitstream-$(BITSTREAM_VERSION).tar.bz2
> > -BITSTREAM_SITE = https://get.videolan.org/bitstream/$(BITSTREAM_VERSION)
> > +BITSTREAM_SITE = http://download.videolan.org/pub/videolan/bitstream/$(BITSTREAM_VERSION)
>
> But we're using get.videolan.org in a number of other packages,
> especially VLC. Isn't that a temporary issue that doesn't require
> changing the package ? I've reported the issue on the #videolan IRC
> channel.
This might be a dns issue as download.videolan.org is failing to resolve on one
of my systems, although my autobuilder which is failing a bunch can resolve it.

At the moment it probably makes sense to manually upload the package
to buildroot's
mirrors so that we don't get so many autobuild failures.
>
> Thomas
> --
> Thomas Petazzoni, CTO, Bootlin
> Embedded Linux and Kernel engineering
> https://bootlin.com
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

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

* [Buildroot] [PATCH 1/1] package/bitstream: update tarball URL
  2020-04-16  9:26   ` James Hilliard
@ 2020-04-16  9:38     ` James Hilliard
  2020-04-16 12:57       ` Thomas Petazzoni
  0 siblings, 1 reply; 5+ messages in thread
From: James Hilliard @ 2020-04-16  9:38 UTC (permalink / raw)
  To: buildroot

On Thu, Apr 16, 2020 at 3:26 AM James Hilliard
<james.hilliard1@gmail.com> wrote:
>
> On Wed, Apr 15, 2020 at 11:44 PM Thomas Petazzoni
> <thomas.petazzoni@bootlin.com> wrote:
> >
> > On Thu, 16 Apr 2020 07:25:08 +0200
> > Bernd Kuhls <bernd.kuhls@t-online.de> wrote:
> >
> > > Use direct URL of upstream server instead of using an URL which causes
> > > redirects to, sometimes unreliable, mirror sites.
> > >
> > > Fixes:
> > > http://autobuild.buildroot.net/results/cf1/cf1f80519570fdecacfeb45ac4a3ee9725be4b0f/
> > >
> > > Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
> > > ---
> > >  package/bitstream/bitstream.mk | 2 +-
> > >  1 file changed, 1 insertion(+), 1 deletion(-)
> > >
> > > diff --git a/package/bitstream/bitstream.mk b/package/bitstream/bitstream.mk
> > > index 12124a63d3..617cb96520 100644
> > > --- a/package/bitstream/bitstream.mk
> > > +++ b/package/bitstream/bitstream.mk
> > > @@ -6,7 +6,7 @@
> > >
> > >  BITSTREAM_VERSION = 1.5
> > >  BITSTREAM_SOURCE = bitstream-$(BITSTREAM_VERSION).tar.bz2
> > > -BITSTREAM_SITE = https://get.videolan.org/bitstream/$(BITSTREAM_VERSION)
> > > +BITSTREAM_SITE = http://download.videolan.org/pub/videolan/bitstream/$(BITSTREAM_VERSION)
> >
> > But we're using get.videolan.org in a number of other packages,
> > especially VLC. Isn't that a temporary issue that doesn't require
> > changing the package ? I've reported the issue on the #videolan IRC
> > channel.
> This might be a dns issue as download.videolan.org is failing to resolve on one
> of my systems, although my autobuilder which is failing a bunch can resolve it.
>
> At the moment it probably makes sense to manually upload the package
> to buildroot's
> mirrors so that we don't get so many autobuild failures.
Oh, FYI this is probably resolved now, my autobuilder can now get the file from
get.videolan.org, may have been an internet line issue as I just briefly had the
fiber line internet connection drop out on it for a few minutes and it
works after
the connection came back seemingly.
> >
> > Thomas
> > --
> > Thomas Petazzoni, CTO, Bootlin
> > Embedded Linux and Kernel engineering
> > https://bootlin.com
> > _______________________________________________
> > buildroot mailing list
> > buildroot at busybox.net
> > http://lists.busybox.net/mailman/listinfo/buildroot

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

* [Buildroot] [PATCH 1/1] package/bitstream: update tarball URL
  2020-04-16  9:38     ` James Hilliard
@ 2020-04-16 12:57       ` Thomas Petazzoni
  0 siblings, 0 replies; 5+ messages in thread
From: Thomas Petazzoni @ 2020-04-16 12:57 UTC (permalink / raw)
  To: buildroot

On Thu, 16 Apr 2020 03:38:01 -0600
James Hilliard <james.hilliard1@gmail.com> wrote:

> Oh, FYI this is probably resolved now, my autobuilder can now get the file from
> get.videolan.org, may have been an internet line issue as I just briefly had the
> fiber line internet connection drop out on it for a few minutes and it
> works after the connection came back seemingly.

We did two things here:

 (1) I asked Peter to put the tarball in sources.buildroot.net, so that
     there is a working fallback.

 (2) I reported the mirror issue on Freenode #videolan, and someone
     replied:

     <garfvl> kos_tom: thanks for the feedback! You are 100% correct,
     there is an error in the "fallback" servers configuration. We will
     try to correct this ASAP.

Best regards,

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

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

end of thread, other threads:[~2020-04-16 12:57 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-16  5:25 [Buildroot] [PATCH 1/1] package/bitstream: update tarball URL Bernd Kuhls
2020-04-16  5:44 ` Thomas Petazzoni
2020-04-16  9:26   ` James Hilliard
2020-04-16  9:38     ` James Hilliard
2020-04-16 12:57       ` Thomas Petazzoni

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.