* [meta-oe][PATCH] vim: add checksum @ 2015-03-20 14:20 Rafaël Carré 2015-03-22 10:09 ` Rafaël Carré 0 siblings, 1 reply; 19+ messages in thread From: Rafaël Carré @ 2015-03-20 14:20 UTC (permalink / raw) To: openembedded-devel --- meta-oe/recipes-support/vim/vim_7.4.481.bb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/meta-oe/recipes-support/vim/vim_7.4.481.bb b/meta-oe/recipes-support/vim/vim_7.4.481.bb index afdea84..ac59077 100644 --- a/meta-oe/recipes-support/vim/vim_7.4.481.bb +++ b/meta-oe/recipes-support/vim/vim_7.4.481.bb @@ -10,6 +10,10 @@ SRC_URI = "hg://vim.googlecode.com/hg/;protocol=https;module=vim \ file://disable_acl_header_check.patch;patchdir=.. \ file://vim-add-knob-whether-elf.h-are-checked.patch;patchdir=.. \ " + +SRC_URI[md5sum] = "5fd5d754581a673a25733c12367cf9d2" +SRC_URI[sha256sum] = "e2cc416dabea503e9e5631afc21bb00dcbfb9d05481641b75f247fd89ff4d7e8" + SRCREV = "v7-4-481" S = "${WORKDIR}/vim/src" -- 2.1.0 ^ permalink raw reply related [flat|nested] 19+ messages in thread
* Re: [meta-oe][PATCH] vim: add checksum 2015-03-20 14:20 [meta-oe][PATCH] vim: add checksum Rafaël Carré @ 2015-03-22 10:09 ` Rafaël Carré 2015-03-22 15:55 ` Martin Jansa 0 siblings, 1 reply; 19+ messages in thread From: Rafaël Carré @ 2015-03-22 10:09 UTC (permalink / raw) To: openembedded-devel Hello, I couldn't reproduce the checksum error with a fresh build with an empty downloads/ folder. So this patch is apparently needed only when populating downloads/ folder before fetching vim. I will investigate a bit more, I think the patch should actually be in bitbake (missing supports_checksum for Hg.py) On 03/20/2015 03:20 PM, Rafaël Carré wrote: > --- > meta-oe/recipes-support/vim/vim_7.4.481.bb | 4 ++++ > 1 file changed, 4 insertions(+) > > diff --git a/meta-oe/recipes-support/vim/vim_7.4.481.bb b/meta-oe/recipes-support/vim/vim_7.4.481.bb > index afdea84..ac59077 100644 > --- a/meta-oe/recipes-support/vim/vim_7.4.481.bb > +++ b/meta-oe/recipes-support/vim/vim_7.4.481.bb > @@ -10,6 +10,10 @@ SRC_URI = "hg://vim.googlecode.com/hg/;protocol=https;module=vim \ > file://disable_acl_header_check.patch;patchdir=.. \ > file://vim-add-knob-whether-elf.h-are-checked.patch;patchdir=.. \ > " > + > +SRC_URI[md5sum] = "5fd5d754581a673a25733c12367cf9d2" > +SRC_URI[sha256sum] = "e2cc416dabea503e9e5631afc21bb00dcbfb9d05481641b75f247fd89ff4d7e8" > + > SRCREV = "v7-4-481" > > S = "${WORKDIR}/vim/src" > ^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [meta-oe][PATCH] vim: add checksum 2015-03-22 10:09 ` Rafaël Carré @ 2015-03-22 15:55 ` Martin Jansa 2015-03-22 17:23 ` Rafaël Carré 0 siblings, 1 reply; 19+ messages in thread From: Martin Jansa @ 2015-03-22 15:55 UTC (permalink / raw) To: openembedded-devel [-- Attachment #1: Type: text/plain, Size: 1974 bytes --] On Sun, Mar 22, 2015 at 11:09:03AM +0100, Rafaël Carré wrote: > Hello, > > I couldn't reproduce the checksum error with a fresh build with an empty > downloads/ folder. > > So this patch is apparently needed only when populating downloads/ > folder before fetching vim. > > I will investigate a bit more, I think the patch should actually be in > bitbake > (missing supports_checksum for Hg.py) Should bitbake support checksums for hg? We don't use them for any other SCM like git or svn, if we do that for hg, what will be included in th checksum? Whole directory with hg checkout? Is it stable (e.g. doesn't hg fetch everything and then checkout required revision like git does?) I've included this patch in master-next, but now when I see that it's fetched from hg I'll drop it. > On 03/20/2015 03:20 PM, Rafaël Carré wrote: > > --- > > meta-oe/recipes-support/vim/vim_7.4.481.bb | 4 ++++ > > 1 file changed, 4 insertions(+) > > > > diff --git a/meta-oe/recipes-support/vim/vim_7.4.481.bb b/meta-oe/recipes-support/vim/vim_7.4.481.bb > > index afdea84..ac59077 100644 > > --- a/meta-oe/recipes-support/vim/vim_7.4.481.bb > > +++ b/meta-oe/recipes-support/vim/vim_7.4.481.bb > > @@ -10,6 +10,10 @@ SRC_URI = "hg://vim.googlecode.com/hg/;protocol=https;module=vim \ > > file://disable_acl_header_check.patch;patchdir=.. \ > > file://vim-add-knob-whether-elf.h-are-checked.patch;patchdir=.. \ > > " > > + > > +SRC_URI[md5sum] = "5fd5d754581a673a25733c12367cf9d2" > > +SRC_URI[sha256sum] = "e2cc416dabea503e9e5631afc21bb00dcbfb9d05481641b75f247fd89ff4d7e8" > > + > > SRCREV = "v7-4-481" > > > > S = "${WORKDIR}/vim/src" > > > -- > _______________________________________________ > Openembedded-devel mailing list > Openembedded-devel@lists.openembedded.org > http://lists.openembedded.org/mailman/listinfo/openembedded-devel -- Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com [-- Attachment #2: Digital signature --] [-- Type: application/pgp-signature, Size: 188 bytes --] ^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [meta-oe][PATCH] vim: add checksum 2015-03-22 15:55 ` Martin Jansa @ 2015-03-22 17:23 ` Rafaël Carré 2015-04-27 10:51 ` Martin Jansa 0 siblings, 1 reply; 19+ messages in thread From: Rafaël Carré @ 2015-03-22 17:23 UTC (permalink / raw) To: openembedded-devel On 03/22/2015 04:55 PM, Martin Jansa wrote: > On Sun, Mar 22, 2015 at 11:09:03AM +0100, Rafaël Carré wrote: >> Hello, >> >> I couldn't reproduce the checksum error with a fresh build with an empty >> downloads/ folder. >> >> So this patch is apparently needed only when populating downloads/ >> folder before fetching vim. >> >> I will investigate a bit more, I think the patch should actually be in >> bitbake >> (missing supports_checksum for Hg.py) > > Should bitbake support checksums for hg? We don't use them for any other > SCM like git or svn, if we do that for hg, what will be included in th > checksum? Whole directory with hg checkout? Is it stable (e.g. doesn't > hg fetch everything and then checkout required revision like git does?) Exactly, what I meant was Hg.py needs to explicitely say checksums are disabled: supports_checksum(foo): return False > I've included this patch in master-next, but now when I see that it's > fetched from hg I'll drop it. > >> On 03/20/2015 03:20 PM, Rafaël Carré wrote: >>> --- >>> meta-oe/recipes-support/vim/vim_7.4.481.bb | 4 ++++ >>> 1 file changed, 4 insertions(+) >>> >>> diff --git a/meta-oe/recipes-support/vim/vim_7.4.481.bb b/meta-oe/recipes-support/vim/vim_7.4.481.bb >>> index afdea84..ac59077 100644 >>> --- a/meta-oe/recipes-support/vim/vim_7.4.481.bb >>> +++ b/meta-oe/recipes-support/vim/vim_7.4.481.bb >>> @@ -10,6 +10,10 @@ SRC_URI = "hg://vim.googlecode.com/hg/;protocol=https;module=vim \ >>> file://disable_acl_header_check.patch;patchdir=.. \ >>> file://vim-add-knob-whether-elf.h-are-checked.patch;patchdir=.. \ >>> " >>> + >>> +SRC_URI[md5sum] = "5fd5d754581a673a25733c12367cf9d2" >>> +SRC_URI[sha256sum] = "e2cc416dabea503e9e5631afc21bb00dcbfb9d05481641b75f247fd89ff4d7e8" >>> + >>> SRCREV = "v7-4-481" >>> >>> S = "${WORKDIR}/vim/src" ^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [meta-oe][PATCH] vim: add checksum 2015-03-22 17:23 ` Rafaël Carré @ 2015-04-27 10:51 ` Martin Jansa 2015-05-22 15:39 ` Ash Charles 0 siblings, 1 reply; 19+ messages in thread From: Martin Jansa @ 2015-04-27 10:51 UTC (permalink / raw) To: openembedded-devel On Sun, Mar 22, 2015 at 06:23:44PM +0100, Rafaël Carré wrote: > On 03/22/2015 04:55 PM, Martin Jansa wrote: > > On Sun, Mar 22, 2015 at 11:09:03AM +0100, Rafaël Carré wrote: > >> Hello, > >> > >> I couldn't reproduce the checksum error with a fresh build with an empty > >> downloads/ folder. > >> > >> So this patch is apparently needed only when populating downloads/ > >> folder before fetching vim. > >> > >> I will investigate a bit more, I think the patch should actually be in > >> bitbake > >> (missing supports_checksum for Hg.py) > > > > Should bitbake support checksums for hg? We don't use them for any other > > SCM like git or svn, if we do that for hg, what will be included in th > > checksum? Whole directory with hg checkout? Is it stable (e.g. doesn't > > hg fetch everything and then checkout required revision like git does?) > > Exactly, what I meant was Hg.py needs to explicitely say checksums are > disabled: > > supports_checksum(foo): > return False Did you send such patch to bitbake-devel? I haven't seen it there. Regards, > > > > I've included this patch in master-next, but now when I see that it's > > fetched from hg I'll drop it. > > > >> On 03/20/2015 03:20 PM, Rafaël Carré wrote: > >>> --- > >>> meta-oe/recipes-support/vim/vim_7.4.481.bb | 4 ++++ > >>> 1 file changed, 4 insertions(+) > >>> > >>> diff --git a/meta-oe/recipes-support/vim/vim_7.4.481.bb b/meta-oe/recipes-support/vim/vim_7.4.481.bb > >>> index afdea84..ac59077 100644 > >>> --- a/meta-oe/recipes-support/vim/vim_7.4.481.bb > >>> +++ b/meta-oe/recipes-support/vim/vim_7.4.481.bb > >>> @@ -10,6 +10,10 @@ SRC_URI = "hg://vim.googlecode.com/hg/;protocol=https;module=vim \ > >>> file://disable_acl_header_check.patch;patchdir=.. \ > >>> file://vim-add-knob-whether-elf.h-are-checked.patch;patchdir=.. \ > >>> " > >>> + > >>> +SRC_URI[md5sum] = "5fd5d754581a673a25733c12367cf9d2" > >>> +SRC_URI[sha256sum] = "e2cc416dabea503e9e5631afc21bb00dcbfb9d05481641b75f247fd89ff4d7e8" > >>> + > >>> SRCREV = "v7-4-481" > >>> > >>> S = "${WORKDIR}/vim/src" > > -- > _______________________________________________ > Openembedded-devel mailing list > Openembedded-devel@lists.openembedded.org > http://lists.openembedded.org/mailman/listinfo/openembedded-devel -- Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com ^ permalink raw reply [flat|nested] 19+ messages in thread
* [PATCH] fetch/hg: Disable checksums for archived downloads 2015-04-27 10:51 ` Martin Jansa @ 2015-05-22 15:39 ` Ash Charles 0 siblings, 0 replies; 19+ messages in thread From: Ash Charles @ 2015-05-22 15:39 UTC (permalink / raw) To: openembedded-devel, bitbake-devel; +Cc: funman Like the Git fetcher, the Mercurial fetcher shouldn't expect recipes to provide a checksum. As described [1], recipes using a mercurial fetcher that don't provide a checksum will fail in a the repository has previously been downloaded and archived. Credit to Rafaël Carré for figuring out the bug. [1] https://www.mail-archive.com/openembedded-devel@lists.openembedded.org/msg41328.html Signed-off-by: Ash Charles <ashcharles@gmail.com> --- bitbake/lib/bb/fetch2/hg.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/bitbake/lib/bb/fetch2/hg.py b/bitbake/lib/bb/fetch2/hg.py index 81592f6..cab371f 100644 --- a/bitbake/lib/bb/fetch2/hg.py +++ b/bitbake/lib/bb/fetch2/hg.py @@ -43,6 +43,13 @@ class Hg(FetchMethod): """ return ud.type in ['hg'] + def supports_checksum(self, urldata): + """ + Don't require checksums for local archives created from + repository checkouts. + """ + return False + def urldata_init(self, ud, d): """ init hg specific variable within url data -- 2.1.4 ^ permalink raw reply related [flat|nested] 19+ messages in thread
* [PATCH] fetch/hg: Disable checksums for archived downloads @ 2015-05-22 15:39 ` Ash Charles 0 siblings, 0 replies; 19+ messages in thread From: Ash Charles @ 2015-05-22 15:39 UTC (permalink / raw) To: openembedded-devel, bitbake-devel Like the Git fetcher, the Mercurial fetcher shouldn't expect recipes to provide a checksum. As described [1], recipes using a mercurial fetcher that don't provide a checksum will fail in a the repository has previously been downloaded and archived. Credit to Rafaël Carré for figuring out the bug. [1] https://www.mail-archive.com/openembedded-devel@lists.openembedded.org/msg41328.html Signed-off-by: Ash Charles <ashcharles@gmail.com> --- bitbake/lib/bb/fetch2/hg.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/bitbake/lib/bb/fetch2/hg.py b/bitbake/lib/bb/fetch2/hg.py index 81592f6..cab371f 100644 --- a/bitbake/lib/bb/fetch2/hg.py +++ b/bitbake/lib/bb/fetch2/hg.py @@ -43,6 +43,13 @@ class Hg(FetchMethod): """ return ud.type in ['hg'] + def supports_checksum(self, urldata): + """ + Don't require checksums for local archives created from + repository checkouts. + """ + return False + def urldata_init(self, ud, d): """ init hg specific variable within url data -- 2.1.4 ^ permalink raw reply related [flat|nested] 19+ messages in thread
* Re: [oe] [PATCH] fetch/hg: Disable checksums for archived downloads 2015-05-22 15:39 ` Ash Charles @ 2015-05-29 1:49 ` Robert Yang -1 siblings, 0 replies; 19+ messages in thread From: Robert Yang @ 2015-05-29 1:49 UTC (permalink / raw) To: openembedded-devel, bitbake-devel Hello, I think that the following patch has broken the mirror tarball of hg: http://lists.openembedded.org/pipermail/bitbake-devel/2015-May/005725.html I wonder how did you test the patch, please ? Did you revert the patch: fetch/hg: support submodules ? Or other ways, please ? // Robert On 05/22/2015 11:39 PM, Ash Charles wrote: > Like the Git fetcher, the Mercurial fetcher shouldn't expect recipes to > provide a checksum. As described [1], recipes using a mercurial > fetcher that don't provide a checksum will fail in a the repository has > previously been downloaded and archived. > > Credit to Rafaël Carré for figuring out the bug. > > [1] https://www.mail-archive.com/openembedded-devel@lists.openembedded.org/msg41328.html > > Signed-off-by: Ash Charles <ashcharles@gmail.com> > --- > bitbake/lib/bb/fetch2/hg.py | 7 +++++++ > 1 file changed, 7 insertions(+) > > diff --git a/bitbake/lib/bb/fetch2/hg.py b/bitbake/lib/bb/fetch2/hg.py > index 81592f6..cab371f 100644 > --- a/bitbake/lib/bb/fetch2/hg.py > +++ b/bitbake/lib/bb/fetch2/hg.py > @@ -43,6 +43,13 @@ class Hg(FetchMethod): > """ > return ud.type in ['hg'] > > + def supports_checksum(self, urldata): > + """ > + Don't require checksums for local archives created from > + repository checkouts. > + """ > + return False > + > def urldata_init(self, ud, d): > """ > init hg specific variable within url data > ^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH] fetch/hg: Disable checksums for archived downloads @ 2015-05-29 1:49 ` Robert Yang 0 siblings, 0 replies; 19+ messages in thread From: Robert Yang @ 2015-05-29 1:49 UTC (permalink / raw) To: openembedded-devel, bitbake-devel Hello, I think that the following patch has broken the mirror tarball of hg: http://lists.openembedded.org/pipermail/bitbake-devel/2015-May/005725.html I wonder how did you test the patch, please ? Did you revert the patch: fetch/hg: support submodules ? Or other ways, please ? // Robert On 05/22/2015 11:39 PM, Ash Charles wrote: > Like the Git fetcher, the Mercurial fetcher shouldn't expect recipes to > provide a checksum. As described [1], recipes using a mercurial > fetcher that don't provide a checksum will fail in a the repository has > previously been downloaded and archived. > > Credit to Rafaël Carré for figuring out the bug. > > [1] https://www.mail-archive.com/openembedded-devel@lists.openembedded.org/msg41328.html > > Signed-off-by: Ash Charles <ashcharles@gmail.com> > --- > bitbake/lib/bb/fetch2/hg.py | 7 +++++++ > 1 file changed, 7 insertions(+) > > diff --git a/bitbake/lib/bb/fetch2/hg.py b/bitbake/lib/bb/fetch2/hg.py > index 81592f6..cab371f 100644 > --- a/bitbake/lib/bb/fetch2/hg.py > +++ b/bitbake/lib/bb/fetch2/hg.py > @@ -43,6 +43,13 @@ class Hg(FetchMethod): > """ > return ud.type in ['hg'] > > + def supports_checksum(self, urldata): > + """ > + Don't require checksums for local archives created from > + repository checkouts. > + """ > + return False > + > def urldata_init(self, ud, d): > """ > init hg specific variable within url data > ^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [oe] [PATCH] fetch/hg: Disable checksums for archived downloads 2015-05-29 1:49 ` Robert Yang @ 2015-05-29 5:46 ` Ash Charles -1 siblings, 0 replies; 19+ messages in thread From: Ash Charles @ 2015-05-29 5:46 UTC (permalink / raw) To: Robert Yang; +Cc: bitbake-devel, openembedded-devel [-- Attachment #1: Type: text/plain, Size: 499 bytes --] > I wonder how did you test the patch, please ? Did you revert the patch: > fetch/hg: support submodules ? Hi Robert, I tested the patch in a Yocto environment which had a prepopulated downloads directory. In particular, I had seen the failure described [1] for vim. My version of bitbake was slightly older so the submodule patch that was breaking the mirroring hadn't yet been applied. [1] https://www.mail-archive.com/openembedded-devel@lists.openembedded.org/msg41328.html --Ash [-- Attachment #2: Type: text/html, Size: 638 bytes --] ^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [bitbake-devel] [PATCH] fetch/hg: Disable checksums for archived downloads @ 2015-05-29 5:46 ` Ash Charles 0 siblings, 0 replies; 19+ messages in thread From: Ash Charles @ 2015-05-29 5:46 UTC (permalink / raw) To: Robert Yang; +Cc: bitbake-devel, openembedded-devel > I wonder how did you test the patch, please ? Did you revert the patch: > fetch/hg: support submodules ? Hi Robert, I tested the patch in a Yocto environment which had a prepopulated downloads directory. In particular, I had seen the failure described [1] for vim. My version of bitbake was slightly older so the submodule patch that was breaking the mirroring hadn't yet been applied. [1] https://www.mail-archive.com/openembedded-devel@lists.openembedded.org/msg41328.html --Ash ^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [oe] [PATCH] fetch/hg: Disable checksums for archived downloads 2015-05-29 5:46 ` [bitbake-devel] " Ash Charles @ 2015-05-29 9:18 ` Martin Jansa -1 siblings, 0 replies; 19+ messages in thread From: Martin Jansa @ 2015-05-29 9:18 UTC (permalink / raw) To: Ash Charles; +Cc: bitbake-devel, openembedded-devel [-- Attachment #1: Type: text/plain, Size: 3899 bytes --] FWIW: I see vim unpack failing now in world builds: NOTE: recipe vim-7.4.481-r0: task do_unpack: Started ERROR: Function failed: Fetcher failure: Fetch command failed with exit code 255, output: abort: repository /home/jenkins/oe/world/shr-core/downloads/hg/vim.googlecode.com/hg/vim not found! ERROR: Logfile of failure stored in: /home/jenkins/oe/world/shr-core/tmp-glibc/work/armv5te-oe-linux-gnueabi/vim/7.4.481-r0/temp/log.do_unpack.28505 Log data follows: | DEBUG: Executing python function do_unpack | DEBUG: Executing python function base_do_unpack | DEBUG: Unpack: creating new hg repository in '/home/jenkins/oe/world/shr-core/tmp-glibc/work/armv5te-oe-linux-gnueabi/vim/7.4.481-r0/vim' | DEBUG: Running export PATH="/home/jenkins/oe/world/shr-core/openembedded-core/scripts:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/x86_64-linux/usr/bin/arm-oe-linux-gnueabi:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemuarm/usr/bin/crossscripts:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/x86_64-linux/usr/sbin:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/x86_64-linux/usr/bin:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/x86_64-linux/sbin:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/x86_64-linux/bin:/home/jenkins/oe/world/shr-core/openembedded-core/scripts:/home/jenkins/oe/world/shr-core/bitbake/bin:/home/jenkins/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games"; export HOME="/home/jenkins"; /usr/bin/env hg init /home/jenkins/oe/world/shr-core/tmp-glibc/work/armv5te-oe-linux-gnueabi/vim/7.4.481-r0/vim | DEBUG: Unpack: updating source in '/home/jenkins/oe/world/shr-core/tmp-glibc/work/armv5te-oe-linux-gnueabi/vim/7.4.481-r0/vim' | DEBUG: Running export PATH="/home/jenkins/oe/world/shr-core/openembedded-core/scripts:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/x86_64-linux/usr/bin/arm-oe-linux-gnueabi:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemuarm/usr/bin/crossscripts:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/x86_64-linux/usr/sbin:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/x86_64-linux/usr/bin:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/x86_64-linux/sbin:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/x86_64-linux/bin:/home/jenkins/oe/world/shr-core/openembedded-core/scripts:/home/jenkins/oe/world/shr-core/bitbake/bin:/home/jenkins/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games"; export HOME="/home/jenkins"; /usr/bin/env hg pull /home/jenkins/oe/world/shr-core/downloads/hg/vim.googlecode.com/hg/vim | DEBUG: Python function base_do_unpack finished | DEBUG: Python function do_unpack finished | ERROR: Function failed: Fetcher failure: Fetch command failed with exit code 255, output: | abort: repository /home/jenkins/oe/world/shr-core/downloads/hg/vim.googlecode.com/hg/vim not found! | NOTE: recipe vim-7.4.481-r0: task do_unpack: Failed ERROR: Task 5789 (/home/jenkins/oe/world/shr-core/meta-openembedded/meta-oe/recipes-support/vim/vim_7.4.481.bb, do_unpack) failed with exit code '1' On Fri, May 29, 2015 at 7:46 AM, Ash Charles <ashcharles@gmail.com> wrote: > > I wonder how did you test the patch, please ? Did you revert the patch: > > fetch/hg: support submodules ? > Hi Robert, > I tested the patch in a Yocto environment which had a prepopulated > downloads directory. In particular, I had seen the failure described [1] > for vim. > My version of bitbake was slightly older so the submodule patch that was > breaking the mirroring hadn't yet been applied. > > [1] > https://www.mail-archive.com/openembedded-devel@lists.openembedded.org/msg41328.html > > --Ash > > -- > _______________________________________________ > bitbake-devel mailing list > bitbake-devel@lists.openembedded.org > http://lists.openembedded.org/mailman/listinfo/bitbake-devel > > [-- Attachment #2: Type: text/html, Size: 5081 bytes --] ^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [bitbake-devel] [PATCH] fetch/hg: Disable checksums for archived downloads @ 2015-05-29 9:18 ` Martin Jansa 0 siblings, 0 replies; 19+ messages in thread From: Martin Jansa @ 2015-05-29 9:18 UTC (permalink / raw) To: Ash Charles; +Cc: bitbake-devel, openembedded-devel FWIW: I see vim unpack failing now in world builds: NOTE: recipe vim-7.4.481-r0: task do_unpack: Started ERROR: Function failed: Fetcher failure: Fetch command failed with exit code 255, output: abort: repository /home/jenkins/oe/world/shr-core/downloads/hg/vim.googlecode.com/hg/vim not found! ERROR: Logfile of failure stored in: /home/jenkins/oe/world/shr-core/tmp-glibc/work/armv5te-oe-linux-gnueabi/vim/7.4.481-r0/temp/log.do_unpack.28505 Log data follows: | DEBUG: Executing python function do_unpack | DEBUG: Executing python function base_do_unpack | DEBUG: Unpack: creating new hg repository in '/home/jenkins/oe/world/shr-core/tmp-glibc/work/armv5te-oe-linux-gnueabi/vim/7.4.481-r0/vim' | DEBUG: Running export PATH="/home/jenkins/oe/world/shr-core/openembedded-core/scripts:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/x86_64-linux/usr/bin/arm-oe-linux-gnueabi:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemuarm/usr/bin/crossscripts:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/x86_64-linux/usr/sbin:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/x86_64-linux/usr/bin:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/x86_64-linux/sbin:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/x86_64-linux/bin:/home/jenkins/oe/world/shr-core/openembedded-core/scripts:/home/jenkins/oe/world/shr-core/bitbake/bin:/home/jenkins/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games"; export HOME="/home/jenkins"; /usr/bin/env hg init /home/jenkins/oe/world/shr-core/tmp-glibc/work/armv5te-oe-linux-gnueabi/vim/7.4.481-r0/vim | DEBUG: Unpack: updating source in '/home/jenkins/oe/world/shr-core/tmp-glibc/work/armv5te-oe-linux-gnueabi/vim/7.4.481-r0/vim' | DEBUG: Running export PATH="/home/jenkins/oe/world/shr-core/openembedded-core/scripts:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/x86_64-linux/usr/bin/arm-oe-linux-gnueabi:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemuarm/usr/bin/crossscripts:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/x86_64-linux/usr/sbin:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/x86_64-linux/usr/bin:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/x86_64-linux/sbin:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/x86_64-linux/bin:/home/jenkins/oe/world/shr-core/openembedded-core/scripts:/home/jenkins/oe/world/shr-core/bitbake/bin:/home/jenkins/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games"; export HOME="/home/jenkins"; /usr/bin/env hg pull /home/jenkins/oe/world/shr-core/downloads/hg/vim.googlecode.com/hg/vim | DEBUG: Python function base_do_unpack finished | DEBUG: Python function do_unpack finished | ERROR: Function failed: Fetcher failure: Fetch command failed with exit code 255, output: | abort: repository /home/jenkins/oe/world/shr-core/downloads/hg/vim.googlecode.com/hg/vim not found! | NOTE: recipe vim-7.4.481-r0: task do_unpack: Failed ERROR: Task 5789 (/home/jenkins/oe/world/shr-core/meta-openembedded/meta-oe/recipes-support/vim/vim_7.4.481.bb, do_unpack) failed with exit code '1' On Fri, May 29, 2015 at 7:46 AM, Ash Charles <ashcharles@gmail.com> wrote: > > I wonder how did you test the patch, please ? Did you revert the patch: > > fetch/hg: support submodules ? > Hi Robert, > I tested the patch in a Yocto environment which had a prepopulated > downloads directory. In particular, I had seen the failure described [1] > for vim. > My version of bitbake was slightly older so the submodule patch that was > breaking the mirroring hadn't yet been applied. > > [1] > https://www.mail-archive.com/openembedded-devel@lists.openembedded.org/msg41328.html > > --Ash > > -- > _______________________________________________ > bitbake-devel mailing list > bitbake-devel@lists.openembedded.org > http://lists.openembedded.org/mailman/listinfo/bitbake-devel > > ^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [oe] [PATCH] fetch/hg: Disable checksums for archived downloads 2015-05-29 9:18 ` [bitbake-devel] " Martin Jansa @ 2015-06-02 0:08 ` Ash Charles -1 siblings, 0 replies; 19+ messages in thread From: Ash Charles @ 2015-06-02 0:08 UTC (permalink / raw) To: Martin Jansa, Robert Yang, danismostlikely Cc: bitbake-devel, openembedded-devel Hi, I verified that the "fetch/hg: support submodules" [1] patch, in combination with this [2] patch is causing do_unpack failures for me. Based on the logs from the world build, I suspect this is also breaking dvb-apps. I don't have a fix so perhaps the best plan is reverting [2] now that cleanall for hg packages actually works. [1] http://lists.openembedded.org/pipermail/bitbake-devel/2015-May/005725.html [2] http://lists.openembedded.org/pipermail/bitbake-devel/2015-May/005758.html --Ash On Fri, May 29, 2015 at 2:18 AM, Martin Jansa <martin.jansa@gmail.com> wrote: > FWIW: I see vim unpack failing now in world builds: > > NOTE: recipe vim-7.4.481-r0: task do_unpack: Started > ERROR: Function failed: Fetcher failure: Fetch command failed with exit code > 255, output: > abort: repository > /home/jenkins/oe/world/shr-core/downloads/hg/vim.googlecode.com/hg/vim not > found! > > ERROR: Logfile of failure stored in: > /home/jenkins/oe/world/shr-core/tmp-glibc/work/armv5te-oe-linux-gnueabi/vim/7.4.481-r0/temp/log.do_unpack.28505 > Log data follows: > | DEBUG: Executing python function do_unpack > | DEBUG: Executing python function base_do_unpack > | DEBUG: Unpack: creating new hg repository in > '/home/jenkins/oe/world/shr-core/tmp-glibc/work/armv5te-oe-linux-gnueabi/vim/7.4.481-r0/vim' > | DEBUG: Running export > PATH="/home/jenkins/oe/world/shr-core/openembedded-core/scripts:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/x86_64-linux/usr/bin/arm-oe-linux-gnueabi:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemuarm/usr/bin/crossscripts:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/x86_64-linux/usr/sbin:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/x86_64-linux/usr/bin:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/x86_64-linux/sbin:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/x86_64-linux/bin:/home/jenkins/oe/world/shr-core/openembedded-core/scripts:/home/jenkins/oe/world/shr-core/bitbake/bin:/home/jenkins/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games"; > export HOME="/home/jenkins"; /usr/bin/env hg init > /home/jenkins/oe/world/shr-core/tmp-glibc/work/armv5te-oe-linux-gnueabi/vim/7.4.481-r0/vim > | DEBUG: Unpack: updating source in > '/home/jenkins/oe/world/shr-core/tmp-glibc/work/armv5te-oe-linux-gnueabi/vim/7.4.481-r0/vim' > | DEBUG: Running export > PATH="/home/jenkins/oe/world/shr-core/openembedded-core/scripts:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/x86_64-linux/usr/bin/arm-oe-linux-gnueabi:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemuarm/usr/bin/crossscripts:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/x86_64-linux/usr/sbin:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/x86_64-linux/usr/bin:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/x86_64-linux/sbin:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/x86_64-linux/bin:/home/jenkins/oe/world/shr-core/openembedded-core/scripts:/home/jenkins/oe/world/shr-core/bitbake/bin:/home/jenkins/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games"; > export HOME="/home/jenkins"; /usr/bin/env hg pull > /home/jenkins/oe/world/shr-core/downloads/hg/vim.googlecode.com/hg/vim > | DEBUG: Python function base_do_unpack finished > | DEBUG: Python function do_unpack finished > | ERROR: Function failed: Fetcher failure: Fetch command failed with exit > code 255, output: > | abort: repository > /home/jenkins/oe/world/shr-core/downloads/hg/vim.googlecode.com/hg/vim not > found! > | > NOTE: recipe vim-7.4.481-r0: task do_unpack: Failed > ERROR: Task 5789 > (/home/jenkins/oe/world/shr-core/meta-openembedded/meta-oe/recipes-support/vim/vim_7.4.481.bb, > do_unpack) failed with exit code '1' > > > > On Fri, May 29, 2015 at 7:46 AM, Ash Charles <ashcharles@gmail.com> wrote: >> >> > I wonder how did you test the patch, please ? Did you revert the patch: >> > fetch/hg: support submodules ? >> Hi Robert, >> I tested the patch in a Yocto environment which had a prepopulated >> downloads directory. In particular, I had seen the failure described [1] for >> vim. >> My version of bitbake was slightly older so the submodule patch that was >> breaking the mirroring hadn't yet been applied. >> >> [1] >> https://www.mail-archive.com/openembedded-devel@lists.openembedded.org/msg41328.html >> >> --Ash >> >> >> -- >> _______________________________________________ >> bitbake-devel mailing list >> bitbake-devel@lists.openembedded.org >> http://lists.openembedded.org/mailman/listinfo/bitbake-devel >> > ^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [bitbake-devel] [PATCH] fetch/hg: Disable checksums for archived downloads @ 2015-06-02 0:08 ` Ash Charles 0 siblings, 0 replies; 19+ messages in thread From: Ash Charles @ 2015-06-02 0:08 UTC (permalink / raw) To: Martin Jansa, Robert Yang, danismostlikely Cc: bitbake-devel, openembedded-devel Hi, I verified that the "fetch/hg: support submodules" [1] patch, in combination with this [2] patch is causing do_unpack failures for me. Based on the logs from the world build, I suspect this is also breaking dvb-apps. I don't have a fix so perhaps the best plan is reverting [2] now that cleanall for hg packages actually works. [1] http://lists.openembedded.org/pipermail/bitbake-devel/2015-May/005725.html [2] http://lists.openembedded.org/pipermail/bitbake-devel/2015-May/005758.html --Ash On Fri, May 29, 2015 at 2:18 AM, Martin Jansa <martin.jansa@gmail.com> wrote: > FWIW: I see vim unpack failing now in world builds: > > NOTE: recipe vim-7.4.481-r0: task do_unpack: Started > ERROR: Function failed: Fetcher failure: Fetch command failed with exit code > 255, output: > abort: repository > /home/jenkins/oe/world/shr-core/downloads/hg/vim.googlecode.com/hg/vim not > found! > > ERROR: Logfile of failure stored in: > /home/jenkins/oe/world/shr-core/tmp-glibc/work/armv5te-oe-linux-gnueabi/vim/7.4.481-r0/temp/log.do_unpack.28505 > Log data follows: > | DEBUG: Executing python function do_unpack > | DEBUG: Executing python function base_do_unpack > | DEBUG: Unpack: creating new hg repository in > '/home/jenkins/oe/world/shr-core/tmp-glibc/work/armv5te-oe-linux-gnueabi/vim/7.4.481-r0/vim' > | DEBUG: Running export > PATH="/home/jenkins/oe/world/shr-core/openembedded-core/scripts:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/x86_64-linux/usr/bin/arm-oe-linux-gnueabi:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemuarm/usr/bin/crossscripts:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/x86_64-linux/usr/sbin:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/x86_64-linux/usr/bin:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/x86_64-linux/sbin:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/x86_64-linux/bin:/home/jenkins/oe/world/shr-core/openembedded-core/scripts:/home/jenkins/oe/world/shr-core/bitbake/bin:/home/jenkins/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games"; > export HOME="/home/jenkins"; /usr/bin/env hg init > /home/jenkins/oe/world/shr-core/tmp-glibc/work/armv5te-oe-linux-gnueabi/vim/7.4.481-r0/vim > | DEBUG: Unpack: updating source in > '/home/jenkins/oe/world/shr-core/tmp-glibc/work/armv5te-oe-linux-gnueabi/vim/7.4.481-r0/vim' > | DEBUG: Running export > PATH="/home/jenkins/oe/world/shr-core/openembedded-core/scripts:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/x86_64-linux/usr/bin/arm-oe-linux-gnueabi:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemuarm/usr/bin/crossscripts:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/x86_64-linux/usr/sbin:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/x86_64-linux/usr/bin:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/x86_64-linux/sbin:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/x86_64-linux/bin:/home/jenkins/oe/world/shr-core/openembedded-core/scripts:/home/jenkins/oe/world/shr-core/bitbake/bin:/home/jenkins/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games"; > export HOME="/home/jenkins"; /usr/bin/env hg pull > /home/jenkins/oe/world/shr-core/downloads/hg/vim.googlecode.com/hg/vim > | DEBUG: Python function base_do_unpack finished > | DEBUG: Python function do_unpack finished > | ERROR: Function failed: Fetcher failure: Fetch command failed with exit > code 255, output: > | abort: repository > /home/jenkins/oe/world/shr-core/downloads/hg/vim.googlecode.com/hg/vim not > found! > | > NOTE: recipe vim-7.4.481-r0: task do_unpack: Failed > ERROR: Task 5789 > (/home/jenkins/oe/world/shr-core/meta-openembedded/meta-oe/recipes-support/vim/vim_7.4.481.bb, > do_unpack) failed with exit code '1' > > > > On Fri, May 29, 2015 at 7:46 AM, Ash Charles <ashcharles@gmail.com> wrote: >> >> > I wonder how did you test the patch, please ? Did you revert the patch: >> > fetch/hg: support submodules ? >> Hi Robert, >> I tested the patch in a Yocto environment which had a prepopulated >> downloads directory. In particular, I had seen the failure described [1] for >> vim. >> My version of bitbake was slightly older so the submodule patch that was >> breaking the mirroring hadn't yet been applied. >> >> [1] >> https://www.mail-archive.com/openembedded-devel@lists.openembedded.org/msg41328.html >> >> --Ash >> >> >> -- >> _______________________________________________ >> bitbake-devel mailing list >> bitbake-devel@lists.openembedded.org >> http://lists.openembedded.org/mailman/listinfo/bitbake-devel >> > ^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [oe] [PATCH] fetch/hg: Disable checksums for archived downloads 2015-06-02 0:08 ` [bitbake-devel] " Ash Charles @ 2015-06-02 4:38 ` Robert Yang -1 siblings, 0 replies; 19+ messages in thread From: Robert Yang @ 2015-06-02 4:38 UTC (permalink / raw) To: Ash Charles, Martin Jansa, danismostlikely Cc: bitbake-devel, openembedded-devel On 06/02/2015 08:08 AM, Ash Charles wrote: > Hi, > > I verified that the "fetch/hg: support submodules" [1] patch, in > combination with this [2] patch is causing do_unpack failures for me. > Based on the logs from the world build, I suspect this is also > breaking dvb-apps. I don't have a fix so perhaps the best plan is > reverting [2] now that cleanall for hg packages actually works. > > [1] http://lists.openembedded.org/pipermail/bitbake-devel/2015-May/005725.html > [2] http://lists.openembedded.org/pipermail/bitbake-devel/2015-May/005758.html > I'm working on fixing the issues now, will send patches sooner. // Robert > --Ash > > On Fri, May 29, 2015 at 2:18 AM, Martin Jansa <martin.jansa@gmail.com> wrote: >> FWIW: I see vim unpack failing now in world builds: >> >> NOTE: recipe vim-7.4.481-r0: task do_unpack: Started >> ERROR: Function failed: Fetcher failure: Fetch command failed with exit code >> 255, output: >> abort: repository >> /home/jenkins/oe/world/shr-core/downloads/hg/vim.googlecode.com/hg/vim not >> found! >> >> ERROR: Logfile of failure stored in: >> /home/jenkins/oe/world/shr-core/tmp-glibc/work/armv5te-oe-linux-gnueabi/vim/7.4.481-r0/temp/log.do_unpack.28505 >> Log data follows: >> | DEBUG: Executing python function do_unpack >> | DEBUG: Executing python function base_do_unpack >> | DEBUG: Unpack: creating new hg repository in >> '/home/jenkins/oe/world/shr-core/tmp-glibc/work/armv5te-oe-linux-gnueabi/vim/7.4.481-r0/vim' >> | DEBUG: Running export >> PATH="/home/jenkins/oe/world/shr-core/openembedded-core/scripts:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/x86_64-linux/usr/bin/arm-oe-linux-gnueabi:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemuarm/usr/bin/crossscripts:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/x86_64-linux/usr/sbin:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/x86_64-linux/usr/bin:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/x86_64-linux/sbin:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/x86_64-linux/bin:/home/jenkins/oe/world/shr-core/openembedded-core/scripts:/home/jenkins/oe/world/shr-core/bitbake/bin:/home/jenkins/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games"; >> export HOME="/home/jenkins"; /usr/bin/env hg init >> /home/jenkins/oe/world/shr-core/tmp-glibc/work/armv5te-oe-linux-gnueabi/vim/7.4.481-r0/vim >> | DEBUG: Unpack: updating source in >> '/home/jenkins/oe/world/shr-core/tmp-glibc/work/armv5te-oe-linux-gnueabi/vim/7.4.481-r0/vim' >> | DEBUG: Running export >> PATH="/home/jenkins/oe/world/shr-core/openembedded-core/scripts:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/x86_64-linux/usr/bin/arm-oe-linux-gnueabi:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemuarm/usr/bin/crossscripts:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/x86_64-linux/usr/sbin:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/x86_64-linux/usr/bin:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/x86_64-linux/sbin:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/x86_64-linux/bin:/home/jenkins/oe/world/shr-core/openembedded-core/scripts:/home/jenkins/oe/world/shr-core/bitbake/bin:/home/jenkins/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games"; >> export HOME="/home/jenkins"; /usr/bin/env hg pull >> /home/jenkins/oe/world/shr-core/downloads/hg/vim.googlecode.com/hg/vim >> | DEBUG: Python function base_do_unpack finished >> | DEBUG: Python function do_unpack finished >> | ERROR: Function failed: Fetcher failure: Fetch command failed with exit >> code 255, output: >> | abort: repository >> /home/jenkins/oe/world/shr-core/downloads/hg/vim.googlecode.com/hg/vim not >> found! >> | >> NOTE: recipe vim-7.4.481-r0: task do_unpack: Failed >> ERROR: Task 5789 >> (/home/jenkins/oe/world/shr-core/meta-openembedded/meta-oe/recipes-support/vim/vim_7.4.481.bb, >> do_unpack) failed with exit code '1' >> >> >> >> On Fri, May 29, 2015 at 7:46 AM, Ash Charles <ashcharles@gmail.com> wrote: >>> >>>> I wonder how did you test the patch, please ? Did you revert the patch: >>>> fetch/hg: support submodules ? >>> Hi Robert, >>> I tested the patch in a Yocto environment which had a prepopulated >>> downloads directory. In particular, I had seen the failure described [1] for >>> vim. >>> My version of bitbake was slightly older so the submodule patch that was >>> breaking the mirroring hadn't yet been applied. >>> >>> [1] >>> https://www.mail-archive.com/openembedded-devel@lists.openembedded.org/msg41328.html >>> >>> --Ash >>> >>> >>> -- >>> _______________________________________________ >>> bitbake-devel mailing list >>> bitbake-devel@lists.openembedded.org >>> http://lists.openembedded.org/mailman/listinfo/bitbake-devel >>> >> > > ^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [bitbake-devel] [PATCH] fetch/hg: Disable checksums for archived downloads @ 2015-06-02 4:38 ` Robert Yang 0 siblings, 0 replies; 19+ messages in thread From: Robert Yang @ 2015-06-02 4:38 UTC (permalink / raw) To: Ash Charles, Martin Jansa, danismostlikely Cc: bitbake-devel, openembedded-devel On 06/02/2015 08:08 AM, Ash Charles wrote: > Hi, > > I verified that the "fetch/hg: support submodules" [1] patch, in > combination with this [2] patch is causing do_unpack failures for me. > Based on the logs from the world build, I suspect this is also > breaking dvb-apps. I don't have a fix so perhaps the best plan is > reverting [2] now that cleanall for hg packages actually works. > > [1] http://lists.openembedded.org/pipermail/bitbake-devel/2015-May/005725.html > [2] http://lists.openembedded.org/pipermail/bitbake-devel/2015-May/005758.html > I'm working on fixing the issues now, will send patches sooner. // Robert > --Ash > > On Fri, May 29, 2015 at 2:18 AM, Martin Jansa <martin.jansa@gmail.com> wrote: >> FWIW: I see vim unpack failing now in world builds: >> >> NOTE: recipe vim-7.4.481-r0: task do_unpack: Started >> ERROR: Function failed: Fetcher failure: Fetch command failed with exit code >> 255, output: >> abort: repository >> /home/jenkins/oe/world/shr-core/downloads/hg/vim.googlecode.com/hg/vim not >> found! >> >> ERROR: Logfile of failure stored in: >> /home/jenkins/oe/world/shr-core/tmp-glibc/work/armv5te-oe-linux-gnueabi/vim/7.4.481-r0/temp/log.do_unpack.28505 >> Log data follows: >> | DEBUG: Executing python function do_unpack >> | DEBUG: Executing python function base_do_unpack >> | DEBUG: Unpack: creating new hg repository in >> '/home/jenkins/oe/world/shr-core/tmp-glibc/work/armv5te-oe-linux-gnueabi/vim/7.4.481-r0/vim' >> | DEBUG: Running export >> PATH="/home/jenkins/oe/world/shr-core/openembedded-core/scripts:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/x86_64-linux/usr/bin/arm-oe-linux-gnueabi:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemuarm/usr/bin/crossscripts:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/x86_64-linux/usr/sbin:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/x86_64-linux/usr/bin:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/x86_64-linux/sbin:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/x86_64-linux/bin:/home/jenkins/oe/world/shr-core/openembedded-core/scripts:/home/jenkins/oe/world/shr-core/bitbake/bin:/home/jenkins/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games"; >> export HOME="/home/jenkins"; /usr/bin/env hg init >> /home/jenkins/oe/world/shr-core/tmp-glibc/work/armv5te-oe-linux-gnueabi/vim/7.4.481-r0/vim >> | DEBUG: Unpack: updating source in >> '/home/jenkins/oe/world/shr-core/tmp-glibc/work/armv5te-oe-linux-gnueabi/vim/7.4.481-r0/vim' >> | DEBUG: Running export >> PATH="/home/jenkins/oe/world/shr-core/openembedded-core/scripts:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/x86_64-linux/usr/bin/arm-oe-linux-gnueabi:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemuarm/usr/bin/crossscripts:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/x86_64-linux/usr/sbin:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/x86_64-linux/usr/bin:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/x86_64-linux/sbin:/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/x86_64-linux/bin:/home/jenkins/oe/world/shr-core/openembedded-core/scripts:/home/jenkins/oe/world/shr-core/bitbake/bin:/home/jenkins/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games"; >> export HOME="/home/jenkins"; /usr/bin/env hg pull >> /home/jenkins/oe/world/shr-core/downloads/hg/vim.googlecode.com/hg/vim >> | DEBUG: Python function base_do_unpack finished >> | DEBUG: Python function do_unpack finished >> | ERROR: Function failed: Fetcher failure: Fetch command failed with exit >> code 255, output: >> | abort: repository >> /home/jenkins/oe/world/shr-core/downloads/hg/vim.googlecode.com/hg/vim not >> found! >> | >> NOTE: recipe vim-7.4.481-r0: task do_unpack: Failed >> ERROR: Task 5789 >> (/home/jenkins/oe/world/shr-core/meta-openembedded/meta-oe/recipes-support/vim/vim_7.4.481.bb, >> do_unpack) failed with exit code '1' >> >> >> >> On Fri, May 29, 2015 at 7:46 AM, Ash Charles <ashcharles@gmail.com> wrote: >>> >>>> I wonder how did you test the patch, please ? Did you revert the patch: >>>> fetch/hg: support submodules ? >>> Hi Robert, >>> I tested the patch in a Yocto environment which had a prepopulated >>> downloads directory. In particular, I had seen the failure described [1] for >>> vim. >>> My version of bitbake was slightly older so the submodule patch that was >>> breaking the mirroring hadn't yet been applied. >>> >>> [1] >>> https://www.mail-archive.com/openembedded-devel@lists.openembedded.org/msg41328.html >>> >>> --Ash >>> >>> >>> -- >>> _______________________________________________ >>> bitbake-devel mailing list >>> bitbake-devel@lists.openembedded.org >>> http://lists.openembedded.org/mailman/listinfo/bitbake-devel >>> >> > > ^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [oe] [PATCH] fetch/hg: Disable checksums for archived downloads 2015-06-02 4:38 ` [bitbake-devel] " Robert Yang @ 2015-08-06 10:54 ` Steffen Sledz -1 siblings, 0 replies; 19+ messages in thread From: Steffen Sledz @ 2015-08-06 10:54 UTC (permalink / raw) To: openembedded-devel, Ash Charles, Martin Jansa, danismostlikely Cc: bitbake-devel On 02.06.2015 06:38, Robert Yang wrote: > I'm working on fixing the issues now, will send patches sooner. Any news on that? -- DResearch Fahrzeugelektronik GmbH Otto-Schmirgal-Str. 3, 10319 Berlin, Germany Tel: +49 30 515932-237 mailto:sledz@dresearch-fe.de Fax: +49 30 515932-299 Geschäftsführer: Dr. Michael Weber, Werner Mögle; Amtsgericht Berlin Charlottenburg; HRB 130120 B; Ust.-IDNr. DE273952058 ^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [bitbake-devel] [PATCH] fetch/hg: Disable checksums for archived downloads @ 2015-08-06 10:54 ` Steffen Sledz 0 siblings, 0 replies; 19+ messages in thread From: Steffen Sledz @ 2015-08-06 10:54 UTC (permalink / raw) To: openembedded-devel, Ash Charles, Martin Jansa, danismostlikely Cc: bitbake-devel On 02.06.2015 06:38, Robert Yang wrote: > I'm working on fixing the issues now, will send patches sooner. Any news on that? -- DResearch Fahrzeugelektronik GmbH Otto-Schmirgal-Str. 3, 10319 Berlin, Germany Tel: +49 30 515932-237 mailto:sledz@dresearch-fe.de Fax: +49 30 515932-299 Geschäftsführer: Dr. Michael Weber, Werner Mögle; Amtsgericht Berlin Charlottenburg; HRB 130120 B; Ust.-IDNr. DE273952058 ^ permalink raw reply [flat|nested] 19+ messages in thread
end of thread, other threads:[~2015-08-06 10:54 UTC | newest] Thread overview: 19+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2015-03-20 14:20 [meta-oe][PATCH] vim: add checksum Rafaël Carré 2015-03-22 10:09 ` Rafaël Carré 2015-03-22 15:55 ` Martin Jansa 2015-03-22 17:23 ` Rafaël Carré 2015-04-27 10:51 ` Martin Jansa 2015-05-22 15:39 ` [PATCH] fetch/hg: Disable checksums for archived downloads Ash Charles 2015-05-22 15:39 ` Ash Charles 2015-05-29 1:49 ` [oe] " Robert Yang 2015-05-29 1:49 ` Robert Yang 2015-05-29 5:46 ` [oe] " Ash Charles 2015-05-29 5:46 ` [bitbake-devel] " Ash Charles 2015-05-29 9:18 ` [oe] " Martin Jansa 2015-05-29 9:18 ` [bitbake-devel] " Martin Jansa 2015-06-02 0:08 ` [oe] " Ash Charles 2015-06-02 0:08 ` [bitbake-devel] " Ash Charles 2015-06-02 4:38 ` [oe] " Robert Yang 2015-06-02 4:38 ` [bitbake-devel] " Robert Yang 2015-08-06 10:54 ` [oe] " Steffen Sledz 2015-08-06 10:54 ` [bitbake-devel] " Steffen Sledz
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.