* [PATCH] bdwgc: use github repo for source location
@ 2016-04-04 16:18 Bill Randle
2016-04-05 1:33 ` Saul Wold
0 siblings, 1 reply; 4+ messages in thread
From: Bill Randle @ 2016-04-04 16:18 UTC (permalink / raw)
To: openembedded-core
The Yocto Autobuilder has been unable to fetch the release package
from the developer's website at www.hboehm.info, so change recipe
to fetch from the developer's github repo instead.
Signed-off-by: Bill Randle <william.c.randle@intel.com>
---
meta/recipes-support/bdwgc/bdwgc_7.4.2.bb | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/meta/recipes-support/bdwgc/bdwgc_7.4.2.bb b/meta/recipes-support/bdwgc/bdwgc_7.4.2.bb
index 95e358f..7a4110d 100644
--- a/meta/recipes-support/bdwgc/bdwgc_7.4.2.bb
+++ b/meta/recipes-support/bdwgc/bdwgc_7.4.2.bb
@@ -21,12 +21,10 @@ SECTION = "devel"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://README.QUICK;md5=55f5088f90a982fed7af9a4897047ef7"
-SRC_URI = "http://www.hboehm.info/gc/gc_source/gc-${PV}.tar.gz \
+SRCREV = "e31cdc288ffbee5bf25f948e19deb5a7ce846971"
+SRC_URI = "git://github.com/ivmai/bdwgc.git;branch=release-7_4 \
file://0001-fix-build-with-musl.patch \
"
-
-SRC_URI[md5sum] = "12c05fd2811d989341d8c6d81f66af87"
-SRC_URI[sha256sum] = "63320ad7c45460e4a40e03f5aa4c6893783f21a16416c3282b994f933312afa2"
FILES_${PN}-doc = "/usr/share"
REAL_PV = "${@[d.getVar('PV',1)[:-1], d.getVar('PV',1)][(d.getVar('PV',1)[-1]).isdigit()]}"
--
2.5.0
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH] bdwgc: use github repo for source location
2016-04-04 16:18 [PATCH] bdwgc: use github repo for source location Bill Randle
@ 2016-04-05 1:33 ` Saul Wold
2016-04-05 13:55 ` Richard Purdie
0 siblings, 1 reply; 4+ messages in thread
From: Saul Wold @ 2016-04-05 1:33 UTC (permalink / raw)
To: Bill Randle, openembedded-core
On Mon, 2016-04-04 at 09:18 -0700, Bill Randle wrote:
> The Yocto Autobuilder has been unable to fetch the release package
> from the developer's website at www.hboehm.info, so change recipe
> to fetch from the developer's github repo instead.
>
> Signed-off-by: Bill Randle <william.c.randle@intel.com>
> ---
> meta/recipes-support/bdwgc/bdwgc_7.4.2.bb | 6 ++----
> 1 file changed, 2 insertions(+), 4 deletions(-)
>
> diff --git a/meta/recipes-support/bdwgc/bdwgc_7.4.2.bb
> b/meta/recipes-support/bdwgc/bdwgc_7.4.2.bb
> index 95e358f..7a4110d 100644
> --- a/meta/recipes-support/bdwgc/bdwgc_7.4.2.bb
> +++ b/meta/recipes-support/bdwgc/bdwgc_7.4.2.bb
> @@ -21,12 +21,10 @@ SECTION = "devel"
> LICENSE = "MIT"
> LIC_FILES_CHKSUM =
> "file://README.QUICK;md5=55f5088f90a982fed7af9a4897047ef7"
>
> -SRC_URI = "http://www.hboehm.info/gc/gc_source/gc-${PV}.tar.gz \
> +SRCREV = "e31cdc288ffbee5bf25f948e19deb5a7ce846971"
> +SRC_URI = "git://github.com/ivmai/bdwgc.git;branch=release-7_4 \
> file://0001-fix-build-with-musl.patch \
> "
It appears that when you updated to the git location the source base
might have changed and the MUSL patch is no longer applyng correctly.
Please verify that the patch correctly applies.
See the failure in master-next with your patch:
https://autobuilder.yoctoproject.org/main/builders/nightly-no-x11/build
s/76/steps/BuildImages/logs/stdio
This might cause more failures in the Autobuilder, this is the first
that I saw.
Sau!
> -
> -SRC_URI[md5sum] = "12c05fd2811d989341d8c6d81f66af87"
> -SRC_URI[sha256sum] =
> "63320ad7c45460e4a40e03f5aa4c6893783f21a16416c3282b994f933312afa2"
> FILES_${PN}-doc = "/usr/share"
>
> REAL_PV = "${@[d.getVar('PV',1)[:-1],
> d.getVar('PV',1)][(d.getVar('PV',1)[-1]).isdigit()]}"
> --
> 2.5.0
>
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH] bdwgc: use github repo for source location
2016-04-05 1:33 ` Saul Wold
@ 2016-04-05 13:55 ` Richard Purdie
2016-04-05 15:31 ` Randle, William C
0 siblings, 1 reply; 4+ messages in thread
From: Richard Purdie @ 2016-04-05 13:55 UTC (permalink / raw)
To: Saul Wold, Bill Randle, openembedded-core
On Mon, 2016-04-04 at 18:33 -0700, Saul Wold wrote:
> On Mon, 2016-04-04 at 09:18 -0700, Bill Randle wrote:
> > The Yocto Autobuilder has been unable to fetch the release package
> > from the developer's website at www.hboehm.info, so change recipe
> > to fetch from the developer's github repo instead.
> >
> > Signed-off-by: Bill Randle <william.c.randle@intel.com>
> > ---
> > meta/recipes-support/bdwgc/bdwgc_7.4.2.bb | 6 ++----
> > 1 file changed, 2 insertions(+), 4 deletions(-)
> >
> > diff --git a/meta/recipes-support/bdwgc/bdwgc_7.4.2.bb
> > b/meta/recipes-support/bdwgc/bdwgc_7.4.2.bb
> > index 95e358f..7a4110d 100644
> > --- a/meta/recipes-support/bdwgc/bdwgc_7.4.2.bb
> > +++ b/meta/recipes-support/bdwgc/bdwgc_7.4.2.bb
> > @@ -21,12 +21,10 @@ SECTION = "devel"
> > LICENSE = "MIT"
> > LIC_FILES_CHKSUM =
> > "file://README.QUICK;md5=55f5088f90a982fed7af9a4897047ef7"
> >
> > -SRC_URI = "http://www.hboehm.info/gc/gc_source/gc-${PV}.tar.gz \
> > +SRCREV = "e31cdc288ffbee5bf25f948e19deb5a7ce846971"
> > +SRC_URI = "git://github.com/ivmai/bdwgc.git;branch=release-7_4 \
> > file://0001-fix-build-with-musl.patch \
> > "
>
> It appears that when you updated to the git location the source base
> might have changed and the MUSL patch is no longer applyng correctly.
>
> Please verify that the patch correctly applies.
>
> See the failure in master-next with your patch:
>
> https://autobuilder.yoctoproject.org/main/builders/nightly-no-x11/bui
> ld
> s/76/steps/BuildImages/logs/stdio
>
> This might cause more failures in the Autobuilder, this is the first
> that I saw.
The patch is ok, but ${S} wasn't set correctly. I've tweaked in the
version I merged into master.
Cheers,
Richard
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH] bdwgc: use github repo for source location
2016-04-05 13:55 ` Richard Purdie
@ 2016-04-05 15:31 ` Randle, William C
0 siblings, 0 replies; 4+ messages in thread
From: Randle, William C @ 2016-04-05 15:31 UTC (permalink / raw)
To: richard.purdie@linuxfoundation.org,
openembedded-core@lists.openembedded.org, Wold, Saul
On Tue, 2016-04-05 at 14:55 +0100, Richard Purdie wrote:
On Mon, 2016-04-04 at 18:33 -0700, Saul Wold wrote:
On Mon, 2016-04-04 at 09:18 -0700, Bill Randle wrote:
The Yocto Autobuilder has been unable to fetch the release package
from the developer's website at www.hboehm.info<http://www.hboehm.info>, so change recipe
to fetch from the developer's github repo instead.
Signed-off-by: Bill Randle <william.c.randle@intel.com<mailto:william.c.randle@intel.com>>
---
meta/recipes-support/bdwgc/bdwgc_7.4.2.bb | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/meta/recipes-support/bdwgc/bdwgc_7.4.2.bb
b/meta/recipes-support/bdwgc/bdwgc_7.4.2.bb
index 95e358f..7a4110d 100644
--- a/meta/recipes-support/bdwgc/bdwgc_7.4.2.bb
+++ b/meta/recipes-support/bdwgc/bdwgc_7.4.2.bb
@@ -21,12 +21,10 @@ SECTION = "devel"
LICENSE = "MIT"
LIC_FILES_CHKSUM =
"file://README.QUICK;md5=55f5088f90a982fed7af9a4897047ef7"
-SRC_URI = "http://www.hboehm.info/gc/gc_source/gc-${PV}.tar.gz \
+SRCREV = "e31cdc288ffbee5bf25f948e19deb5a7ce846971"
+SRC_URI = "git://github.com/ivmai/bdwgc.git;branch=release-7_4 \
file://0001-fix-build-with-musl.patch \
"
It appears that when you updated to the git location the source base
might have changed and the MUSL patch is no longer applyng correctly.
Please verify that the patch correctly applies.
See the failure in master-next with your patch:
https://autobuilder.yoctoproject.org/main/builders/nightly-no-x11/bui
ld
s/76/steps/BuildImages/logs/stdio
This might cause more failures in the Autobuilder, this is the first
that I saw.
The patch is ok, but ${S} wasn't set correctly. I've tweaked in the
version I merged into master.
Cheers,
Richard
Thanks, guys!
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2016-04-05 15:31 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-04-04 16:18 [PATCH] bdwgc: use github repo for source location Bill Randle
2016-04-05 1:33 ` Saul Wold
2016-04-05 13:55 ` Richard Purdie
2016-04-05 15:31 ` Randle, William C
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox