All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] bzip2: change upstream site
@ 2018-08-10  4:24 Baruch Siach
  2018-08-12  9:33 ` Yann E. MORIN
  0 siblings, 1 reply; 4+ messages in thread
From: Baruch Siach @ 2018-08-10  4:24 UTC (permalink / raw)
  To: buildroot

The bzip.org website is down. Use the Buildroot backup download site.
Change the website link to a gitlab repo that mirrors the content of the
tarball.

  https://lwn.net/Articles/762264/

Signed-off-by: Baruch Siach <baruch@tkos.co.il>
---
 package/bzip2/Config.in | 2 +-
 package/bzip2/bzip2.mk  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/bzip2/Config.in b/package/bzip2/Config.in
index dbc82496df7e..89e4d5de9a03 100644
--- a/package/bzip2/Config.in
+++ b/package/bzip2/Config.in
@@ -6,4 +6,4 @@ config BR2_PACKAGE_BZIP2
 	  available techniques, while being around twice as fast at
 	  compression and six times faster at decompression.
 
-	  http://www.bzip.org
+	  https://gitlab.com/bzip/bzip2
diff --git a/package/bzip2/bzip2.mk b/package/bzip2/bzip2.mk
index e43533072b2d..a3af32299370 100644
--- a/package/bzip2/bzip2.mk
+++ b/package/bzip2/bzip2.mk
@@ -5,7 +5,7 @@
 ################################################################################
 
 BZIP2_VERSION = 1.0.6
-BZIP2_SITE = http://www.bzip.org/$(BZIP2_VERSION)
+BZIP2_SITE = http://sources.buildroot.net
 BZIP2_INSTALL_STAGING = YES
 BZIP2_LICENSE = bzip2 license
 BZIP2_LICENSE_FILES = LICENSE
-- 
2.18.0

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

* [Buildroot] [PATCH] bzip2: change upstream site
  2018-08-10  4:24 [Buildroot] [PATCH] bzip2: change upstream site Baruch Siach
@ 2018-08-12  9:33 ` Yann E. MORIN
  2018-08-13  4:05   ` Baruch Siach
  0 siblings, 1 reply; 4+ messages in thread
From: Yann E. MORIN @ 2018-08-12  9:33 UTC (permalink / raw)
  To: buildroot

Baruch, All,

On 2018-08-10 07:24 +0300, Baruch Siach spake thusly:
> The bzip.org website is down. Use the Buildroot backup download site.
> Change the website link to a gitlab repo that mirrors the content of the
> tarball.
> 
>   https://lwn.net/Articles/762264/
> 
> Signed-off-by: Baruch Siach <baruch@tkos.co.il>
> ---
>  package/bzip2/Config.in | 2 +-
>  package/bzip2/bzip2.mk  | 2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/package/bzip2/Config.in b/package/bzip2/Config.in
> index dbc82496df7e..89e4d5de9a03 100644
> --- a/package/bzip2/Config.in
> +++ b/package/bzip2/Config.in
> @@ -6,4 +6,4 @@ config BR2_PACKAGE_BZIP2
>  	  available techniques, while being around twice as fast at
>  	  compression and six times faster at decompression.
>  
> -	  http://www.bzip.org
> +	  https://gitlab.com/bzip/bzip2

Not sure this is the best upstream location. The LWN thread also has
this comment https://lwn.net/Articles/762340/ which points to this
webpage https://sourceware.org/bzip2 which has a canonical locations
pointing to https://www.sourceware.org/bzip2/

So, I am not sure which is better: an out-dated (but soon to be revived)
webpage, or a git tree made by a random guy on a random forge (there are
also github trees as well, and no doubt we can also find more random git
trees elesewhere).

Regards,
Yann E. MORIN.

> diff --git a/package/bzip2/bzip2.mk b/package/bzip2/bzip2.mk
> index e43533072b2d..a3af32299370 100644
> --- a/package/bzip2/bzip2.mk
> +++ b/package/bzip2/bzip2.mk
> @@ -5,7 +5,7 @@
>  ################################################################################
>  
>  BZIP2_VERSION = 1.0.6
> -BZIP2_SITE = http://www.bzip.org/$(BZIP2_VERSION)
> +BZIP2_SITE = http://sources.buildroot.net
>  BZIP2_INSTALL_STAGING = YES
>  BZIP2_LICENSE = bzip2 license
>  BZIP2_LICENSE_FILES = LICENSE
> -- 
> 2.18.0
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

* [Buildroot] [PATCH] bzip2: change upstream site
  2018-08-12  9:33 ` Yann E. MORIN
@ 2018-08-13  4:05   ` Baruch Siach
  2018-08-13 15:50     ` Yann E. MORIN
  0 siblings, 1 reply; 4+ messages in thread
From: Baruch Siach @ 2018-08-13  4:05 UTC (permalink / raw)
  To: buildroot

Hi Yann,

On Sun, Aug 12, 2018 at 11:33:45AM +0200, Yann E. MORIN wrote:
> On 2018-08-10 07:24 +0300, Baruch Siach spake thusly:
> > The bzip.org website is down. Use the Buildroot backup download site.
> > Change the website link to a gitlab repo that mirrors the content of the
> > tarball.
> > 
> >   https://lwn.net/Articles/762264/
> > 
> > Signed-off-by: Baruch Siach <baruch@tkos.co.il>
> > ---
> >  package/bzip2/Config.in | 2 +-
> >  package/bzip2/bzip2.mk  | 2 +-
> >  2 files changed, 2 insertions(+), 2 deletions(-)
> > 
> > diff --git a/package/bzip2/Config.in b/package/bzip2/Config.in
> > index dbc82496df7e..89e4d5de9a03 100644
> > --- a/package/bzip2/Config.in
> > +++ b/package/bzip2/Config.in
> > @@ -6,4 +6,4 @@ config BR2_PACKAGE_BZIP2
> >  	  available techniques, while being around twice as fast at
> >  	  compression and six times faster at decompression.
> >  
> > -	  http://www.bzip.org
> > +	  https://gitlab.com/bzip/bzip2
> 
> Not sure this is the best upstream location. The LWN thread also has
> this comment https://lwn.net/Articles/762340/ which points to this
> webpage https://sourceware.org/bzip2 which has a canonical locations
> pointing to https://www.sourceware.org/bzip2/
> 
> So, I am not sure which is better: an out-dated (but soon to be revived)
> webpage, or a git tree made by a random guy on a random forge (there are
> also github trees as well, and no doubt we can also find more random git
> trees elesewhere).

In my opinion, the best option at this point is to drop this link entirely. We 
can always put it back when "real" upstream reappears.

What do you think?

baruch

> > diff --git a/package/bzip2/bzip2.mk b/package/bzip2/bzip2.mk
> > index e43533072b2d..a3af32299370 100644
> > --- a/package/bzip2/bzip2.mk
> > +++ b/package/bzip2/bzip2.mk
> > @@ -5,7 +5,7 @@
> >  ################################################################################
> >  
> >  BZIP2_VERSION = 1.0.6
> > -BZIP2_SITE = http://www.bzip.org/$(BZIP2_VERSION)
> > +BZIP2_SITE = http://sources.buildroot.net
> >  BZIP2_INSTALL_STAGING = YES
> >  BZIP2_LICENSE = bzip2 license
> >  BZIP2_LICENSE_FILES = LICENSE

-- 
     http://baruch.siach.name/blog/                  ~. .~   Tk Open Systems
=}------------------------------------------------ooO--U--Ooo------------{=
   - baruch at tkos.co.il - tel: +972.2.679.5364, http://www.tkos.co.il -

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

* [Buildroot] [PATCH] bzip2: change upstream site
  2018-08-13  4:05   ` Baruch Siach
@ 2018-08-13 15:50     ` Yann E. MORIN
  0 siblings, 0 replies; 4+ messages in thread
From: Yann E. MORIN @ 2018-08-13 15:50 UTC (permalink / raw)
  To: buildroot

Baruch, All,

On 2018-08-13 07:05 +0300, Baruch Siach spake thusly:
> On Sun, Aug 12, 2018 at 11:33:45AM +0200, Yann E. MORIN wrote:
> > On 2018-08-10 07:24 +0300, Baruch Siach spake thusly:
> > > The bzip.org website is down. Use the Buildroot backup download site.
> > > Change the website link to a gitlab repo that mirrors the content of the
> > > tarball.
> > > 
> > >   https://lwn.net/Articles/762264/
[--SNIP--]
> > > -	  http://www.bzip.org
> > > +	  https://gitlab.com/bzip/bzip2
> > 
> > Not sure this is the best upstream location. [...]
> In my opinion, the best option at this point is to drop this link entirely. We 
> can always put it back when "real" upstream reappears.
> 
> What do you think?

100% agreed, thanks! :-)

Regards,
Yann E. MORIN.

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

end of thread, other threads:[~2018-08-13 15:50 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-08-10  4:24 [Buildroot] [PATCH] bzip2: change upstream site Baruch Siach
2018-08-12  9:33 ` Yann E. MORIN
2018-08-13  4:05   ` Baruch Siach
2018-08-13 15:50     ` Yann E. MORIN

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.