All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/pcre: fix broken URL
@ 2021-11-19  8:59 Sébastien Szymanski
  2021-11-19 10:11 ` Yann E. MORIN
  2021-12-06 22:11 ` Peter Korsgaard
  0 siblings, 2 replies; 5+ messages in thread
From: Sébastien Szymanski @ 2021-11-19  8:59 UTC (permalink / raw)
  To: buildroot

As stated on www.pcre.org:
"Note that the former ftp.pcre.org FTP site is no longer available."

Update _SITE URL to Sourceforge.

Signed-off-by: Sébastien Szymanski <sebastien.szymanski@armadeus.com>
---
 package/pcre/pcre.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/pcre/pcre.mk b/package/pcre/pcre.mk
index 264eaa10c7..c85f6717db 100644
--- a/package/pcre/pcre.mk
+++ b/package/pcre/pcre.mk
@@ -5,7 +5,7 @@
 ################################################################################
 
 PCRE_VERSION = 8.45
-PCRE_SITE = https://ftp.pcre.org/pub/pcre
+PCRE_SITE = http://downloads.sourceforge.net/project/pcre/pcre/$(PCRE_VERSION)
 PCRE_SOURCE = pcre-$(PCRE_VERSION).tar.bz2
 PCRE_LICENSE = BSD-3-Clause
 PCRE_LICENSE_FILES = LICENCE
-- 
2.32.0

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/1] package/pcre: fix broken URL
  2021-11-19  8:59 [Buildroot] [PATCH 1/1] package/pcre: fix broken URL Sébastien Szymanski
@ 2021-11-19 10:11 ` Yann E. MORIN
  2021-11-19 10:36   ` Sébastien Szymanski
  2021-12-06 22:11 ` Peter Korsgaard
  1 sibling, 1 reply; 5+ messages in thread
From: Yann E. MORIN @ 2021-11-19 10:11 UTC (permalink / raw)
  To: Sébastien Szymanski; +Cc: buildroot

Sébastien, All,

On 2021-11-19 09:59 +0100, Sébastien Szymanski spake thusly:
> As stated on www.pcre.org:
> "Note that the former ftp.pcre.org FTP site is no longer available."
> 
> Update _SITE URL to Sourceforge.

The homepage states that the official release channel is github, and
that sourceforge is unoficial:

    http://www.pcre.org/

    You can download the current release of the PCRE2 library from its
    official home on GitHub:

    https://github.com/PhilipHazel/pcre2/releases

    You can also download PCRE2 or the older, unmaintained PCRE library
    from an unofficial mirror at SourceForge:

    https://sourceforge.net/projects/pcre/files/

So could you respin using the release from github, pleasE?

Regards,
Yann E. MORIN.

> Signed-off-by: Sébastien Szymanski <sebastien.szymanski@armadeus.com>
> ---
>  package/pcre/pcre.mk | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/package/pcre/pcre.mk b/package/pcre/pcre.mk
> index 264eaa10c7..c85f6717db 100644
> --- a/package/pcre/pcre.mk
> +++ b/package/pcre/pcre.mk
> @@ -5,7 +5,7 @@
>  ################################################################################
>  
>  PCRE_VERSION = 8.45
> -PCRE_SITE = https://ftp.pcre.org/pub/pcre
> +PCRE_SITE = http://downloads.sourceforge.net/project/pcre/pcre/$(PCRE_VERSION)
>  PCRE_SOURCE = pcre-$(PCRE_VERSION).tar.bz2
>  PCRE_LICENSE = BSD-3-Clause
>  PCRE_LICENSE_FILES = LICENCE
> -- 
> 2.32.0
> 
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 561 099 427 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/1] package/pcre: fix broken URL
  2021-11-19 10:11 ` Yann E. MORIN
@ 2021-11-19 10:36   ` Sébastien Szymanski
  2021-11-19 16:05     ` Yann E. MORIN
  0 siblings, 1 reply; 5+ messages in thread
From: Sébastien Szymanski @ 2021-11-19 10:36 UTC (permalink / raw)
  To: Yann E. MORIN; +Cc: buildroot

Hi Yann,

On 11/19/21 11:11, Yann E. MORIN wrote:
> Sébastien, All,
> 
> On 2021-11-19 09:59 +0100, Sébastien Szymanski spake thusly:
>> As stated on www.pcre.org:
>> "Note that the former ftp.pcre.org FTP site is no longer available."
>>
>> Update _SITE URL to Sourceforge.
> 
> The homepage states that the official release channel is github, and
> that sourceforge is unoficial:
> 
>      http://www.pcre.org/
> 
>      You can download the current release of the PCRE2 library from its
>      official home on GitHub:
> 
>      https://github.com/PhilipHazel/pcre2/releases
> 
>      You can also download PCRE2 or the older, unmaintained PCRE library
>      from an unofficial mirror at SourceForge:
> 
>      https://sourceforge.net/projects/pcre/files/
> 
> So could you respin using the release from github, pleasE?

No, I can't because there are pcre2 (two) releases only on github...
As explained in what you copied / pasted, older releases are on SourceForge.

Regards,

> 
> Regards,
> Yann E. MORIN.
> 
>> Signed-off-by: Sébastien Szymanski <sebastien.szymanski@armadeus.com>
>> ---
>>   package/pcre/pcre.mk | 2 +-
>>   1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/package/pcre/pcre.mk b/package/pcre/pcre.mk
>> index 264eaa10c7..c85f6717db 100644
>> --- a/package/pcre/pcre.mk
>> +++ b/package/pcre/pcre.mk
>> @@ -5,7 +5,7 @@
>>   ################################################################################
>>   
>>   PCRE_VERSION = 8.45
>> -PCRE_SITE = https://ftp.pcre.org/pub/pcre
>> +PCRE_SITE = http://downloads.sourceforge.net/project/pcre/pcre/$(PCRE_VERSION)
>>   PCRE_SOURCE = pcre-$(PCRE_VERSION).tar.bz2
>>   PCRE_LICENSE = BSD-3-Clause
>>   PCRE_LICENSE_FILES = LICENCE
>> -- 
>> 2.32.0
>>
>> _______________________________________________
>> buildroot mailing list
>> buildroot@buildroot.org
>> https://lists.buildroot.org/mailman/listinfo/buildroot
> 


-- 
Sébastien Szymanski, Armadeus Systems
Software engineer
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/1] package/pcre: fix broken URL
  2021-11-19 10:36   ` Sébastien Szymanski
@ 2021-11-19 16:05     ` Yann E. MORIN
  0 siblings, 0 replies; 5+ messages in thread
From: Yann E. MORIN @ 2021-11-19 16:05 UTC (permalink / raw)
  To: Sébastien Szymanski; +Cc: buildroot

Sébastien, All,

On 2021-11-19 11:36 +0100, Sébastien Szymanski spake thusly:
> On 11/19/21 11:11, Yann E. MORIN wrote:
> >On 2021-11-19 09:59 +0100, Sébastien Szymanski spake thusly:
> >>As stated on www.pcre.org:
> >>"Note that the former ftp.pcre.org FTP site is no longer available."
> >>
> >>Update _SITE URL to Sourceforge.
> >
> >The homepage states that the official release channel is github, and
> >that sourceforge is unoficial:
[--SNIP--]
> >So could you respin using the release from github, pleasE?
> No, I can't because there are pcre2 (two) releases only on github...
> As explained in what you copied / pasted, older releases are on SourceForge.

Arg, this is about the original pcre. What got me confused is the mix of
pcre, unmaintained, 1997, final release, end of life, all cobbled together
to confuse me. It worked, I got confused.

Dang it, sorry for the confusion...

Applied to master, thanks.

Regards,
Yann E. MORIN.

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 561 099 427 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/1] package/pcre: fix broken URL
  2021-11-19  8:59 [Buildroot] [PATCH 1/1] package/pcre: fix broken URL Sébastien Szymanski
  2021-11-19 10:11 ` Yann E. MORIN
@ 2021-12-06 22:11 ` Peter Korsgaard
  1 sibling, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2021-12-06 22:11 UTC (permalink / raw)
  To: Sébastien Szymanski; +Cc: buildroot

>>>>> "Sébastien" == Sébastien Szymanski <sebastien.szymanski@armadeus.com> writes:

 > As stated on www.pcre.org:
 > "Note that the former ftp.pcre.org FTP site is no longer available."

 > Update _SITE URL to Sourceforge.

 > Signed-off-by: Sébastien Szymanski <sebastien.szymanski@armadeus.com>

Committed to 2021.02.x and 2021.08.x, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

end of thread, other threads:[~2021-12-06 22:12 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-11-19  8:59 [Buildroot] [PATCH 1/1] package/pcre: fix broken URL Sébastien Szymanski
2021-11-19 10:11 ` Yann E. MORIN
2021-11-19 10:36   ` Sébastien Szymanski
2021-11-19 16:05     ` Yann E. MORIN
2021-12-06 22:11 ` Peter Korsgaard

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.