All of lore.kernel.org
 help / color / mirror / Atom feed
* [zeus PATCH v1 1/2] recipes-devtools: websocketd: Add new recipe for websocket app
@ 2020-04-26 17:42 nikhil.nd
  2020-04-26 17:42 ` [zeus PATCH v1 2/2] recipes-devtools: statcol: New recipe for statistics collector nikhil.nd
  2020-04-27 22:37 ` [zeus PATCH v1 1/2] recipes-devtools: websocketd: Add new recipe for websocket app Denys Dmytriyenko
  0 siblings, 2 replies; 7+ messages in thread
From: nikhil.nd @ 2020-04-26 17:42 UTC (permalink / raw)
  To: denys; +Cc: meta-arago

From: Nikhil Devshatwar <nikhil.nd@ti.com>

websocketd is a userspace application which allows to send
data over web sockets. This is used in SDK for visualizing
statistics parameters.

Signed-off-by: Nikhil Devshatwar <nikhil.nd@ti.com>
---
 ...packagegroup-arago-tisdk-addons-sdk-target.bb |  4 +++-
 .../recipes-devtools/websocketd/websocketd.bb    | 16 ++++++++++++++++
 2 files changed, 19 insertions(+), 1 deletion(-)
 create mode 100644 meta-arago-extras/recipes-devtools/websocketd/websocketd.bb

diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons-sdk-target.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons-sdk-target.bb
index 26925f2f..54a59022 100644
--- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons-sdk-target.bb
+++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons-sdk-target.bb
@@ -133,7 +133,9 @@ UTILS_append_dra7xx = " can-utils-dev \
                         elfutils-staticdev \
 "
 UTILS_append_k2g = " can-utils-dev"
-UTILS_append_k3 = " can-utils-dev"
+UTILS_append_k3 = " can-utils-dev \
+                    websocketd \
+"
 
 EXTRA_LIBS = ""
 EXTRA_LIBS_append_ti43x = "\
diff --git a/meta-arago-extras/recipes-devtools/websocketd/websocketd.bb b/meta-arago-extras/recipes-devtools/websocketd/websocketd.bb
new file mode 100644
index 00000000..44f549ee
--- /dev/null
+++ b/meta-arago-extras/recipes-devtools/websocketd/websocketd.bb
@@ -0,0 +1,16 @@
+SUMMARY = "Application for routing native applications via websockets"
+HOMEPAGE = "http://websocketd.com/"
+
+LICENSE = "BSD-2-Clause"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=a14d7befdbee1290ac5c472cd85d66f2"
+
+PV = "0.3.0"
+SRC_URI = "https://github.com/joewalnes/websocketd/releases/download/v${PV}/websocketd-${PV}-linux_arm64.zip"
+SRC_URI[md5sum] = "968c1ce4ed4fe5f86817f2533f5d3004"
+
+S = "${WORKDIR}"
+
+do_install() {
+	install -d ${D}/${bindir}
+	install -m 0755 ${S}/websocketd ${D}${bindir}/
+}
-- 
2.17.1



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

* [zeus PATCH v1 2/2] recipes-devtools: statcol: New recipe for statistics collector
  2020-04-26 17:42 [zeus PATCH v1 1/2] recipes-devtools: websocketd: Add new recipe for websocket app nikhil.nd
@ 2020-04-26 17:42 ` nikhil.nd
  2020-04-27 22:37   ` Denys Dmytriyenko
  2020-04-27 22:37 ` [zeus PATCH v1 1/2] recipes-devtools: websocketd: Add new recipe for websocket app Denys Dmytriyenko
  1 sibling, 1 reply; 7+ messages in thread
From: nikhil.nd @ 2020-04-26 17:42 UTC (permalink / raw)
  To: denys; +Cc: meta-arago

From: Nikhil Devshatwar <nikhil.nd@ti.com>

Statistics Collector is userspace application which communicates
with remote processors to get the statistics data on target.

This can be printed command line or sent over network for
host-side visualization.

Signed-off-by: Nikhil Devshatwar <nikhil.nd@ti.com>
---
 ...kagegroup-arago-tisdk-addons-sdk-target.bb |  1 +
 .../recipes-devtools/statcol/statcol.bb       | 19 +++++++++++++++++++
 2 files changed, 20 insertions(+)
 create mode 100644 meta-arago-extras/recipes-devtools/statcol/statcol.bb

diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons-sdk-target.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons-sdk-target.bb
index 54a59022..c6502a1f 100644
--- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons-sdk-target.bb
+++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons-sdk-target.bb
@@ -135,6 +135,7 @@ UTILS_append_dra7xx = " can-utils-dev \
 UTILS_append_k2g = " can-utils-dev"
 UTILS_append_k3 = " can-utils-dev \
                     websocketd \
+                    statcol \
 "
 
 EXTRA_LIBS = ""
diff --git a/meta-arago-extras/recipes-devtools/statcol/statcol.bb b/meta-arago-extras/recipes-devtools/statcol/statcol.bb
new file mode 100644
index 00000000..b87d940b
--- /dev/null
+++ b/meta-arago-extras/recipes-devtools/statcol/statcol.bb
@@ -0,0 +1,19 @@
+SUMMARY = "Statistics collector application"
+
+LICENSE = "TI-TSPA"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=bb6bc27cd44417c389a180bd62f552a0"
+
+PROTOCOL = "git"
+BRANCH = "master"
+SRCREV = "80bac9aa2d20160197b336ab3c82ce9080091978"
+SRC_URI = "git://git.ti.com/glsdk/statcol.git;protocol=${PROTOCOL};branch=${BRANCH}"
+
+DEPENDS = "rpmsg-char-helper websocketd"
+
+S = "${WORKDIR}/git"
+
+EXTRA_OEMAKE += "SYSROOT=${STAGING_DIR_TARGET} CROSS_COMPILE=${CROSS_COMPILE}"
+
+do_install() {
+	DESTDIR=${D} make install
+}
-- 
2.17.1



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

* Re: [zeus PATCH v1 2/2] recipes-devtools: statcol: New recipe for statistics collector
  2020-04-26 17:42 ` [zeus PATCH v1 2/2] recipes-devtools: statcol: New recipe for statistics collector nikhil.nd
@ 2020-04-27 22:37   ` Denys Dmytriyenko
  2020-04-29  7:00     ` Nikhil Devshatwar
  0 siblings, 1 reply; 7+ messages in thread
From: Denys Dmytriyenko @ 2020-04-27 22:37 UTC (permalink / raw)
  To: nikhil.nd; +Cc: meta-arago

On Sun, Apr 26, 2020 at 11:12:23PM +0530, nikhil.nd@ti.com wrote:
> From: Nikhil Devshatwar <nikhil.nd@ti.com>
> 
> Statistics Collector is userspace application which communicates
> with remote processors to get the statistics data on target.
> 
> This can be printed command line or sent over network for
> host-side visualization.
> 
> Signed-off-by: Nikhil Devshatwar <nikhil.nd@ti.com>
> ---
>  ...kagegroup-arago-tisdk-addons-sdk-target.bb |  1 +
>  .../recipes-devtools/statcol/statcol.bb       | 19 +++++++++++++++++++
>  2 files changed, 20 insertions(+)
>  create mode 100644 meta-arago-extras/recipes-devtools/statcol/statcol.bb
> 
> diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons-sdk-target.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons-sdk-target.bb
> index 54a59022..c6502a1f 100644
> --- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons-sdk-target.bb
> +++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons-sdk-target.bb
> @@ -135,6 +135,7 @@ UTILS_append_dra7xx = " can-utils-dev \
>  UTILS_append_k2g = " can-utils-dev"
>  UTILS_append_k3 = " can-utils-dev \
>                      websocketd \
> +                    statcol \
>  "
>  
>  EXTRA_LIBS = ""
> diff --git a/meta-arago-extras/recipes-devtools/statcol/statcol.bb b/meta-arago-extras/recipes-devtools/statcol/statcol.bb
> new file mode 100644
> index 00000000..b87d940b
> --- /dev/null
> +++ b/meta-arago-extras/recipes-devtools/statcol/statcol.bb
> @@ -0,0 +1,19 @@
> +SUMMARY = "Statistics collector application"
> +
> +LICENSE = "TI-TSPA"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=bb6bc27cd44417c389a180bd62f552a0"
> +
> +PROTOCOL = "git"
> +BRANCH = "master"
> +SRCREV = "80bac9aa2d20160197b336ab3c82ce9080091978"
> +SRC_URI = "git://git.ti.com/glsdk/statcol.git;protocol=${PROTOCOL};branch=${BRANCH}"
> +
> +DEPENDS = "rpmsg-char-helper websocketd"

Missing dependency on rpmsg-char-helper


> +
> +S = "${WORKDIR}/git"
> +
> +EXTRA_OEMAKE += "SYSROOT=${STAGING_DIR_TARGET} CROSS_COMPILE=${CROSS_COMPILE}"
> +
> +do_install() {
> +	DESTDIR=${D} make install
> +}
> -- 
> 2.17.1
> 


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

* Re: [zeus PATCH v1 1/2] recipes-devtools: websocketd: Add new recipe for websocket app
  2020-04-26 17:42 [zeus PATCH v1 1/2] recipes-devtools: websocketd: Add new recipe for websocket app nikhil.nd
  2020-04-26 17:42 ` [zeus PATCH v1 2/2] recipes-devtools: statcol: New recipe for statistics collector nikhil.nd
@ 2020-04-27 22:37 ` Denys Dmytriyenko
  2020-04-29  7:01   ` Nikhil Devshatwar
  1 sibling, 1 reply; 7+ messages in thread
From: Denys Dmytriyenko @ 2020-04-27 22:37 UTC (permalink / raw)
  To: nikhil.nd; +Cc: meta-arago

On Sun, Apr 26, 2020 at 11:12:22PM +0530, nikhil.nd@ti.com wrote:
> From: Nikhil Devshatwar <nikhil.nd@ti.com>
> 
> websocketd is a userspace application which allows to send
> data over web sockets. This is used in SDK for visualizing
> statistics parameters.
> 
> Signed-off-by: Nikhil Devshatwar <nikhil.nd@ti.com>
> ---
>  ...packagegroup-arago-tisdk-addons-sdk-target.bb |  4 +++-
>  .../recipes-devtools/websocketd/websocketd.bb    | 16 ++++++++++++++++
>  2 files changed, 19 insertions(+), 1 deletion(-)
>  create mode 100644 meta-arago-extras/recipes-devtools/websocketd/websocketd.bb
> 
> diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons-sdk-target.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons-sdk-target.bb
> index 26925f2f..54a59022 100644
> --- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons-sdk-target.bb
> +++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons-sdk-target.bb
> @@ -133,7 +133,9 @@ UTILS_append_dra7xx = " can-utils-dev \
>                          elfutils-staticdev \
>  "
>  UTILS_append_k2g = " can-utils-dev"
> -UTILS_append_k3 = " can-utils-dev"
> +UTILS_append_k3 = " can-utils-dev \
> +                    websocketd \

Why are you adding it to the devkit?


> +"
>  
>  EXTRA_LIBS = ""
>  EXTRA_LIBS_append_ti43x = "\
> diff --git a/meta-arago-extras/recipes-devtools/websocketd/websocketd.bb b/meta-arago-extras/recipes-devtools/websocketd/websocketd.bb
> new file mode 100644
> index 00000000..44f549ee
> --- /dev/null
> +++ b/meta-arago-extras/recipes-devtools/websocketd/websocketd.bb
> @@ -0,0 +1,16 @@
> +SUMMARY = "Application for routing native applications via websockets"
> +HOMEPAGE = "http://websocketd.com/"
> +
> +LICENSE = "BSD-2-Clause"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=a14d7befdbee1290ac5c472cd85d66f2"
> +
> +PV = "0.3.0"
> +SRC_URI = "https://github.com/joewalnes/websocketd/releases/download/v${PV}/websocketd-${PV}-linux_arm64.zip"
> +SRC_URI[md5sum] = "968c1ce4ed4fe5f86817f2533f5d3004"
> +
> +S = "${WORKDIR}"
> +
> +do_install() {
> +	install -d ${D}/${bindir}
> +	install -m 0755 ${S}/websocketd ${D}${bindir}/
> +}
> -- 
> 2.17.1
> 


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

* Re: [zeus PATCH v1 2/2] recipes-devtools: statcol: New recipe for statistics collector
  2020-04-27 22:37   ` Denys Dmytriyenko
@ 2020-04-29  7:00     ` Nikhil Devshatwar
  0 siblings, 0 replies; 7+ messages in thread
From: Nikhil Devshatwar @ 2020-04-29  7:00 UTC (permalink / raw)
  To: Denys Dmytriyenko; +Cc: meta-arago

[-- Attachment #1: Type: text/plain, Size: 2551 bytes --]



On 28/04/20 4:07 am, Denys Dmytriyenko wrote:
> On Sun, Apr 26, 2020 at 11:12:23PM +0530, nikhil.nd@ti.com wrote:
>> From: Nikhil Devshatwar <nikhil.nd@ti.com>
>>
>> Statistics Collector is userspace application which communicates
>> with remote processors to get the statistics data on target.
>>
>> This can be printed command line or sent over network for
>> host-side visualization.
>>
>> Signed-off-by: Nikhil Devshatwar <nikhil.nd@ti.com>
>> ---
>>   ...kagegroup-arago-tisdk-addons-sdk-target.bb |  1 +
>>   .../recipes-devtools/statcol/statcol.bb       | 19 +++++++++++++++++++
>>   2 files changed, 20 insertions(+)
>>   create mode 100644 meta-arago-extras/recipes-devtools/statcol/statcol.bb
>>
>> diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons-sdk-target.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons-sdk-target.bb
>> index 54a59022..c6502a1f 100644
>> --- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons-sdk-target.bb
>> +++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons-sdk-target.bb
>> @@ -135,6 +135,7 @@ UTILS_append_dra7xx = " can-utils-dev \
>>   UTILS_append_k2g = " can-utils-dev"
>>   UTILS_append_k3 = " can-utils-dev \
>>                       websocketd \
>> +                    statcol \
>>   "
>>   
>>   EXTRA_LIBS = ""
>> diff --git a/meta-arago-extras/recipes-devtools/statcol/statcol.bb b/meta-arago-extras/recipes-devtools/statcol/statcol.bb
>> new file mode 100644
>> index 00000000..b87d940b
>> --- /dev/null
>> +++ b/meta-arago-extras/recipes-devtools/statcol/statcol.bb
>> @@ -0,0 +1,19 @@
>> +SUMMARY = "Statistics collector application"
>> +
>> +LICENSE = "TI-TSPA"
>> +LIC_FILES_CHKSUM = "file://LICENSE;md5=bb6bc27cd44417c389a180bd62f552a0"
>> +
>> +PROTOCOL = "git"
>> +BRANCH = "master"
>> +SRCREV = "80bac9aa2d20160197b336ab3c82ce9080091978"
>> +SRC_URI = "git://git.ti.com/glsdk/statcol.git;protocol=${PROTOCOL};branch=${BRANCH}"
>> +
>> +DEPENDS = "rpmsg-char-helper websocketd"
> Missing dependency on rpmsg-char-helper
Oh, I thought this has been upstreamed to meta-arago. Since the coresdk 
has support for rpmsg-char.
I will post the recipe for rpmsg-char-helper.

Regards,
Nikhil D
>
>
>> +
>> +S = "${WORKDIR}/git"
>> +
>> +EXTRA_OEMAKE += "SYSROOT=${STAGING_DIR_TARGET} CROSS_COMPILE=${CROSS_COMPILE}"
>> +
>> +do_install() {
>> +	DESTDIR=${D} make install
>> +}
>> -- 
>> 2.17.1
>>


[-- Attachment #2: Type: text/html, Size: 3476 bytes --]

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

* Re: [zeus PATCH v1 1/2] recipes-devtools: websocketd: Add new recipe for websocket app
  2020-04-27 22:37 ` [zeus PATCH v1 1/2] recipes-devtools: websocketd: Add new recipe for websocket app Denys Dmytriyenko
@ 2020-04-29  7:01   ` Nikhil Devshatwar
  2020-04-30 22:55     ` Denys Dmytriyenko
  0 siblings, 1 reply; 7+ messages in thread
From: Nikhil Devshatwar @ 2020-04-29  7:01 UTC (permalink / raw)
  To: Denys Dmytriyenko; +Cc: meta-arago

[-- Attachment #1: Type: text/plain, Size: 2522 bytes --]



On 28/04/20 4:07 am, Denys Dmytriyenko wrote:
> On Sun, Apr 26, 2020 at 11:12:22PM +0530, nikhil.nd@ti.com wrote:
>> From: Nikhil Devshatwar <nikhil.nd@ti.com>
>>
>> websocketd is a userspace application which allows to send
>> data over web sockets. This is used in SDK for visualizing
>> statistics parameters.
>>
>> Signed-off-by: Nikhil Devshatwar <nikhil.nd@ti.com>
>> ---
>>   ...packagegroup-arago-tisdk-addons-sdk-target.bb |  4 +++-
>>   .../recipes-devtools/websocketd/websocketd.bb    | 16 ++++++++++++++++
>>   2 files changed, 19 insertions(+), 1 deletion(-)
>>   create mode 100644 meta-arago-extras/recipes-devtools/websocketd/websocketd.bb
>>
>> diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons-sdk-target.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons-sdk-target.bb
>> index 26925f2f..54a59022 100644
>> --- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons-sdk-target.bb
>> +++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons-sdk-target.bb
>> @@ -133,7 +133,9 @@ UTILS_append_dra7xx = " can-utils-dev \
>>                           elfutils-staticdev \
>>   "
>>   UTILS_append_k2g = " can-utils-dev"
>> -UTILS_append_k3 = " can-utils-dev"
>> +UTILS_append_k3 = " can-utils-dev \
>> +                    websocketd \
> Why are you adding it to the devkit?
This is an on target utility.
Please suggest the best place for including this.


Regards,
Nikhil D
>
>> +"
>>   
>>   EXTRA_LIBS = ""
>>   EXTRA_LIBS_append_ti43x = "\
>> diff --git a/meta-arago-extras/recipes-devtools/websocketd/websocketd.bb b/meta-arago-extras/recipes-devtools/websocketd/websocketd.bb
>> new file mode 100644
>> index 00000000..44f549ee
>> --- /dev/null
>> +++ b/meta-arago-extras/recipes-devtools/websocketd/websocketd.bb
>> @@ -0,0 +1,16 @@
>> +SUMMARY = "Application for routing native applications via websockets"
>> +HOMEPAGE = "http://websocketd.com/"
>> +
>> +LICENSE = "BSD-2-Clause"
>> +LIC_FILES_CHKSUM = "file://LICENSE;md5=a14d7befdbee1290ac5c472cd85d66f2"
>> +
>> +PV = "0.3.0"
>> +SRC_URI = "https://github.com/joewalnes/websocketd/releases/download/v${PV}/websocketd-${PV}-linux_arm64.zip"
>> +SRC_URI[md5sum] = "968c1ce4ed4fe5f86817f2533f5d3004"
>> +
>> +S = "${WORKDIR}"
>> +
>> +do_install() {
>> +	install -d ${D}/${bindir}
>> +	install -m 0755 ${S}/websocketd ${D}${bindir}/
>> +}
>> -- 
>> 2.17.1
>>


[-- Attachment #2: Type: text/html, Size: 3669 bytes --]

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

* Re: [zeus PATCH v1 1/2] recipes-devtools: websocketd: Add new recipe for websocket app
  2020-04-29  7:01   ` Nikhil Devshatwar
@ 2020-04-30 22:55     ` Denys Dmytriyenko
  0 siblings, 0 replies; 7+ messages in thread
From: Denys Dmytriyenko @ 2020-04-30 22:55 UTC (permalink / raw)
  To: Nikhil Devshatwar; +Cc: meta-arago

On Wed, Apr 29, 2020 at 12:31:44PM +0530, Nikhil Devshatwar wrote:
> 
> 
> On 28/04/20 4:07 am, Denys Dmytriyenko wrote:
> >On Sun, Apr 26, 2020 at 11:12:22PM +0530, nikhil.nd@ti.com wrote:
> >>From: Nikhil Devshatwar <nikhil.nd@ti.com>
> >>
> >>websocketd is a userspace application which allows to send
> >>data over web sockets. This is used in SDK for visualizing
> >>statistics parameters.
> >>
> >>Signed-off-by: Nikhil Devshatwar <nikhil.nd@ti.com>
> >>---
> >>  ...packagegroup-arago-tisdk-addons-sdk-target.bb |  4 +++-
> >>  .../recipes-devtools/websocketd/websocketd.bb    | 16 ++++++++++++++++
> >>  2 files changed, 19 insertions(+), 1 deletion(-)
> >>  create mode 100644 meta-arago-extras/recipes-devtools/websocketd/websocketd.bb
> >>
> >>diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons-sdk-target.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons-sdk-target.bb
> >>index 26925f2f..54a59022 100644
> >>--- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons-sdk-target.bb
> >>+++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons-sdk-target.bb
> >>@@ -133,7 +133,9 @@ UTILS_append_dra7xx = " can-utils-dev \
> >>                          elfutils-staticdev \
> >>  "
> >>  UTILS_append_k2g = " can-utils-dev"
> >>-UTILS_append_k3 = " can-utils-dev"
> >>+UTILS_append_k3 = " can-utils-dev \
> >>+                    websocketd \
> >Why are you adding it to the devkit?
> This is an on target utility.
> Please suggest the best place for including this.

Sorry, missed answering your questions earlier - looks like you already 
figured it out in v2...


> Regards,
> Nikhil D
> >
> >>+"
> >>  EXTRA_LIBS = ""
> >>  EXTRA_LIBS_append_ti43x = "\
> >>diff --git a/meta-arago-extras/recipes-devtools/websocketd/websocketd.bb b/meta-arago-extras/recipes-devtools/websocketd/websocketd.bb
> >>new file mode 100644
> >>index 00000000..44f549ee
> >>--- /dev/null
> >>+++ b/meta-arago-extras/recipes-devtools/websocketd/websocketd.bb
> >>@@ -0,0 +1,16 @@
> >>+SUMMARY = "Application for routing native applications via websockets"
> >>+HOMEPAGE = "http://websocketd.com/"
> >>+
> >>+LICENSE = "BSD-2-Clause"
> >>+LIC_FILES_CHKSUM = "file://LICENSE;md5=a14d7befdbee1290ac5c472cd85d66f2"
> >>+
> >>+PV = "0.3.0"
> >>+SRC_URI = "https://github.com/joewalnes/websocketd/releases/download/v${PV}/websocketd-${PV}-linux_arm64.zip"
> >>+SRC_URI[md5sum] = "968c1ce4ed4fe5f86817f2533f5d3004"
> >>+
> >>+S = "${WORKDIR}"
> >>+
> >>+do_install() {
> >>+	install -d ${D}/${bindir}
> >>+	install -m 0755 ${S}/websocketd ${D}${bindir}/
> >>+}
> >>-- 
> >>2.17.1
> >>
> 


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

end of thread, other threads:[~2020-04-30 22:57 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-26 17:42 [zeus PATCH v1 1/2] recipes-devtools: websocketd: Add new recipe for websocket app nikhil.nd
2020-04-26 17:42 ` [zeus PATCH v1 2/2] recipes-devtools: statcol: New recipe for statistics collector nikhil.nd
2020-04-27 22:37   ` Denys Dmytriyenko
2020-04-29  7:00     ` Nikhil Devshatwar
2020-04-27 22:37 ` [zeus PATCH v1 1/2] recipes-devtools: websocketd: Add new recipe for websocket app Denys Dmytriyenko
2020-04-29  7:01   ` Nikhil Devshatwar
2020-04-30 22:55     ` Denys Dmytriyenko

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.