* [PATCH] ninja: Upgrade from 1.7.2 to major release 1.8.2 [not found] <1516648119-12528-1-git-send-email-alejandr@xilinx.com> @ 2018-01-30 21:09 ` Alejandro Enedino Hernandez Samaniego 2018-01-31 11:57 ` Burton, Ross 2018-01-30 21:35 ` ✗ patchtest: failure for " Patchwork 1 sibling, 1 reply; 4+ messages in thread From: Alejandro Enedino Hernandez Samaniego @ 2018-01-30 21:09 UTC (permalink / raw) To: openembedded-core Signed-off-by: Alejandro Enedino Hernandez Samaniego <alejandr@xilinx.com> --- meta/recipes-devtools/ninja/ninja_1.7.2.bb | 30 ------------------------------ meta/recipes-devtools/ninja/ninja_1.8.2.bb | 30 ++++++++++++++++++++++++++++++ 2 files changed, 30 insertions(+), 30 deletions(-) delete mode 100644 meta/recipes-devtools/ninja/ninja_1.7.2.bb create mode 100644 meta/recipes-devtools/ninja/ninja_1.8.2.bb diff --git a/meta/recipes-devtools/ninja/ninja_1.7.2.bb b/meta/recipes-devtools/ninja/ninja_1.7.2.bb deleted file mode 100644 index 4d3b272..0000000 --- a/meta/recipes-devtools/ninja/ninja_1.7.2.bb +++ /dev/null @@ -1,30 +0,0 @@ -SUMMARY = "Ninja is a small build system with a focus on speed." -HOMEPAGE = "http://martine.github.com/ninja/" -LICENSE = "Apache-2.0" -LIC_FILES_CHKSUM = "file://COPYING;md5=a81586a64ad4e476c791cda7e2f2c52e" - -DEPENDS = "re2c-native ninja-native" - -SRCREV = "717b7b4a31db6027207588c0fb89c3ead384747b" - -SRC_URI = "git://github.com/martine/ninja.git;branch=release" -UPSTREAM_CHECK_GITTAGREGEX = "v(?P<pver>.*)" - -S = "${WORKDIR}/git" - -do_configure[noexec] = "1" - -do_compile_class-native() { - ./configure.py --bootstrap -} - -do_compile() { - ./configure.py - ninja -} - -do_install() { - install -D -m 0755 ${S}/ninja ${D}${bindir}/ninja -} - -BBCLASSEXTEND = "native nativesdk" diff --git a/meta/recipes-devtools/ninja/ninja_1.8.2.bb b/meta/recipes-devtools/ninja/ninja_1.8.2.bb new file mode 100644 index 0000000..c6fcfef --- /dev/null +++ b/meta/recipes-devtools/ninja/ninja_1.8.2.bb @@ -0,0 +1,30 @@ +SUMMARY = "Ninja is a small build system with a focus on speed." +HOMEPAGE = "http://martine.github.com/ninja/" +LICENSE = "Apache-2.0" +LIC_FILES_CHKSUM = "file://COPYING;md5=a81586a64ad4e476c791cda7e2f2c52e" + +DEPENDS = "re2c-native ninja-native" + +SRCREV = "253e94c1fa511704baeb61cf69995bbf09ba435e" + +SRC_URI = "git://github.com/ninja-build/ninja.git;branch=release" +UPSTREAM_CHECK_GITTAGREGEX = "v(?P<pver>.*)" + +S = "${WORKDIR}/git" + +do_configure[noexec] = "1" + +do_compile_class-native() { + ./configure.py --bootstrap +} + +do_compile() { + ./configure.py + ninja +} + +do_install() { + install -D -m 0755 ${S}/ninja ${D}${bindir}/ninja +} + +BBCLASSEXTEND = "native nativesdk" -- 2.7.4 This email and any attachments are intended for the sole use of the named recipient(s) and contain(s) confidential information that may be proprietary, privileged or copyrighted under applicable law. If you are not the intended recipient, do not read, copy, or forward this email message or any attachments. Delete this email message and any attachments immediately. ^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] ninja: Upgrade from 1.7.2 to major release 1.8.2 2018-01-30 21:09 ` [PATCH] ninja: Upgrade from 1.7.2 to major release 1.8.2 Alejandro Enedino Hernandez Samaniego @ 2018-01-31 11:57 ` Burton, Ross 2018-01-31 19:00 ` Alejandro Enedino Hernandez Samaniego 0 siblings, 1 reply; 4+ messages in thread From: Burton, Ross @ 2018-01-31 11:57 UTC (permalink / raw) To: Alejandro Enedino Hernandez Samaniego; +Cc: openembedded-core [-- Attachment #1: Type: text/plain, Size: 3364 bytes --] Patch doesn't apply, can you rebase and resend please. Ross On 30 January 2018 at 21:09, Alejandro Enedino Hernandez Samaniego < alejandro.enedino.hernandez-samaniego@xilinx.com> wrote: > Signed-off-by: Alejandro Enedino Hernandez Samaniego <alejandr@xilinx.com> > > --- > meta/recipes-devtools/ninja/ninja_1.7.2.bb | 30 > ------------------------------ > meta/recipes-devtools/ninja/ninja_1.8.2.bb | 30 > ++++++++++++++++++++++++++++++ > 2 files changed, 30 insertions(+), 30 deletions(-) > delete mode 100644 meta/recipes-devtools/ninja/ninja_1.7.2.bb > create mode 100644 meta/recipes-devtools/ninja/ninja_1.8.2.bb > > diff --git a/meta/recipes-devtools/ninja/ninja_1.7.2.bb > b/meta/recipes-devtools/ninja/ninja_1.7.2.bb > deleted file mode 100644 > index 4d3b272..0000000 > --- a/meta/recipes-devtools/ninja/ninja_1.7.2.bb > +++ /dev/null > @@ -1,30 +0,0 @@ > -SUMMARY = "Ninja is a small build system with a focus on speed." > -HOMEPAGE = "http://martine.github.com/ninja/" > -LICENSE = "Apache-2.0" > -LIC_FILES_CHKSUM = "file://COPYING;md5=a81586a64ad4e476c791cda7e2f2c52e" > - > -DEPENDS = "re2c-native ninja-native" > - > -SRCREV = "717b7b4a31db6027207588c0fb89c3ead384747b" > - > -SRC_URI = "git://github.com/martine/ninja.git;branch=release" > -UPSTREAM_CHECK_GITTAGREGEX = "v(?P<pver>.*)" > - > -S = "${WORKDIR}/git" > - > -do_configure[noexec] = "1" > - > -do_compile_class-native() { > - ./configure.py --bootstrap > -} > - > -do_compile() { > - ./configure.py > - ninja > -} > - > -do_install() { > - install -D -m 0755 ${S}/ninja ${D}${bindir}/ninja > -} > - > -BBCLASSEXTEND = "native nativesdk" > diff --git a/meta/recipes-devtools/ninja/ninja_1.8.2.bb > b/meta/recipes-devtools/ninja/ninja_1.8.2.bb > new file mode 100644 > index 0000000..c6fcfef > --- /dev/null > +++ b/meta/recipes-devtools/ninja/ninja_1.8.2.bb > @@ -0,0 +1,30 @@ > +SUMMARY = "Ninja is a small build system with a focus on speed." > +HOMEPAGE = "http://martine.github.com/ninja/" > +LICENSE = "Apache-2.0" > +LIC_FILES_CHKSUM = "file://COPYING;md5=a81586a64ad4e476c791cda7e2f2c52e" > + > +DEPENDS = "re2c-native ninja-native" > + > +SRCREV = "253e94c1fa511704baeb61cf69995bbf09ba435e" > + > +SRC_URI = "git://github.com/ninja-build/ninja.git;branch=release" > +UPSTREAM_CHECK_GITTAGREGEX = "v(?P<pver>.*)" > + > +S = "${WORKDIR}/git" > + > +do_configure[noexec] = "1" > + > +do_compile_class-native() { > + ./configure.py --bootstrap > +} > + > +do_compile() { > + ./configure.py > + ninja > +} > + > +do_install() { > + install -D -m 0755 ${S}/ninja ${D}${bindir}/ninja > +} > + > +BBCLASSEXTEND = "native nativesdk" > -- > 2.7.4 > > This email and any attachments are intended for the sole use of the named > recipient(s) and contain(s) confidential information that may be > proprietary, privileged or copyrighted under applicable law. If you are not > the intended recipient, do not read, copy, or forward this email message or > any attachments. Delete this email message and any attachments immediately. > -- > _______________________________________________ > Openembedded-core mailing list > Openembedded-core@lists.openembedded.org > http://lists.openembedded.org/mailman/listinfo/openembedded-core > [-- Attachment #2: Type: text/html, Size: 5605 bytes --] ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] ninja: Upgrade from 1.7.2 to major release 1.8.2 2018-01-31 11:57 ` Burton, Ross @ 2018-01-31 19:00 ` Alejandro Enedino Hernandez Samaniego 0 siblings, 0 replies; 4+ messages in thread From: Alejandro Enedino Hernandez Samaniego @ 2018-01-31 19:00 UTC (permalink / raw) To: Burton, Ross, Alejandro Enedino Hernandez Samaniego; +Cc: openembedded-core [-- Attachment #1: Type: text/plain, Size: 4691 bytes --] Sure, sorry for some reason I sent it to oe-core-bounce or something last week. Interestingly I just rebased it on master cleanly... On 01/31/2018 03:57 AM, Burton, Ross wrote: > Patch doesn't apply, can you rebase and resend please. > > Ross > > On 30 January 2018 at 21:09, Alejandro Enedino Hernandez Samaniego > <alejandro.enedino.hernandez-samaniego@xilinx.com > <mailto:alejandro.enedino.hernandez-samaniego@xilinx.com>> wrote: > > Signed-off-by: Alejandro Enedino Hernandez Samaniego > <alejandr@xilinx.com <mailto:alejandr@xilinx.com>> > > --- > meta/recipes-devtools/ninja/ninja_1.7.2.bb > <http://ninja_1.7.2.bb> | 30 ------------------------------ > meta/recipes-devtools/ninja/ninja_1.8.2.bb > <http://ninja_1.8.2.bb> | 30 ++++++++++++++++++++++++++++++ > 2 files changed, 30 insertions(+), 30 deletions(-) > delete mode 100644 meta/recipes-devtools/ninja/ninja_1.7.2.bb > <http://ninja_1.7.2.bb> > create mode 100644 meta/recipes-devtools/ninja/ninja_1.8.2.bb > <http://ninja_1.8.2.bb> > > diff --git a/meta/recipes-devtools/ninja/ninja_1.7.2.bb > <http://ninja_1.7.2.bb> > b/meta/recipes-devtools/ninja/ninja_1.7.2.bb <http://ninja_1.7.2.bb> > deleted file mode 100644 > index 4d3b272..0000000 > --- a/meta/recipes-devtools/ninja/ninja_1.7.2.bb > <http://ninja_1.7.2.bb> > +++ /dev/null > @@ -1,30 +0,0 @@ > -SUMMARY = "Ninja is a small build system with a focus on speed." > -HOMEPAGE = "http://martine.github.com/ninja/ > <http://martine.github.com/ninja/>" > -LICENSE = "Apache-2.0" > -LIC_FILES_CHKSUM = > "file://COPYING;md5=a81586a64ad4e476c791cda7e2f2c52e" > - > -DEPENDS = "re2c-native ninja-native" > - > -SRCREV = "717b7b4a31db6027207588c0fb89c3ead384747b" > - > -SRC_URI = "git://github.com/martine/ninja.git;branch=release > <http://github.com/martine/ninja.git;branch=release>" > -UPSTREAM_CHECK_GITTAGREGEX = "v(?P<pver>.*)" > - > -S = "${WORKDIR}/git" > - > -do_configure[noexec] = "1" > - > -do_compile_class-native() { > - ./configure.py --bootstrap > -} > - > -do_compile() { > - ./configure.py > - ninja > -} > - > -do_install() { > - install -D -m 0755 ${S}/ninja ${D}${bindir}/ninja > -} > - > -BBCLASSEXTEND = "native nativesdk" > diff --git a/meta/recipes-devtools/ninja/ninja_1.8.2.bb > <http://ninja_1.8.2.bb> > b/meta/recipes-devtools/ninja/ninja_1.8.2.bb <http://ninja_1.8.2.bb> > new file mode 100644 > index 0000000..c6fcfef > --- /dev/null > +++ b/meta/recipes-devtools/ninja/ninja_1.8.2.bb > <http://ninja_1.8.2.bb> > @@ -0,0 +1,30 @@ > +SUMMARY = "Ninja is a small build system with a focus on speed." > +HOMEPAGE = "http://martine.github.com/ninja/ > <http://martine.github.com/ninja/>" > +LICENSE = "Apache-2.0" > +LIC_FILES_CHKSUM = > "file://COPYING;md5=a81586a64ad4e476c791cda7e2f2c52e" > + > +DEPENDS = "re2c-native ninja-native" > + > +SRCREV = "253e94c1fa511704baeb61cf69995bbf09ba435e" > + > +SRC_URI = "git://github.com/ninja-build/ninja.git;branch=release > <http://github.com/ninja-build/ninja.git;branch=release>" > +UPSTREAM_CHECK_GITTAGREGEX = "v(?P<pver>.*)" > + > +S = "${WORKDIR}/git" > + > +do_configure[noexec] = "1" > + > +do_compile_class-native() { > + ./configure.py --bootstrap > +} > + > +do_compile() { > + ./configure.py > + ninja > +} > + > +do_install() { > + install -D -m 0755 ${S}/ninja ${D}${bindir}/ninja > +} > + > +BBCLASSEXTEND = "native nativesdk" > -- > 2.7.4 > > This email and any attachments are intended for the sole use of > the named recipient(s) and contain(s) confidential information > that may be proprietary, privileged or copyrighted under > applicable law. If you are not the intended recipient, do not > read, copy, or forward this email message or any attachments. > Delete this email message and any attachments immediately. > -- > _______________________________________________ > Openembedded-core mailing list > Openembedded-core@lists.openembedded.org > <mailto:Openembedded-core@lists.openembedded.org> > http://lists.openembedded.org/mailman/listinfo/openembedded-core > <http://lists.openembedded.org/mailman/listinfo/openembedded-core> > > [-- Attachment #2: Type: text/html, Size: 8578 bytes --] ^ permalink raw reply [flat|nested] 4+ messages in thread
* ✗ patchtest: failure for ninja: Upgrade from 1.7.2 to major release 1.8.2 [not found] <1516648119-12528-1-git-send-email-alejandr@xilinx.com> 2018-01-30 21:09 ` [PATCH] ninja: Upgrade from 1.7.2 to major release 1.8.2 Alejandro Enedino Hernandez Samaniego @ 2018-01-30 21:35 ` Patchwork 1 sibling, 0 replies; 4+ messages in thread From: Patchwork @ 2018-01-30 21:35 UTC (permalink / raw) To: Alejandro Enedino Hernandez Samaniego; +Cc: openembedded-core == Series Details == Series: ninja: Upgrade from 1.7.2 to major release 1.8.2 Revision: 1 URL : https://patchwork.openembedded.org/series/10780/ State : failure == Summary == Thank you for submitting this patch series to OpenEmbedded Core. This is an automated response. Several tests have been executed on the proposed series by patchtest resulting in the following failures: * Issue Series does not apply on top of target branch [test_series_merge_on_head] Suggested fix Rebase your series on top of targeted branch Targeted branch master (currently at 59c5fb3c80) If you believe any of these test results are incorrect, please reply to the mailing list (openembedded-core@lists.openembedded.org) raising your concerns. Otherwise we would appreciate you correcting the issues and submitting a new version of the patchset if applicable. Please ensure you add/increment the version number when sending the new version (i.e. [PATCH] -> [PATCH v2] -> [PATCH v3] -> ...). --- Guidelines: https://www.openembedded.org/wiki/Commit_Patch_Message_Guidelines Test framework: http://git.yoctoproject.org/cgit/cgit.cgi/patchtest Test suite: http://git.yoctoproject.org/cgit/cgit.cgi/patchtest-oe ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2018-01-31 19:16 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <1516648119-12528-1-git-send-email-alejandr@xilinx.com>
2018-01-30 21:09 ` [PATCH] ninja: Upgrade from 1.7.2 to major release 1.8.2 Alejandro Enedino Hernandez Samaniego
2018-01-31 11:57 ` Burton, Ross
2018-01-31 19:00 ` Alejandro Enedino Hernandez Samaniego
2018-01-30 21:35 ` ✗ patchtest: failure for " Patchwork
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.