public inbox for crossgcc@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] scripts/{complibs,libc}: add HTTP options for isl and newlib
@ 2013-08-03 20:00 Michael Hope
  2013-08-03 21:21 ` libc/newlib: add HTTP mirror Yann E. MORIN
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Michael Hope @ 2013-08-03 20:00 UTC (permalink / raw)
  To: Yann E. MORIN; +Cc: crossgcc

# HG changeset patch
# User Michael Hope <michaelh@juju.net.nz>
# Date 1375388675 0
# Node ID aeb4a850d0786ee62dc2bf565e6de11515409f84
# Parent  1048e4dca434df43ab9927d9dbd6129f4eaa3bac
scripts/{complibs,libc}: add HTTP options for isl and newlib.

Add well-known HTTP mirrors as a fallback.  This lets crosstool-ng
work when behind a HTTP/HTTPS only proxy.

Signed-off-by: Michael Hope <michaelh@juju.net.nz>

diff -r 1048e4dca434 -r aeb4a850d078 scripts/build/companion_libs/121-isl.sh
--- a/scripts/build/companion_libs/121-isl.sh	Wed Jul 24 23:03:48 2013 +0200
+++ b/scripts/build/companion_libs/121-isl.sh	Thu Aug 01 20:24:35 2013 +0000
@@ -13,7 +13,8 @@
 # Download ISL
 do_isl_get() {
     CT_GetFile "isl-${CT_ISL_VERSION}"  \
-        ftp://ftp.linux.student.kuleuven.be/pub/people/skimo/isl/
+        ftp://ftp.linux.student.kuleuven.be/pub/people/skimo/isl/ \
+        http://mirrors.kernel.org/sources.redhat.com/gcc/infrastructure
 }
 
 # Extract ISL
diff -r 1048e4dca434 -r aeb4a850d078 scripts/build/libc/newlib.sh
--- a/scripts/build/libc/newlib.sh	Wed Jul 24 23:03:48 2013 +0200
+++ b/scripts/build/libc/newlib.sh	Thu Aug 01 20:24:35 2013 +0000
@@ -15,7 +15,8 @@
         CT_GetCustom "newlib" "${CT_LIBC_VERSION}"      \
                      "${CT_LIBC_NEWLIB_CUSTOM_LOCATION}"
     else # ! custom location
-        CT_GetFile "newlib-${CT_LIBC_VERSION}" ${libc_src}
+        CT_GetFile "newlib-${CT_LIBC_VERSION}" ${libc_src} \
+            http://mirrors.kernel.org/sources.redhat.com/newlib
     fi # ! custom location
 
     if [ "${CT_ATMEL_AVR32_HEADERS}" = "y" ]; then

--
For unsubscribe information see http://sourceware.org/lists.html#faq

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

* complibs/isl: add HTTP mirror
  2013-08-03 20:00 [PATCH] scripts/{complibs,libc}: add HTTP options for isl and newlib Michael Hope
  2013-08-03 21:21 ` libc/newlib: add HTTP mirror Yann E. MORIN
@ 2013-08-03 21:21 ` Yann E. MORIN
  2013-08-03 21:30 ` [PATCH] scripts/{complibs,libc}: add HTTP options for isl and newlib Yann E. MORIN
  2 siblings, 0 replies; 4+ messages in thread
From: Yann E. MORIN @ 2013-08-03 21:21 UTC (permalink / raw)
  To: Michael Hope, Yann E. MORIN; +Cc: crossgcc

Michael, All,

Your patch:
    complibs/isl: add HTTP mirror

has been applied as: #86a8d1d467c8
    http://crosstool-ng.org/hg/crosstool-ng/rev/86a8d1d467c8

Thank you!

Regards,
Yann E. MORIN.



--
For unsubscribe information see http://sourceware.org/lists.html#faq

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

* libc/newlib: add HTTP mirror
  2013-08-03 20:00 [PATCH] scripts/{complibs,libc}: add HTTP options for isl and newlib Michael Hope
@ 2013-08-03 21:21 ` Yann E. MORIN
  2013-08-03 21:21 ` complibs/isl: " Yann E. MORIN
  2013-08-03 21:30 ` [PATCH] scripts/{complibs,libc}: add HTTP options for isl and newlib Yann E. MORIN
  2 siblings, 0 replies; 4+ messages in thread
From: Yann E. MORIN @ 2013-08-03 21:21 UTC (permalink / raw)
  To: Michael Hope, Yann E. MORIN; +Cc: crossgcc

Michael, All,

Your patch:
    libc/newlib: add HTTP mirror

has been applied as: #b9bd01c4dc61
    http://crosstool-ng.org/hg/crosstool-ng/rev/b9bd01c4dc61

Thank you!

Regards,
Yann E. MORIN.



--
For unsubscribe information see http://sourceware.org/lists.html#faq

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

* Re: [PATCH] scripts/{complibs,libc}: add HTTP options for isl and newlib
  2013-08-03 20:00 [PATCH] scripts/{complibs,libc}: add HTTP options for isl and newlib Michael Hope
  2013-08-03 21:21 ` libc/newlib: add HTTP mirror Yann E. MORIN
  2013-08-03 21:21 ` complibs/isl: " Yann E. MORIN
@ 2013-08-03 21:30 ` Yann E. MORIN
  2 siblings, 0 replies; 4+ messages in thread
From: Yann E. MORIN @ 2013-08-03 21:30 UTC (permalink / raw)
  To: Michael Hope; +Cc: crossgcc

Michael, All,

On 2013-08-03 19:59 +0000, Michael Hope spake thusly:
> # HG changeset patch
> # User Michael Hope <michaelh@juju.net.nz>
> # Date 1375388675 0
> # Node ID aeb4a850d0786ee62dc2bf565e6de11515409f84
> # Parent  1048e4dca434df43ab9927d9dbd6129f4eaa3bac
> scripts/{complibs,libc}: add HTTP options for isl and newlib.
> 
> Add well-known HTTP mirrors as a fallback.  This lets crosstool-ng
> work when behind a HTTP/HTTPS only proxy.
> 
> Signed-off-by: Michael Hope <michaelh@juju.net.nz>
> 
> diff -r 1048e4dca434 -r aeb4a850d078 scripts/build/companion_libs/121-isl.sh
> --- a/scripts/build/companion_libs/121-isl.sh	Wed Jul 24 23:03:48 2013 +0200
> +++ b/scripts/build/companion_libs/121-isl.sh	Thu Aug 01 20:24:35 2013 +0000
> @@ -13,7 +13,8 @@
>  # Download ISL
>  do_isl_get() {
>      CT_GetFile "isl-${CT_ISL_VERSION}"  \
> -        ftp://ftp.linux.student.kuleuven.be/pub/people/skimo/isl/
> +        ftp://ftp.linux.student.kuleuven.be/pub/people/skimo/isl/ \
> +        http://mirrors.kernel.org/sources.redhat.com/gcc/infrastructure
>  }
>  
>  # Extract ISL
> diff -r 1048e4dca434 -r aeb4a850d078 scripts/build/libc/newlib.sh
> --- a/scripts/build/libc/newlib.sh	Wed Jul 24 23:03:48 2013 +0200
> +++ b/scripts/build/libc/newlib.sh	Thu Aug 01 20:24:35 2013 +0000
> @@ -15,7 +15,8 @@
>          CT_GetCustom "newlib" "${CT_LIBC_VERSION}"      \
>                       "${CT_LIBC_NEWLIB_CUSTOM_LOCATION}"
>      else # ! custom location
> -        CT_GetFile "newlib-${CT_LIBC_VERSION}" ${libc_src}
> +        CT_GetFile "newlib-${CT_LIBC_VERSION}" ${libc_src} \
> +            http://mirrors.kernel.org/sources.redhat.com/newlib
>      fi # ! custom location
>  
>      if [ "${CT_ATMEL_AVR32_HEADERS}" = "y" ]; then

As you may have seen, I've split this one in two, one for each of
newlib and isl.

Thank you!

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.  |
'------------------------------^-------^------------------^--------------------'

--
For unsubscribe information see http://sourceware.org/lists.html#faq

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

end of thread, other threads:[~2013-08-03 21:30 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-08-03 20:00 [PATCH] scripts/{complibs,libc}: add HTTP options for isl and newlib Michael Hope
2013-08-03 21:21 ` libc/newlib: add HTTP mirror Yann E. MORIN
2013-08-03 21:21 ` complibs/isl: " Yann E. MORIN
2013-08-03 21:30 ` [PATCH] scripts/{complibs,libc}: add HTTP options for isl and newlib Yann E. MORIN

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).