* [meta-oe][PATCH v2] CANopenNode: recipe for building the CANopenSocket tools
@ 2016-07-14 15:08 cynthiachiu
2016-07-20 13:59 ` Martin Jansa
0 siblings, 1 reply; 3+ messages in thread
From: cynthiachiu @ 2016-07-14 15:08 UTC (permalink / raw)
To: openembedded-devel
Initial check-in for the CANopenSocket tools recipe.
Signed-off-by: cynthiachiu <cynthia.ms.chiu@gmail.com>
Including a specific revision for the recipe.
Using gitsm.
Signed-off-by: cynthiachiu <cynthia.ms.chiu@gmail.com>
---
.../canopennode/canopensocket_git.bb | 25 ++++++++++++++++++++++
1 file changed, 25 insertions(+)
create mode 100644 meta-oe/recipes-extended/canopennode/canopensocket_git.bb
diff --git a/meta-oe/recipes-extended/canopennode/canopensocket_git.bb b/meta-oe/recipes-extended/canopennode/canopensocket_git.bb
new file mode 100644
index 0000000..7c58a26
--- /dev/null
+++ b/meta-oe/recipes-extended/canopennode/canopensocket_git.bb
@@ -0,0 +1,25 @@
+SUMMARY = "Linux CANOpen tools"
+DESCRIPTION = "Linux CANOpen Protocol Stack Tools"
+LICENSE = "GPLv2"
+LIC_FILES_CHKSUM = "file://gpl-2.0.txt;md5=b234ee4d69f5fce4486a80fdaf4a4263"
+
+SRC_URI = "gitsm://github.com/CANopenNode/CANopenSocket.git"
+SRCREV = "7777653da3a630b0dc02b3fa5ff029d9bc57cd26"
+
+S = "${WORKDIR}/git"
+
+do_compile() {
+ cd ${S}/canopend
+ make
+ cd ${S}/canopencomm
+ make
+ cd ${S}/canopencgi
+ make
+}
+
+do_install(){
+ install -d ${D}${bindir}
+ install -m 0755 ${S}/canopend/app/canopend ${D}${bindir}
+ install -m 0755 ${S}/canopencomm/canopencomm ${D}${bindir}
+ install -m 0755 ${S}/canopencgi/canopen.cgi ${D}${bindir}
+}
--
1.9.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [meta-oe][PATCH v2] CANopenNode: recipe for building the CANopenSocket tools
2016-07-14 15:08 [meta-oe][PATCH v2] CANopenNode: recipe for building the CANopenSocket tools cynthiachiu
@ 2016-07-20 13:59 ` Martin Jansa
2016-07-20 17:12 ` Cynthia Chiu
0 siblings, 1 reply; 3+ messages in thread
From: Martin Jansa @ 2016-07-20 13:59 UTC (permalink / raw)
To: openembedded-devel
[-- Attachment #1: Type: text/plain, Size: 2078 bytes --]
On Thu, Jul 14, 2016 at 09:08:34AM -0600, cynthiachiu wrote:
> Initial check-in for the CANopenSocket tools recipe.
>
> Signed-off-by: cynthiachiu <cynthia.ms.chiu@gmail.com>
>
> Including a specific revision for the recipe.
>
> Using gitsm.
>
> Signed-off-by: cynthiachiu <cynthia.ms.chiu@gmail.com>
> ---
> .../canopennode/canopensocket_git.bb | 25 ++++++++++++++++++++++
> 1 file changed, 25 insertions(+)
> create mode 100644 meta-oe/recipes-extended/canopennode/canopensocket_git.bb
>
> diff --git a/meta-oe/recipes-extended/canopennode/canopensocket_git.bb b/meta-oe/recipes-extended/canopennode/canopensocket_git.bb
> new file mode 100644
> index 0000000..7c58a26
> --- /dev/null
> +++ b/meta-oe/recipes-extended/canopennode/canopensocket_git.bb
> @@ -0,0 +1,25 @@
> +SUMMARY = "Linux CANOpen tools"
> +DESCRIPTION = "Linux CANOpen Protocol Stack Tools"
> +LICENSE = "GPLv2"
> +LIC_FILES_CHKSUM = "file://gpl-2.0.txt;md5=b234ee4d69f5fce4486a80fdaf4a4263"
canopensocket-git: canopensocket: LIC_FILES_CHKSUM points to an invalid
file:
/home/jenkins/oe/world/shr-core/tmp-glibc/work/armv5te-oe-linux-gnueabi/canopensocket/git-r0/git/gpl-2.0.txt
[license-checksum]
> +
> +SRC_URI = "gitsm://github.com/CANopenNode/CANopenSocket.git"
> +SRCREV = "7777653da3a630b0dc02b3fa5ff029d9bc57cd26"
> +
> +S = "${WORKDIR}/git"
> +
> +do_compile() {
> + cd ${S}/canopend
> + make
> + cd ${S}/canopencomm
> + make
> + cd ${S}/canopencgi
> + make
> +}
> +
> +do_install(){
> + install -d ${D}${bindir}
> + install -m 0755 ${S}/canopend/app/canopend ${D}${bindir}
> + install -m 0755 ${S}/canopencomm/canopencomm ${D}${bindir}
> + install -m 0755 ${S}/canopencgi/canopen.cgi ${D}${bindir}
> +}
> --
> 1.9.1
>
> --
> _______________________________________________
> 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] 3+ messages in thread
* Re: [meta-oe][PATCH v2] CANopenNode: recipe for building the CANopenSocket tools
2016-07-20 13:59 ` Martin Jansa
@ 2016-07-20 17:12 ` Cynthia Chiu
0 siblings, 0 replies; 3+ messages in thread
From: Cynthia Chiu @ 2016-07-20 17:12 UTC (permalink / raw)
To: openembedded-devel
Hi,
Thanks for your feedback, I will update the recipe.
Regards,
Cynthia Chiu
On Wed, Jul 20, 2016 at 7:59 AM, Martin Jansa <martin.jansa@gmail.com>
wrote:
> On Thu, Jul 14, 2016 at 09:08:34AM -0600, cynthiachiu wrote:
> > Initial check-in for the CANopenSocket tools recipe.
> >
> > Signed-off-by: cynthiachiu <cynthia.ms.chiu@gmail.com>
> >
> > Including a specific revision for the recipe.
> >
> > Using gitsm.
> >
> > Signed-off-by: cynthiachiu <cynthia.ms.chiu@gmail.com>
> > ---
> > .../canopennode/canopensocket_git.bb | 25
> ++++++++++++++++++++++
> > 1 file changed, 25 insertions(+)
> > create mode 100644 meta-oe/recipes-extended/canopennode/
> canopensocket_git.bb
> >
> > diff --git a/meta-oe/recipes-extended/canopennode/canopensocket_git.bb
> b/meta-oe/recipes-extended/canopennode/canopensocket_git.bb
> > new file mode 100644
> > index 0000000..7c58a26
> > --- /dev/null
> > +++ b/meta-oe/recipes-extended/canopennode/canopensocket_git.bb
> > @@ -0,0 +1,25 @@
> > +SUMMARY = "Linux CANOpen tools"
> > +DESCRIPTION = "Linux CANOpen Protocol Stack Tools"
> > +LICENSE = "GPLv2"
> > +LIC_FILES_CHKSUM =
> "file://gpl-2.0.txt;md5=b234ee4d69f5fce4486a80fdaf4a4263"
>
> canopensocket-git: canopensocket: LIC_FILES_CHKSUM points to an invalid
> file:
>
> /home/jenkins/oe/world/shr-core/tmp-glibc/work/armv5te-oe-linux-gnueabi/canopensocket/git-r0/git/gpl-2.0.txt
> [license-checksum]
>
> > +
> > +SRC_URI = "gitsm://github.com/CANopenNode/CANopenSocket.git"
> > +SRCREV = "7777653da3a630b0dc02b3fa5ff029d9bc57cd26"
> > +
> > +S = "${WORKDIR}/git"
> > +
> > +do_compile() {
> > + cd ${S}/canopend
> > + make
> > + cd ${S}/canopencomm
> > + make
> > + cd ${S}/canopencgi
> > + make
> > +}
> > +
> > +do_install(){
> > + install -d ${D}${bindir}
> > + install -m 0755 ${S}/canopend/app/canopend ${D}${bindir}
> > + install -m 0755 ${S}/canopencomm/canopencomm ${D}${bindir}
> > + install -m 0755 ${S}/canopencgi/canopen.cgi ${D}${bindir}
> > +}
> > --
> > 1.9.1
> >
> > --
> > _______________________________________________
> > 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
>
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
>
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2016-07-20 17:12 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-07-14 15:08 [meta-oe][PATCH v2] CANopenNode: recipe for building the CANopenSocket tools cynthiachiu
2016-07-20 13:59 ` Martin Jansa
2016-07-20 17:12 ` Cynthia Chiu
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox