All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-oe][PATCH] devmem2: Change source URL to regain access to it
@ 2017-02-28 15:01 Nicolas Ferre
  2017-03-14 16:14 ` Denys Dmytriyenko
  0 siblings, 1 reply; 5+ messages in thread
From: Nicolas Ferre @ 2017-02-28 15:01 UTC (permalink / raw)
  To: Alexandre Belloni, openembedded-devel; +Cc: Nicolas Ferre

Change URL due to connexion error on the original page.
As the header of the new devmem2.c source file has changed, change the
signature and the LIC_FILES_CHKSUM specificaiton.

Signed-off-by: Nicolas Ferre <nicolas.ferre@microchip.com>
---
 meta-oe/recipes-support/devmem2/devmem2.bb | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/meta-oe/recipes-support/devmem2/devmem2.bb b/meta-oe/recipes-support/devmem2/devmem2.bb
index e48cc9210bb3..c42eb5e0b1c5 100644
--- a/meta-oe/recipes-support/devmem2/devmem2.bb
+++ b/meta-oe/recipes-support/devmem2/devmem2.bb
@@ -1,9 +1,9 @@
 SUMMARY = "Simple program to read/write from/to any location in memory"
 LICENSE = "GPLv2+"
-LIC_FILES_CHKSUM = "file://devmem2.c;endline=28;md5=dd68f2b0a5184b3db3dc25c99e0bd0cd"
+LIC_FILES_CHKSUM = "file://devmem2.c;endline=38;md5=a9eb9f3890384519f435aedf986297cf"
 PR = "r7"
 
-SRC_URI = "http://www.lartmaker.nl/lartware/port/devmem2.c \
+SRC_URI = "http://www.free-electrons.com/pub/mirror/devmem2.c \
            file://devmem2-fixups-2.patch;apply=yes;striplevel=0"
 S = "${WORKDIR}"
 
@@ -18,5 +18,5 @@ do_install() {
     install devmem2 ${D}${bindir}
 }
 
-SRC_URI[md5sum] = "be12c0132a1ae118cbf5e79d98427c1d"
-SRC_URI[sha256sum] = "ec382c90af3ef2f49695ff14a4d6521e58ac482c4e29d6c9ebca8768f699c191"
+SRC_URI[md5sum] = "e23f236e94be4c429aa1ceac0f01544b"
+SRC_URI[sha256sum] = "3b15515693bae1ebd14d914e46d388edfec2175829ea1576a7a0c8606ebbe639"
-- 
2.9.0



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

* Re: [meta-oe][PATCH] devmem2: Change source URL to regain access to it
  2017-02-28 15:01 [meta-oe][PATCH] devmem2: Change source URL to regain access to it Nicolas Ferre
@ 2017-03-14 16:14 ` Denys Dmytriyenko
  2017-03-14 17:37   ` Alexandre Belloni
  0 siblings, 1 reply; 5+ messages in thread
From: Denys Dmytriyenko @ 2017-03-14 16:14 UTC (permalink / raw)
  To: Nicolas Ferre; +Cc: openembedded-devel

On Tue, Feb 28, 2017 at 04:01:19PM +0100, Nicolas Ferre wrote:
> Change URL due to connexion error on the original page.
> As the header of the new devmem2.c source file has changed, change the
> signature and the LIC_FILES_CHKSUM specificaiton.

Oh, great! So, now, everyone who has this file cached locally would have to 
invalidate their mirrors? Moreover, if you are building master and morty or 
older, you can't reuse the same source mirror as each of the builds will 
complain about bad checksums...

-- 
Denys


> Signed-off-by: Nicolas Ferre <nicolas.ferre@microchip.com>
> ---
>  meta-oe/recipes-support/devmem2/devmem2.bb | 8 ++++----
>  1 file changed, 4 insertions(+), 4 deletions(-)
> 
> diff --git a/meta-oe/recipes-support/devmem2/devmem2.bb b/meta-oe/recipes-support/devmem2/devmem2.bb
> index e48cc9210bb3..c42eb5e0b1c5 100644
> --- a/meta-oe/recipes-support/devmem2/devmem2.bb
> +++ b/meta-oe/recipes-support/devmem2/devmem2.bb
> @@ -1,9 +1,9 @@
>  SUMMARY = "Simple program to read/write from/to any location in memory"
>  LICENSE = "GPLv2+"
> -LIC_FILES_CHKSUM = "file://devmem2.c;endline=28;md5=dd68f2b0a5184b3db3dc25c99e0bd0cd"
> +LIC_FILES_CHKSUM = "file://devmem2.c;endline=38;md5=a9eb9f3890384519f435aedf986297cf"
>  PR = "r7"
>  
> -SRC_URI = "http://www.lartmaker.nl/lartware/port/devmem2.c \
> +SRC_URI = "http://www.free-electrons.com/pub/mirror/devmem2.c \
>             file://devmem2-fixups-2.patch;apply=yes;striplevel=0"
>  S = "${WORKDIR}"
>  
> @@ -18,5 +18,5 @@ do_install() {
>      install devmem2 ${D}${bindir}
>  }
>  
> -SRC_URI[md5sum] = "be12c0132a1ae118cbf5e79d98427c1d"
> -SRC_URI[sha256sum] = "ec382c90af3ef2f49695ff14a4d6521e58ac482c4e29d6c9ebca8768f699c191"
> +SRC_URI[md5sum] = "e23f236e94be4c429aa1ceac0f01544b"
> +SRC_URI[sha256sum] = "3b15515693bae1ebd14d914e46d388edfec2175829ea1576a7a0c8606ebbe639"
> -- 
> 2.9.0
> 
> -- 
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel


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

* Re: [meta-oe][PATCH] devmem2: Change source URL to regain access to it
  2017-03-14 16:14 ` Denys Dmytriyenko
@ 2017-03-14 17:37   ` Alexandre Belloni
  2017-03-14 18:13     ` Martin Jansa
  0 siblings, 1 reply; 5+ messages in thread
From: Alexandre Belloni @ 2017-03-14 17:37 UTC (permalink / raw)
  To: Denys Dmytriyenko; +Cc: Nicolas Ferre, openembedded-devel

On 14/03/2017 at 12:14:31 -0400, Denys Dmytriyenko wrote:
> On Tue, Feb 28, 2017 at 04:01:19PM +0100, Nicolas Ferre wrote:
> > Change URL due to connexion error on the original page.
> > As the header of the new devmem2.c source file has changed, change the
> > signature and the LIC_FILES_CHKSUM specificaiton.
> 
> Oh, great! So, now, everyone who has this file cached locally would have to 
> invalidate their mirrors? Moreover, if you are building master and morty or 
> older, you can't reuse the same source mirror as each of the builds will 
> complain about bad checksums...
> 

Please suggest another solution. The main issue is that lartmaker.nl
doesn't reply anymore and we don't have a local copy of the previous
devmem2.c and I don't see it on
http://downloads.yoctoproject.org/mirror/sources/ either.

> -- 
> Denys
> 
> 
> > Signed-off-by: Nicolas Ferre <nicolas.ferre@microchip.com>
> > ---
> >  meta-oe/recipes-support/devmem2/devmem2.bb | 8 ++++----
> >  1 file changed, 4 insertions(+), 4 deletions(-)
> > 
> > diff --git a/meta-oe/recipes-support/devmem2/devmem2.bb b/meta-oe/recipes-support/devmem2/devmem2.bb
> > index e48cc9210bb3..c42eb5e0b1c5 100644
> > --- a/meta-oe/recipes-support/devmem2/devmem2.bb
> > +++ b/meta-oe/recipes-support/devmem2/devmem2.bb
> > @@ -1,9 +1,9 @@
> >  SUMMARY = "Simple program to read/write from/to any location in memory"
> >  LICENSE = "GPLv2+"
> > -LIC_FILES_CHKSUM = "file://devmem2.c;endline=28;md5=dd68f2b0a5184b3db3dc25c99e0bd0cd"
> > +LIC_FILES_CHKSUM = "file://devmem2.c;endline=38;md5=a9eb9f3890384519f435aedf986297cf"
> >  PR = "r7"
> >  
> > -SRC_URI = "http://www.lartmaker.nl/lartware/port/devmem2.c \
> > +SRC_URI = "http://www.free-electrons.com/pub/mirror/devmem2.c \
> >             file://devmem2-fixups-2.patch;apply=yes;striplevel=0"
> >  S = "${WORKDIR}"
> >  
> > @@ -18,5 +18,5 @@ do_install() {
> >      install devmem2 ${D}${bindir}
> >  }
> >  
> > -SRC_URI[md5sum] = "be12c0132a1ae118cbf5e79d98427c1d"
> > -SRC_URI[sha256sum] = "ec382c90af3ef2f49695ff14a4d6521e58ac482c4e29d6c9ebca8768f699c191"
> > +SRC_URI[md5sum] = "e23f236e94be4c429aa1ceac0f01544b"
> > +SRC_URI[sha256sum] = "3b15515693bae1ebd14d914e46d388edfec2175829ea1576a7a0c8606ebbe639"
> > -- 
> > 2.9.0
> > 
> > -- 
> > _______________________________________________
> > Openembedded-devel mailing list
> > Openembedded-devel@lists.openembedded.org
> > http://lists.openembedded.org/mailman/listinfo/openembedded-devel

-- 
Alexandre Belloni, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com


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

* Re: [meta-oe][PATCH] devmem2: Change source URL to regain access to it
  2017-03-14 17:37   ` Alexandre Belloni
@ 2017-03-14 18:13     ` Martin Jansa
  2017-03-14 18:33       ` Alexandre Belloni
  0 siblings, 1 reply; 5+ messages in thread
From: Martin Jansa @ 2017-03-14 18:13 UTC (permalink / raw)
  To: Alexandre Belloni; +Cc: Nicolas Ferre, openembedded-devel

Denys already sent patch with alternative solution.

All things included in my bitbake world are also mirrored on
sources.openembedded.org, so here is the old version:

http://sources.openembedded.org/devmem2.c

On Tue, Mar 14, 2017 at 6:37 PM, Alexandre Belloni <
alexandre.belloni@free-electrons.com> wrote:

> On 14/03/2017 at 12:14:31 -0400, Denys Dmytriyenko wrote:
> > On Tue, Feb 28, 2017 at 04:01:19PM +0100, Nicolas Ferre wrote:
> > > Change URL due to connexion error on the original page.
> > > As the header of the new devmem2.c source file has changed, change the
> > > signature and the LIC_FILES_CHKSUM specificaiton.
> >
> > Oh, great! So, now, everyone who has this file cached locally would have
> to
> > invalidate their mirrors? Moreover, if you are building master and morty
> or
> > older, you can't reuse the same source mirror as each of the builds will
> > complain about bad checksums...
> >
>
> Please suggest another solution. The main issue is that lartmaker.nl
> doesn't reply anymore and we don't have a local copy of the previous
> devmem2.c and I don't see it on
> http://downloads.yoctoproject.org/mirror/sources/ either.
>
> > --
> > Denys
> >
> >
> > > Signed-off-by: Nicolas Ferre <nicolas.ferre@microchip.com>
> > > ---
> > >  meta-oe/recipes-support/devmem2/devmem2.bb | 8 ++++----
> > >  1 file changed, 4 insertions(+), 4 deletions(-)
> > >
> > > diff --git a/meta-oe/recipes-support/devmem2/devmem2.bb
> b/meta-oe/recipes-support/devmem2/devmem2.bb
> > > index e48cc9210bb3..c42eb5e0b1c5 100644
> > > --- a/meta-oe/recipes-support/devmem2/devmem2.bb
> > > +++ b/meta-oe/recipes-support/devmem2/devmem2.bb
> > > @@ -1,9 +1,9 @@
> > >  SUMMARY = "Simple program to read/write from/to any location in
> memory"
> > >  LICENSE = "GPLv2+"
> > > -LIC_FILES_CHKSUM = "file://devmem2.c;endline=28;md5=
> dd68f2b0a5184b3db3dc25c99e0bd0cd"
> > > +LIC_FILES_CHKSUM = "file://devmem2.c;endline=38;md5=
> a9eb9f3890384519f435aedf986297cf"
> > >  PR = "r7"
> > >
> > > -SRC_URI = "http://www.lartmaker.nl/lartware/port/devmem2.c \
> > > +SRC_URI = "http://www.free-electrons.com/pub/mirror/devmem2.c \
> > >             file://devmem2-fixups-2.patch;apply=yes;striplevel=0"
> > >  S = "${WORKDIR}"
> > >
> > > @@ -18,5 +18,5 @@ do_install() {
> > >      install devmem2 ${D}${bindir}
> > >  }
> > >
> > > -SRC_URI[md5sum] = "be12c0132a1ae118cbf5e79d98427c1d"
> > > -SRC_URI[sha256sum] = "ec382c90af3ef2f49695ff14a4d652
> 1e58ac482c4e29d6c9ebca8768f699c191"
> > > +SRC_URI[md5sum] = "e23f236e94be4c429aa1ceac0f01544b"
> > > +SRC_URI[sha256sum] = "3b15515693bae1ebd14d914e46d388
> edfec2175829ea1576a7a0c8606ebbe639"
> > > --
> > > 2.9.0
> > >
> > > --
> > > _______________________________________________
> > > Openembedded-devel mailing list
> > > Openembedded-devel@lists.openembedded.org
> > > http://lists.openembedded.org/mailman/listinfo/openembedded-devel
>
> --
> Alexandre Belloni, Free Electrons
> Embedded Linux and Kernel engineering
> http://free-electrons.com
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
>


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

* Re: [meta-oe][PATCH] devmem2: Change source URL to regain access to it
  2017-03-14 18:13     ` Martin Jansa
@ 2017-03-14 18:33       ` Alexandre Belloni
  0 siblings, 0 replies; 5+ messages in thread
From: Alexandre Belloni @ 2017-03-14 18:33 UTC (permalink / raw)
  To: Martin Jansa; +Cc: Nicolas Ferre, openembedded-devel

On 14/03/2017 at 19:13:19 +0100, Martin Jansa wrote:
> Denys already sent patch with alternative solution.
> 
> All things included in my bitbake world are also mirrored on
> sources.openembedded.org, so here is the old version:
> 
> http://sources.openembedded.org/devmem2.c
> 

Great, thanks!

> On Tue, Mar 14, 2017 at 6:37 PM, Alexandre Belloni <
> alexandre.belloni@free-electrons.com> wrote:
> 
> > On 14/03/2017 at 12:14:31 -0400, Denys Dmytriyenko wrote:
> > > On Tue, Feb 28, 2017 at 04:01:19PM +0100, Nicolas Ferre wrote:
> > > > Change URL due to connexion error on the original page.
> > > > As the header of the new devmem2.c source file has changed, change the
> > > > signature and the LIC_FILES_CHKSUM specificaiton.
> > >
> > > Oh, great! So, now, everyone who has this file cached locally would have
> > to
> > > invalidate their mirrors? Moreover, if you are building master and morty
> > or
> > > older, you can't reuse the same source mirror as each of the builds will
> > > complain about bad checksums...
> > >
> >
> > Please suggest another solution. The main issue is that lartmaker.nl
> > doesn't reply anymore and we don't have a local copy of the previous
> > devmem2.c and I don't see it on
> > http://downloads.yoctoproject.org/mirror/sources/ either.
> >
> > > --
> > > Denys
> > >
> > >
> > > > Signed-off-by: Nicolas Ferre <nicolas.ferre@microchip.com>
> > > > ---
> > > >  meta-oe/recipes-support/devmem2/devmem2.bb | 8 ++++----
> > > >  1 file changed, 4 insertions(+), 4 deletions(-)
> > > >
> > > > diff --git a/meta-oe/recipes-support/devmem2/devmem2.bb
> > b/meta-oe/recipes-support/devmem2/devmem2.bb
> > > > index e48cc9210bb3..c42eb5e0b1c5 100644
> > > > --- a/meta-oe/recipes-support/devmem2/devmem2.bb
> > > > +++ b/meta-oe/recipes-support/devmem2/devmem2.bb
> > > > @@ -1,9 +1,9 @@
> > > >  SUMMARY = "Simple program to read/write from/to any location in
> > memory"
> > > >  LICENSE = "GPLv2+"
> > > > -LIC_FILES_CHKSUM = "file://devmem2.c;endline=28;md5=
> > dd68f2b0a5184b3db3dc25c99e0bd0cd"
> > > > +LIC_FILES_CHKSUM = "file://devmem2.c;endline=38;md5=
> > a9eb9f3890384519f435aedf986297cf"
> > > >  PR = "r7"
> > > >
> > > > -SRC_URI = "http://www.lartmaker.nl/lartware/port/devmem2.c \
> > > > +SRC_URI = "http://www.free-electrons.com/pub/mirror/devmem2.c \
> > > >             file://devmem2-fixups-2.patch;apply=yes;striplevel=0"
> > > >  S = "${WORKDIR}"
> > > >
> > > > @@ -18,5 +18,5 @@ do_install() {
> > > >      install devmem2 ${D}${bindir}
> > > >  }
> > > >
> > > > -SRC_URI[md5sum] = "be12c0132a1ae118cbf5e79d98427c1d"
> > > > -SRC_URI[sha256sum] = "ec382c90af3ef2f49695ff14a4d652
> > 1e58ac482c4e29d6c9ebca8768f699c191"
> > > > +SRC_URI[md5sum] = "e23f236e94be4c429aa1ceac0f01544b"
> > > > +SRC_URI[sha256sum] = "3b15515693bae1ebd14d914e46d388
> > edfec2175829ea1576a7a0c8606ebbe639"
> > > > --
> > > > 2.9.0
> > > >
> > > > --
> > > > _______________________________________________
> > > > Openembedded-devel mailing list
> > > > Openembedded-devel@lists.openembedded.org
> > > > http://lists.openembedded.org/mailman/listinfo/openembedded-devel
> >
> > --
> > Alexandre Belloni, Free Electrons
> > Embedded Linux and Kernel engineering
> > http://free-electrons.com
> > --
> > _______________________________________________
> > Openembedded-devel mailing list
> > Openembedded-devel@lists.openembedded.org
> > http://lists.openembedded.org/mailman/listinfo/openembedded-devel
> >

-- 
Alexandre Belloni, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com


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

end of thread, other threads:[~2017-03-14 18:37 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-02-28 15:01 [meta-oe][PATCH] devmem2: Change source URL to regain access to it Nicolas Ferre
2017-03-14 16:14 ` Denys Dmytriyenko
2017-03-14 17:37   ` Alexandre Belloni
2017-03-14 18:13     ` Martin Jansa
2017-03-14 18:33       ` Alexandre Belloni

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.