* [Buildroot] [PATCH] dtc: update source url
@ 2015-01-11 8:25 Fabio Porcedda
2015-01-12 22:54 ` Yann E. MORIN
0 siblings, 1 reply; 3+ messages in thread
From: Fabio Porcedda @ 2015-01-11 8:25 UTC (permalink / raw)
To: buildroot
The url of the git repository is changed so use the updated one.
This fix the error:
fatal: unable to connect to git.jdl.com:
git.jdl.com[0: 208.123.73.151]: errno=Connection refused
Signed-off-by: Fabio Porcedda <fabio.porcedda@gmail.com>
---
package/dtc/dtc.mk | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/package/dtc/dtc.mk b/package/dtc/dtc.mk
index 51b5b4e..ba1280e 100644
--- a/package/dtc/dtc.mk
+++ b/package/dtc/dtc.mk
@@ -5,7 +5,8 @@
################################################################################
DTC_VERSION = v1.4.0
-DTC_SITE = git://git.jdl.com/software/dtc.git
+DTC_SITE = https://git.kernel.org/pub/scm/utils/dtc/dtc.git
+DTC_SITE_METHOD = git
DTC_LICENSE = GPLv2+/BSD-2c
DTC_LICENSE_FILES = README.license GPL
DTC_INSTALL_STAGING = YES
--
2.1.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [Buildroot] [PATCH] dtc: update source url
2015-01-11 8:25 [Buildroot] [PATCH] dtc: update source url Fabio Porcedda
@ 2015-01-12 22:54 ` Yann E. MORIN
2015-01-13 17:50 ` Fabio Porcedda
0 siblings, 1 reply; 3+ messages in thread
From: Yann E. MORIN @ 2015-01-12 22:54 UTC (permalink / raw)
To: buildroot
Fabio, All,
On 2015-01-11 09:25 +0100, Fabio Porcedda spake thusly:
> The url of the git repository is changed so use the updated one.
>
> This fix the error:
>
> fatal: unable to connect to git.jdl.com:
> git.jdl.com[0: 208.123.73.151]: errno=Connection refused
Yup, it is dead now... :-(
However, Peter S. has a current series handling the same issue, with
further enhancement to dtc:
http://patchwork.ozlabs.org/patch/427484/ (fix URL)
http://patchwork.ozlabs.org/patch/427483/ (bump)
http://patchwork.ozlabs.org/patch/427485/ (host-dtc)
http://patchwork.ozlabs.org/patch/427486/ (overlay support)
So, I've marked your patch as Superseded in PAtchwork (even though Peter
was asked to do some changes on his series. Care to have a look when he
respins? Thanks!
Peter, you may want to Cc Fabio on your next spin of the fix+bump parts.
Regards,
Yann E. MORIN.
> Signed-off-by: Fabio Porcedda <fabio.porcedda@gmail.com>
> ---
> package/dtc/dtc.mk | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/package/dtc/dtc.mk b/package/dtc/dtc.mk
> index 51b5b4e..ba1280e 100644
> --- a/package/dtc/dtc.mk
> +++ b/package/dtc/dtc.mk
> @@ -5,7 +5,8 @@
> ################################################################################
>
> DTC_VERSION = v1.4.0
> -DTC_SITE = git://git.jdl.com/software/dtc.git
> +DTC_SITE = https://git.kernel.org/pub/scm/utils/dtc/dtc.git
> +DTC_SITE_METHOD = git
> DTC_LICENSE = GPLv2+/BSD-2c
> DTC_LICENSE_FILES = README.license GPL
> DTC_INSTALL_STAGING = YES
> --
> 2.1.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] 3+ messages in thread
* [Buildroot] [PATCH] dtc: update source url
2015-01-12 22:54 ` Yann E. MORIN
@ 2015-01-13 17:50 ` Fabio Porcedda
0 siblings, 0 replies; 3+ messages in thread
From: Fabio Porcedda @ 2015-01-13 17:50 UTC (permalink / raw)
To: buildroot
On Mon, Jan 12, 2015 at 11:54 PM, Yann E. MORIN <yann.morin.1998@free.fr> wrote:
> Fabio, All,
>
> On 2015-01-11 09:25 +0100, Fabio Porcedda spake thusly:
>> The url of the git repository is changed so use the updated one.
>>
>> This fix the error:
>>
>> fatal: unable to connect to git.jdl.com:
>> git.jdl.com[0: 208.123.73.151]: errno=Connection refused
>
> Yup, it is dead now... :-(
>
> However, Peter S. has a current series handling the same issue, with
> further enhancement to dtc:
> http://patchwork.ozlabs.org/patch/427484/ (fix URL)
> http://patchwork.ozlabs.org/patch/427483/ (bump)
> http://patchwork.ozlabs.org/patch/427485/ (host-dtc)
> http://patchwork.ozlabs.org/patch/427486/ (overlay support)
I've missed that patch set, thanks for letting me know.
> So, I've marked your patch as Superseded in PAtchwork (even though Peter
> was asked to do some changes on his series. Care to have a look when he
> respins? Thanks!
Sure
BR
--
Fabio Porcedda
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-01-13 17:50 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-01-11 8:25 [Buildroot] [PATCH] dtc: update source url Fabio Porcedda
2015-01-12 22:54 ` Yann E. MORIN
2015-01-13 17:50 ` Fabio Porcedda
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox