Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/cdrkit: standardize site URL
@ 2014-10-22 13:14 Karoly Kasza
  2014-10-22 13:22 ` Thomas Petazzoni
  0 siblings, 1 reply; 7+ messages in thread
From: Karoly Kasza @ 2014-10-22 13:14 UTC (permalink / raw)
  To: buildroot

Standardize download site URL using the Debian mirror.

Signed-off-by: Karoly Kasza <kaszak@gmail.com>
---
 package/cdrkit/cdrkit.mk |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/cdrkit/cdrkit.mk b/package/cdrkit/cdrkit.mk
index 3f2b429..e1392b6 100644
--- a/package/cdrkit/cdrkit.mk
+++ b/package/cdrkit/cdrkit.mk
@@ -6,7 +6,7 @@
 
 CDRKIT_VERSION = 1.1.11
 CDRKIT_SOURCE = cdrkit_$(CDRKIT_VERSION).orig.tar.gz
-CDRKIT_SITE = http://snapshot.debian.org/archive/debian/20101018T151929Z/pool/main/c/cdrkit/
+CDRKIT_SITE = $(BR2_DEBIAN_MIRROR)/debian/pool/main/c/cdrkit
 CDRKIT_DEPENDENCIES = libcap bzip2 zlib
 CDRKIT_LICENSE = GPLv2
 CDRKIT_LICENSE_FILES = COPYING
-- 
1.7.10.4

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

* [Buildroot] [PATCH 1/1] package/cdrkit: standardize site URL
  2014-10-22 13:14 [Buildroot] [PATCH 1/1] package/cdrkit: standardize site URL Karoly Kasza
@ 2014-10-22 13:22 ` Thomas Petazzoni
  2014-10-22 15:09   ` Károly Kasza
  2014-10-22 16:45   ` Arnout Vandecappelle
  0 siblings, 2 replies; 7+ messages in thread
From: Thomas Petazzoni @ 2014-10-22 13:22 UTC (permalink / raw)
  To: buildroot

Dear Karoly Kasza,

On Wed, 22 Oct 2014 15:14:19 +0200, Karoly Kasza wrote:
> Standardize download site URL using the Debian mirror.
> 
> Signed-off-by: Karoly Kasza <kaszak@gmail.com>
> ---
>  package/cdrkit/cdrkit.mk |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/package/cdrkit/cdrkit.mk b/package/cdrkit/cdrkit.mk
> index 3f2b429..e1392b6 100644
> --- a/package/cdrkit/cdrkit.mk
> +++ b/package/cdrkit/cdrkit.mk
> @@ -6,7 +6,7 @@
>  
>  CDRKIT_VERSION = 1.1.11
>  CDRKIT_SOURCE = cdrkit_$(CDRKIT_VERSION).orig.tar.gz
> -CDRKIT_SITE = http://snapshot.debian.org/archive/debian/20101018T151929Z/pool/main/c/cdrkit/
> +CDRKIT_SITE = $(BR2_DEBIAN_MIRROR)/debian/pool/main/c/cdrkit
>  CDRKIT_DEPENDENCIES = libcap bzip2 zlib
>  CDRKIT_LICENSE = GPLv2
>  CDRKIT_LICENSE_FILES = COPYING

Yeah, well, actually, I believe using snapshot.debian.org is a better
idea, since it guarantees that files won't be moved. While using
$(BR2_DEBIAN_MIRROR) means that we point to locations where tarballs
will disappear at some point. At least, we've seen that in the past.

So maybe we should rather get rid of BR2_DEBIAN_MIRROR and make sure
all packages downloading their source from Debian use
snapshot.debian.org instead.

Thoughts?

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

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

* [Buildroot] [PATCH 1/1] package/cdrkit: standardize site URL
  2014-10-22 13:22 ` Thomas Petazzoni
@ 2014-10-22 15:09   ` Károly Kasza
  2014-10-22 15:22     ` Thomas Petazzoni
  2014-10-22 16:45   ` Arnout Vandecappelle
  1 sibling, 1 reply; 7+ messages in thread
From: Károly Kasza @ 2014-10-22 15:09 UTC (permalink / raw)
  To: buildroot

Hi Thomas,

I tried to standardize this package, but what you are telling makes sense.
If you and Yann both agree to use snapshot.debian.org instead, than reject
this patch
and I will send a patchset, that completely removes BR2_DEBIAN_MIRROR from
Buildroot,
and changes all occurrences to snapshot.debian.org, is that OK with you?

Best regards,
Karoly

On Wed, Oct 22, 2014 at 3:22 PM, Thomas Petazzoni <
thomas.petazzoni@free-electrons.com> wrote:

> Dear Karoly Kasza,
>
> On Wed, 22 Oct 2014 15:14:19 +0200, Karoly Kasza wrote:
> > Standardize download site URL using the Debian mirror.
> >
> > Signed-off-by: Karoly Kasza <kaszak@gmail.com>
> > ---
> >  package/cdrkit/cdrkit.mk |    2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/package/cdrkit/cdrkit.mk b/package/cdrkit/cdrkit.mk
> > index 3f2b429..e1392b6 100644
> > --- a/package/cdrkit/cdrkit.mk
> > +++ b/package/cdrkit/cdrkit.mk
> > @@ -6,7 +6,7 @@
> >
> >  CDRKIT_VERSION = 1.1.11
> >  CDRKIT_SOURCE = cdrkit_$(CDRKIT_VERSION).orig.tar.gz
> > -CDRKIT_SITE =
> http://snapshot.debian.org/archive/debian/20101018T151929Z/pool/main/c/cdrkit/
> > +CDRKIT_SITE = $(BR2_DEBIAN_MIRROR)/debian/pool/main/c/cdrkit
> >  CDRKIT_DEPENDENCIES = libcap bzip2 zlib
> >  CDRKIT_LICENSE = GPLv2
> >  CDRKIT_LICENSE_FILES = COPYING
>
> Yeah, well, actually, I believe using snapshot.debian.org is a better
> idea, since it guarantees that files won't be moved. While using
> $(BR2_DEBIAN_MIRROR) means that we point to locations where tarballs
> will disappear at some point. At least, we've seen that in the past.
>
> So maybe we should rather get rid of BR2_DEBIAN_MIRROR and make sure
> all packages downloading their source from Debian use
> snapshot.debian.org instead.
>
> Thoughts?
>
> Thomas
> --
> Thomas Petazzoni, CTO, Free Electrons
> Embedded Linux, Kernel and Android engineering
> http://free-electrons.com
>



-- 

?dv,
KK
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20141022/691db296/attachment.html>

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

* [Buildroot] [PATCH 1/1] package/cdrkit: standardize site URL
  2014-10-22 15:09   ` Károly Kasza
@ 2014-10-22 15:22     ` Thomas Petazzoni
  0 siblings, 0 replies; 7+ messages in thread
From: Thomas Petazzoni @ 2014-10-22 15:22 UTC (permalink / raw)
  To: buildroot

Dear K?roly Kasza,

On Wed, 22 Oct 2014 17:09:22 +0200, K?roly Kasza wrote:

> I tried to standardize this package, but what you are telling makes sense.
> If you and Yann both agree to use snapshot.debian.org instead, than reject
> this patch
> and I will send a patchset, that completely removes BR2_DEBIAN_MIRROR from
> Buildroot,
> and changes all occurrences to snapshot.debian.org, is that OK with you?

It's OK with me, but I'd like to have some feedback from Yann and Peter
about this before you spend time fixing all the other packages. Maybe
there's some drawback I'm missing about using snapshot.debian.net, and
I don't want you to waste time on something that will not be merged.

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

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

* [Buildroot] [PATCH 1/1] package/cdrkit: standardize site URL
  2014-10-22 13:22 ` Thomas Petazzoni
  2014-10-22 15:09   ` Károly Kasza
@ 2014-10-22 16:45   ` Arnout Vandecappelle
  2014-10-23  7:50     ` Thomas Petazzoni
  1 sibling, 1 reply; 7+ messages in thread
From: Arnout Vandecappelle @ 2014-10-22 16:45 UTC (permalink / raw)
  To: buildroot

On 22/10/14 15:22, Thomas Petazzoni wrote:
> Dear Karoly Kasza,
> 
> On Wed, 22 Oct 2014 15:14:19 +0200, Karoly Kasza wrote:
>> Standardize download site URL using the Debian mirror.
>>
>> Signed-off-by: Karoly Kasza <kaszak@gmail.com>
>> ---
>>  package/cdrkit/cdrkit.mk |    2 +-
>>  1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/package/cdrkit/cdrkit.mk b/package/cdrkit/cdrkit.mk
>> index 3f2b429..e1392b6 100644
>> --- a/package/cdrkit/cdrkit.mk
>> +++ b/package/cdrkit/cdrkit.mk
>> @@ -6,7 +6,7 @@
>>  
>>  CDRKIT_VERSION = 1.1.11
>>  CDRKIT_SOURCE = cdrkit_$(CDRKIT_VERSION).orig.tar.gz
>> -CDRKIT_SITE = http://snapshot.debian.org/archive/debian/20101018T151929Z/pool/main/c/cdrkit/
>> +CDRKIT_SITE = $(BR2_DEBIAN_MIRROR)/debian/pool/main/c/cdrkit
>>  CDRKIT_DEPENDENCIES = libcap bzip2 zlib
>>  CDRKIT_LICENSE = GPLv2
>>  CDRKIT_LICENSE_FILES = COPYING
> 
> Yeah, well, actually, I believe using snapshot.debian.org is a better
> idea, since it guarantees that files won't be moved. While using
> $(BR2_DEBIAN_MIRROR) means that we point to locations where tarballs
> will disappear at some point. At least, we've seen that in the past.
> 
> So maybe we should rather get rid of BR2_DEBIAN_MIRROR and make sure
> all packages downloading their source from Debian use
> snapshot.debian.org instead.
> 
> Thoughts?

 We've discussed this before and IIRC nobody was against getting rid of
BR2_DEBIAN_MIRROR. Well, looking back through my mail archives, it looks like
you (Thomas) said a couple of times to use snapshot instead of BR2_DEBIAN_MIRROR
and nobody objected.

 I certainly agree that using snapshot is a better idea. We now have a mix of 17
packages using BR2_DEBIAN_MIRROR and 10 packages using snapshot.debian.org, and
AFAIK we never had any problem with the snapshot packages.

 Regards,
 Arnout


-- 
Arnout Vandecappelle                          arnout at mind be
Senior Embedded Software Architect            +32-16-286500
Essensium/Mind                                http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium           BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint:  7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F

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

* [Buildroot] [PATCH 1/1] package/cdrkit: standardize site URL
  2014-10-22 16:45   ` Arnout Vandecappelle
@ 2014-10-23  7:50     ` Thomas Petazzoni
  2014-10-23  7:51       ` Károly Kasza
  0 siblings, 1 reply; 7+ messages in thread
From: Thomas Petazzoni @ 2014-10-23  7:50 UTC (permalink / raw)
  To: buildroot

Dear Arnout Vandecappelle,

On Wed, 22 Oct 2014 18:45:19 +0200, Arnout Vandecappelle wrote:

>  We've discussed this before and IIRC nobody was against getting rid of
> BR2_DEBIAN_MIRROR. Well, looking back through my mail archives, it looks like
> you (Thomas) said a couple of times to use snapshot instead of BR2_DEBIAN_MIRROR
> and nobody objected.
> 
>  I certainly agree that using snapshot is a better idea. We now have a mix of 17
> packages using BR2_DEBIAN_MIRROR and 10 packages using snapshot.debian.org, and
> AFAIK we never had any problem with the snapshot packages.

I agree. So Karoly, feel free to work on a patch series moving all
packages fetching their source code from Debian to use
snapshot.debian.org, and then removing BR2_DEBIAN_MIRROR.

Thanks a lot!

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

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

* [Buildroot] [PATCH 1/1] package/cdrkit: standardize site URL
  2014-10-23  7:50     ` Thomas Petazzoni
@ 2014-10-23  7:51       ` Károly Kasza
  0 siblings, 0 replies; 7+ messages in thread
From: Károly Kasza @ 2014-10-23  7:51 UTC (permalink / raw)
  To: buildroot

Will do!

Regards,
Karoly

On Thu, Oct 23, 2014 at 9:50 AM, Thomas Petazzoni <
thomas.petazzoni@free-electrons.com> wrote:

> Dear Arnout Vandecappelle,
>
> On Wed, 22 Oct 2014 18:45:19 +0200, Arnout Vandecappelle wrote:
>
> >  We've discussed this before and IIRC nobody was against getting rid of
> > BR2_DEBIAN_MIRROR. Well, looking back through my mail archives, it looks
> like
> > you (Thomas) said a couple of times to use snapshot instead of
> BR2_DEBIAN_MIRROR
> > and nobody objected.
> >
> >  I certainly agree that using snapshot is a better idea. We now have a
> mix of 17
> > packages using BR2_DEBIAN_MIRROR and 10 packages using
> snapshot.debian.org, and
> > AFAIK we never had any problem with the snapshot packages.
>
> I agree. So Karoly, feel free to work on a patch series moving all
> packages fetching their source code from Debian to use
> snapshot.debian.org, and then removing BR2_DEBIAN_MIRROR.
>
> Thanks a lot!
>
> Thomas
> --
> Thomas Petazzoni, CTO, Free Electrons
> Embedded Linux, Kernel and Android engineering
> http://free-electrons.com
>



-- 

?dv,
KK
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20141023/7a9a99f5/attachment.html>

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

end of thread, other threads:[~2014-10-23  7:51 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-10-22 13:14 [Buildroot] [PATCH 1/1] package/cdrkit: standardize site URL Karoly Kasza
2014-10-22 13:22 ` Thomas Petazzoni
2014-10-22 15:09   ` Károly Kasza
2014-10-22 15:22     ` Thomas Petazzoni
2014-10-22 16:45   ` Arnout Vandecappelle
2014-10-23  7:50     ` Thomas Petazzoni
2014-10-23  7:51       ` Károly Kasza

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox