* [Buildroot] [PATCH v2] bzip2: change upstream site
@ 2018-08-14 4:24 Baruch Siach
2018-08-14 15:31 ` Yann E. MORIN
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Baruch Siach @ 2018-08-14 4:24 UTC (permalink / raw)
To: buildroot
The bzip.org website is down. Use the Buildroot backup download site.
Remove the website link as there is no clear alternative upstream at
this point.
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, 1 insertion(+), 3 deletions(-)
diff --git a/package/bzip2/Config.in b/package/bzip2/Config.in
index dbc82496df7e..ca447bbb2dc5 100644
--- a/package/bzip2/Config.in
+++ b/package/bzip2/Config.in
@@ -5,5 +5,3 @@ config BR2_PACKAGE_BZIP2
It typically compresses files to within 10% to 15% of the best
available techniques, while being around twice as fast at
compression and six times faster at decompression.
-
- http://www.bzip.org
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 v2] bzip2: change upstream site
2018-08-14 4:24 [Buildroot] [PATCH v2] bzip2: change upstream site Baruch Siach
@ 2018-08-14 15:31 ` Yann E. MORIN
2018-08-15 22:40 ` Thomas Petazzoni
2018-08-24 8:35 ` Peter Korsgaard
2 siblings, 0 replies; 4+ messages in thread
From: Yann E. MORIN @ 2018-08-14 15:31 UTC (permalink / raw)
To: buildroot
Baruch, All,
On 2018-08-14 07:24 +0300, Baruch Siach spake thusly:
> The bzip.org website is down. Use the Buildroot backup download site.
> Remove the website link as there is no clear alternative upstream at
> this point.
>
> https://lwn.net/Articles/762264/
>
> Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Regards,
Yann E. MORIN.
> ---
> package/bzip2/Config.in | 2 --
> package/bzip2/bzip2.mk | 2 +-
> 2 files changed, 1 insertion(+), 3 deletions(-)
>
> diff --git a/package/bzip2/Config.in b/package/bzip2/Config.in
> index dbc82496df7e..ca447bbb2dc5 100644
> --- a/package/bzip2/Config.in
> +++ b/package/bzip2/Config.in
> @@ -5,5 +5,3 @@ config BR2_PACKAGE_BZIP2
> It typically compresses files to within 10% to 15% of the best
> available techniques, while being around twice as fast at
> compression and six times faster at decompression.
> -
> - http://www.bzip.org
> 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
>
--
.-----------------.--------------------.------------------.--------------------.
| 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 v2] bzip2: change upstream site
2018-08-14 4:24 [Buildroot] [PATCH v2] bzip2: change upstream site Baruch Siach
2018-08-14 15:31 ` Yann E. MORIN
@ 2018-08-15 22:40 ` Thomas Petazzoni
2018-08-24 8:35 ` Peter Korsgaard
2 siblings, 0 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2018-08-15 22:40 UTC (permalink / raw)
To: buildroot
Hello,
On Tue, 14 Aug 2018 07:24:51 +0300, Baruch Siach wrote:
> The bzip.org website is down. Use the Buildroot backup download site.
> Remove the website link as there is no clear alternative upstream at
> this point.
>
> 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, 1 insertion(+), 3 deletions(-)
Applied to master, thanks.
Thomas
--
Thomas Petazzoni, CTO, Bootlin (formerly Free Electrons)
Embedded Linux and Kernel engineering
https://bootlin.com
^ permalink raw reply [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH v2] bzip2: change upstream site
2018-08-14 4:24 [Buildroot] [PATCH v2] bzip2: change upstream site Baruch Siach
2018-08-14 15:31 ` Yann E. MORIN
2018-08-15 22:40 ` Thomas Petazzoni
@ 2018-08-24 8:35 ` Peter Korsgaard
2 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2018-08-24 8:35 UTC (permalink / raw)
To: buildroot
>>>>> "Baruch" == Baruch Siach <baruch@tkos.co.il> writes:
> The bzip.org website is down. Use the Buildroot backup download site.
> Remove the website link as there is no clear alternative upstream at
> this point.
> https://lwn.net/Articles/762264/
> Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Committed to 2018.02.x and 2018.05.x, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2018-08-24 8:35 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-08-14 4:24 [Buildroot] [PATCH v2] bzip2: change upstream site Baruch Siach
2018-08-14 15:31 ` Yann E. MORIN
2018-08-15 22:40 ` Thomas Petazzoni
2018-08-24 8:35 ` Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox