All of lore.kernel.org
 help / color / mirror / Atom feed
* [dunfell/master][PATCH v4] websocketd: Add new recipe
@ 2020-10-28 23:27 Denys Dmytriyenko
  2020-10-29 16:36 ` Dan Murphy
  2020-10-29 16:39 ` Nikhil Devshatwar
  0 siblings, 2 replies; 7+ messages in thread
From: Denys Dmytriyenko @ 2020-10-28 23:27 UTC (permalink / raw)
  To: meta-arago

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

websocketd is an application which allows to redirect output of
command line applications via a websocket so that web pages can
interact with them.

This is very useful for visualizing statistics information on
host machine browser.

Signed-off-by: Nikhil Devshatwar <nikhil.nd@ti.com>
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
---
v4 - export http_proxy with explanation

 .../recipes-devtools/websocketd/websocketd_0.3.1.bb    | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)
 create mode 100644 meta-arago-extras/recipes-devtools/websocketd/websocketd_0.3.1.bb

diff --git a/meta-arago-extras/recipes-devtools/websocketd/websocketd_0.3.1.bb b/meta-arago-extras/recipes-devtools/websocketd/websocketd_0.3.1.bb
new file mode 100644
index 0000000..d2f3387
--- /dev/null
+++ b/meta-arago-extras/recipes-devtools/websocketd/websocketd_0.3.1.bb
@@ -0,0 +1,18 @@
+SUMMARY = "Application for routing native applications via websockets"
+HOMEPAGE = "http://websocketd.com/"
+LICENSE = "BSD-2-Clause"
+LIC_FILES_CHKSUM = "file://src/${GO_IMPORT}/LICENSE;md5=a14d7befdbee1290ac5c472cd85d66f2"
+
+inherit go-mod
+
+GO_IMPORT = "github.com/joewalnes/websocketd"
+
+SRC_URI = "git://${GO_IMPORT}"
+SRCREV = "0440211d7862dc76b5f2499d7dfcd4ef6a9c2fa2"
+
+# bitbake only exports proxy variables during fetching, but go handles
+# module fetching on its own during compile and needs proxy settings
+export http_proxy
+
+# Development package contains all the examples in different languages
+INSANE_SKIP_${PN}-dev = "file-rdeps"
-- 
2.7.4



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

* Re: [dunfell/master][PATCH v4] websocketd: Add new recipe
  2020-10-28 23:27 [dunfell/master][PATCH v4] websocketd: Add new recipe Denys Dmytriyenko
@ 2020-10-29 16:36 ` Dan Murphy
  2020-10-29 17:15   ` Denys Dmytriyenko
  2020-10-29 16:39 ` Nikhil Devshatwar
  1 sibling, 1 reply; 7+ messages in thread
From: Dan Murphy @ 2020-10-29 16:36 UTC (permalink / raw)
  To: Denys Dmytriyenko, meta-arago

Nikhil

On 10/28/20 6:27 PM, Denys Dmytriyenko wrote:
> From: Nikhil Devshatwar <nikhil.nd@ti.com>
>
> websocketd is an application which allows to redirect output of
> command line applications via a websocket so that web pages can
> interact with them.
>
> This is very useful for visualizing statistics information on
> host machine browser.
>
> Signed-off-by: Nikhil Devshatwar <nikhil.nd@ti.com>
> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
> ---
> v4 - export http_proxy with explanation
>
>   .../recipes-devtools/websocketd/websocketd_0.3.1.bb    | 18 ++++++++++++++++++
>   1 file changed, 18 insertions(+)
>   create mode 100644 meta-arago-extras/recipes-devtools/websocketd/websocketd_0.3.1.bb
>
> diff --git a/meta-arago-extras/recipes-devtools/websocketd/websocketd_0.3.1.bb b/meta-arago-extras/recipes-devtools/websocketd/websocketd_0.3.1.bb
> new file mode 100644
> index 0000000..d2f3387
> --- /dev/null
> +++ b/meta-arago-extras/recipes-devtools/websocketd/websocketd_0.3.1.bb
> @@ -0,0 +1,18 @@
> +SUMMARY = "Application for routing native applications via websockets"
> +HOMEPAGE = "http://websocketd.com/"
> +LICENSE = "BSD-2-Clause"
> +LIC_FILES_CHKSUM = "file://src/${GO_IMPORT}/LICENSE;md5=a14d7befdbee1290ac5c472cd85d66f2"
> +
> +inherit go-mod
> +
> +GO_IMPORT = "github.com/joewalnes/websocketd"
> +
> +SRC_URI = "git://${GO_IMPORT}"
> +SRCREV = "0440211d7862dc76b5f2499d7dfcd4ef6a9c2fa2"
> +
> +# bitbake only exports proxy variables during fetching, but go handles
> +# module fetching on its own during compile and needs proxy settings
> +export http_proxy
> +
> +# Development package contains all the examples in different languages
> +INSANE_SKIP_${PN}-dev = "file-rdeps"

This looks fine to me but I think we should add the version we are 
checking out.

I mean this repo has not been updated in years but we should add the 
version so we know it is v0.3.1.

Dan



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

* Re: [dunfell/master][PATCH v4] websocketd: Add new recipe
  2020-10-28 23:27 [dunfell/master][PATCH v4] websocketd: Add new recipe Denys Dmytriyenko
  2020-10-29 16:36 ` Dan Murphy
@ 2020-10-29 16:39 ` Nikhil Devshatwar
  1 sibling, 0 replies; 7+ messages in thread
From: Nikhil Devshatwar @ 2020-10-29 16:39 UTC (permalink / raw)
  To: Denys Dmytriyenko; +Cc: meta-arago

On 19:27-20201028, Denys Dmytriyenko wrote:
> From: Nikhil Devshatwar <nikhil.nd@ti.com>
> 
> websocketd is an application which allows to redirect output of
> command line applications via a websocket so that web pages can
> interact with them.
> 
> This is very useful for visualizing statistics information on
> host machine browser.
> 
> Signed-off-by: Nikhil Devshatwar <nikhil.nd@ti.com>
> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
> ---
> v4 - export http_proxy with explanation

Thank you.
Tested-by: Nikhil Devshatwar <nikhil.nd@ti.com>

with am65xx-evm and dra7xx-evm

> 
>  .../recipes-devtools/websocketd/websocketd_0.3.1.bb    | 18 ++++++++++++++++++
>  1 file changed, 18 insertions(+)
>  create mode 100644 meta-arago-extras/recipes-devtools/websocketd/websocketd_0.3.1.bb
> 
> diff --git a/meta-arago-extras/recipes-devtools/websocketd/websocketd_0.3.1.bb b/meta-arago-extras/recipes-devtools/websocketd/websocketd_0.3.1.bb
> new file mode 100644
> index 0000000..d2f3387
> --- /dev/null
> +++ b/meta-arago-extras/recipes-devtools/websocketd/websocketd_0.3.1.bb
> @@ -0,0 +1,18 @@
> +SUMMARY = "Application for routing native applications via websockets"
> +HOMEPAGE = "http://websocketd.com/"
> +LICENSE = "BSD-2-Clause"
> +LIC_FILES_CHKSUM = "file://src/${GO_IMPORT}/LICENSE;md5=a14d7befdbee1290ac5c472cd85d66f2"
> +
> +inherit go-mod
> +
> +GO_IMPORT = "github.com/joewalnes/websocketd"
> +
> +SRC_URI = "git://${GO_IMPORT}"
> +SRCREV = "0440211d7862dc76b5f2499d7dfcd4ef6a9c2fa2"
> +
> +# bitbake only exports proxy variables during fetching, but go handles
> +# module fetching on its own during compile and needs proxy settings
> +export http_proxy
> +
> +# Development package contains all the examples in different languages
> +INSANE_SKIP_${PN}-dev = "file-rdeps"
> -- 
> 2.7.4
> 


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

* Re: [dunfell/master][PATCH v4] websocketd: Add new recipe
  2020-10-29 16:36 ` Dan Murphy
@ 2020-10-29 17:15   ` Denys Dmytriyenko
  2020-10-29 19:38     ` Dan Murphy
  0 siblings, 1 reply; 7+ messages in thread
From: Denys Dmytriyenko @ 2020-10-29 17:15 UTC (permalink / raw)
  To: Dan Murphy; +Cc: meta-arago

On Thu, Oct 29, 2020 at 11:36:45AM -0500, Dan Murphy wrote:
> Nikhil
> 
> On 10/28/20 6:27 PM, Denys Dmytriyenko wrote:
> >From: Nikhil Devshatwar <nikhil.nd@ti.com>
> >
> >websocketd is an application which allows to redirect output of
> >command line applications via a websocket so that web pages can
> >interact with them.
> >
> >This is very useful for visualizing statistics information on
> >host machine browser.
> >
> >Signed-off-by: Nikhil Devshatwar <nikhil.nd@ti.com>
> >Signed-off-by: Denys Dmytriyenko <denys@ti.com>
> >---
> >v4 - export http_proxy with explanation
> >
> >  .../recipes-devtools/websocketd/websocketd_0.3.1.bb    | 18 ++++++++++++++++++
> >  1 file changed, 18 insertions(+)
> >  create mode 100644 meta-arago-extras/recipes-devtools/websocketd/websocketd_0.3.1.bb
> >
> >diff --git a/meta-arago-extras/recipes-devtools/websocketd/websocketd_0.3.1.bb b/meta-arago-extras/recipes-devtools/websocketd/websocketd_0.3.1.bb
> >new file mode 100644
> >index 0000000..d2f3387
> >--- /dev/null
> >+++ b/meta-arago-extras/recipes-devtools/websocketd/websocketd_0.3.1.bb
> >@@ -0,0 +1,18 @@
> >+SUMMARY = "Application for routing native applications via websockets"
> >+HOMEPAGE = "http://websocketd.com/"
> >+LICENSE = "BSD-2-Clause"
> >+LIC_FILES_CHKSUM = "file://src/${GO_IMPORT}/LICENSE;md5=a14d7befdbee1290ac5c472cd85d66f2"
> >+
> >+inherit go-mod
> >+
> >+GO_IMPORT = "github.com/joewalnes/websocketd"
> >+
> >+SRC_URI = "git://${GO_IMPORT}"
> >+SRCREV = "0440211d7862dc76b5f2499d7dfcd4ef6a9c2fa2"
> >+
> >+# bitbake only exports proxy variables during fetching, but go handles
> >+# module fetching on its own during compile and needs proxy settings
> >+export http_proxy
> >+
> >+# Development package contains all the examples in different languages
> >+INSANE_SKIP_${PN}-dev = "file-rdeps"
> 
> This looks fine to me but I think we should add the version we are checking
> out.
> 
> I mean this repo has not been updated in years but we should add the version
> so we know it is v0.3.1.

SRCREV above corresponds to v0.3.1 tag. While you could use the tag directly, 
it's not recommended and it's better to use specific commit SHA directly in 
the recipes, even if it's the same as the tag.

The only benefit of using the tag in SRCREV is developer convenience.

There are several drawbacks though:

* tag could move, so someone else using your recipe could get a completely 
different output, not what you expected or intended

* tag needs to be resolved against the origin git server on every bitbake 
parse, regardless if you have local sources cached or stored on a mirror. 
That requires network connection, proxies setup, etc. for every time you 
run bitbake. And some customers require isolated no-network builds when all 
the sources are available locally

* and from integration/release perspective there's less control of the build 
and results due to the above - images, packages, sstate could change. Not an 
issue for nightly builds, but could be a major issue for reproducible releases

-- 
Denys


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

* Re: [dunfell/master][PATCH v4] websocketd: Add new recipe
  2020-10-29 17:15   ` Denys Dmytriyenko
@ 2020-10-29 19:38     ` Dan Murphy
  2020-10-29 19:42       ` Denys Dmytriyenko
  0 siblings, 1 reply; 7+ messages in thread
From: Dan Murphy @ 2020-10-29 19:38 UTC (permalink / raw)
  To: Denys Dmytriyenko; +Cc: meta-arago

Denys

On 10/29/20 12:15 PM, Denys Dmytriyenko wrote:
> On Thu, Oct 29, 2020 at 11:36:45AM -0500, Dan Murphy wrote:
>> Nikhil
>>
>> On 10/28/20 6:27 PM, Denys Dmytriyenko wrote:
>>> From: Nikhil Devshatwar <nikhil.nd@ti.com>
>>>
>>> websocketd is an application which allows to redirect output of
>>> command line applications via a websocket so that web pages can
>>> interact with them.
>>>
>>> This is very useful for visualizing statistics information on
>>> host machine browser.
>>>
>>> Signed-off-by: Nikhil Devshatwar <nikhil.nd@ti.com>
>>> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
>>> ---
>>> v4 - export http_proxy with explanation
>>>
>>>   .../recipes-devtools/websocketd/websocketd_0.3.1.bb    | 18 ++++++++++++++++++
>>>   1 file changed, 18 insertions(+)
>>>   create mode 100644 meta-arago-extras/recipes-devtools/websocketd/websocketd_0.3.1.bb
>>>
>>> diff --git a/meta-arago-extras/recipes-devtools/websocketd/websocketd_0.3.1.bb b/meta-arago-extras/recipes-devtools/websocketd/websocketd_0.3.1.bb
>>> new file mode 100644
>>> index 0000000..d2f3387
>>> --- /dev/null
>>> +++ b/meta-arago-extras/recipes-devtools/websocketd/websocketd_0.3.1.bb
>>> @@ -0,0 +1,18 @@
>>> +SUMMARY = "Application for routing native applications via websockets"
>>> +HOMEPAGE = "http://websocketd.com/"
>>> +LICENSE = "BSD-2-Clause"
>>> +LIC_FILES_CHKSUM = "file://src/${GO_IMPORT}/LICENSE;md5=a14d7befdbee1290ac5c472cd85d66f2"
>>> +
>>> +inherit go-mod
>>> +
>>> +GO_IMPORT = "github.com/joewalnes/websocketd"
>>> +
>>> +SRC_URI = "git://${GO_IMPORT}"
>>> +SRCREV = "0440211d7862dc76b5f2499d7dfcd4ef6a9c2fa2"
>>> +
>>> +# bitbake only exports proxy variables during fetching, but go handles
>>> +# module fetching on its own during compile and needs proxy settings
>>> +export http_proxy
>>> +
>>> +# Development package contains all the examples in different languages
>>> +INSANE_SKIP_${PN}-dev = "file-rdeps"
>> This looks fine to me but I think we should add the version we are checking
>> out.
>>
>> I mean this repo has not been updated in years but we should add the version
>> so we know it is v0.3.1.
> SRCREV above corresponds to v0.3.1 tag. While you could use the tag directly,
> it's not recommended and it's better to use specific commit SHA directly in
> the recipes, even if it's the same as the tag.
>
> The only benefit of using the tag in SRCREV is developer convenience.
>
> There are several drawbacks though:
>
> * tag could move, so someone else using your recipe could get a completely
> different output, not what you expected or intended
>
> * tag needs to be resolved against the origin git server on every bitbake
> parse, regardless if you have local sources cached or stored on a mirror.
> That requires network connection, proxies setup, etc. for every time you
> run bitbake. And some customers require isolated no-network builds when all
> the sources are available locally
>
> * and from integration/release perspective there's less control of the build
> and results due to the above - images, packages, sstate could change. Not an
> issue for nightly builds, but could be a major issue for reproducible releases
>
No I was suggesting just adding

PV = "v0.3.1" to the recipe. Still use the SHA but just document the version

Dan



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

* Re: [dunfell/master][PATCH v4] websocketd: Add new recipe
  2020-10-29 19:38     ` Dan Murphy
@ 2020-10-29 19:42       ` Denys Dmytriyenko
  2020-10-29 20:04         ` Dan Murphy
  0 siblings, 1 reply; 7+ messages in thread
From: Denys Dmytriyenko @ 2020-10-29 19:42 UTC (permalink / raw)
  To: Dan Murphy; +Cc: meta-arago

On Thu, Oct 29, 2020 at 02:38:34PM -0500, Dan Murphy wrote:
> Denys
> 
> On 10/29/20 12:15 PM, Denys Dmytriyenko wrote:
> >On Thu, Oct 29, 2020 at 11:36:45AM -0500, Dan Murphy wrote:
> >>Nikhil
> >>
> >>On 10/28/20 6:27 PM, Denys Dmytriyenko wrote:
> >>>From: Nikhil Devshatwar <nikhil.nd@ti.com>
> >>>
> >>>websocketd is an application which allows to redirect output of
> >>>command line applications via a websocket so that web pages can
> >>>interact with them.
> >>>
> >>>This is very useful for visualizing statistics information on
> >>>host machine browser.
> >>>
> >>>Signed-off-by: Nikhil Devshatwar <nikhil.nd@ti.com>
> >>>Signed-off-by: Denys Dmytriyenko <denys@ti.com>
> >>>---
> >>>v4 - export http_proxy with explanation
> >>>
> >>>  .../recipes-devtools/websocketd/websocketd_0.3.1.bb    | 18 ++++++++++++++++++
> >>>  1 file changed, 18 insertions(+)
> >>>  create mode 100644 meta-arago-extras/recipes-devtools/websocketd/websocketd_0.3.1.bb
> >>>
> >>>diff --git a/meta-arago-extras/recipes-devtools/websocketd/websocketd_0.3.1.bb b/meta-arago-extras/recipes-devtools/websocketd/websocketd_0.3.1.bb
> >>>new file mode 100644
> >>>index 0000000..d2f3387
> >>>--- /dev/null
> >>>+++ b/meta-arago-extras/recipes-devtools/websocketd/websocketd_0.3.1.bb
> >>>@@ -0,0 +1,18 @@
> >>>+SUMMARY = "Application for routing native applications via websockets"
> >>>+HOMEPAGE = "http://websocketd.com/"
> >>>+LICENSE = "BSD-2-Clause"
> >>>+LIC_FILES_CHKSUM = "file://src/${GO_IMPORT}/LICENSE;md5=a14d7befdbee1290ac5c472cd85d66f2"
> >>>+
> >>>+inherit go-mod
> >>>+
> >>>+GO_IMPORT = "github.com/joewalnes/websocketd"
> >>>+
> >>>+SRC_URI = "git://${GO_IMPORT}"
> >>>+SRCREV = "0440211d7862dc76b5f2499d7dfcd4ef6a9c2fa2"
> >>>+
> >>>+# bitbake only exports proxy variables during fetching, but go handles
> >>>+# module fetching on its own during compile and needs proxy settings
> >>>+export http_proxy
> >>>+
> >>>+# Development package contains all the examples in different languages
> >>>+INSANE_SKIP_${PN}-dev = "file-rdeps"
> >>This looks fine to me but I think we should add the version we are checking
> >>out.
> >>
> >>I mean this repo has not been updated in years but we should add the version
> >>so we know it is v0.3.1.
> >SRCREV above corresponds to v0.3.1 tag. While you could use the tag directly,
> >it's not recommended and it's better to use specific commit SHA directly in
> >the recipes, even if it's the same as the tag.
> >
> >The only benefit of using the tag in SRCREV is developer convenience.
> >
> >There are several drawbacks though:
> >
> >* tag could move, so someone else using your recipe could get a completely
> >different output, not what you expected or intended
> >
> >* tag needs to be resolved against the origin git server on every bitbake
> >parse, regardless if you have local sources cached or stored on a mirror.
> >That requires network connection, proxies setup, etc. for every time you
> >run bitbake. And some customers require isolated no-network builds when all
> >the sources are available locally
> >
> >* and from integration/release perspective there's less control of the build
> >and results due to the above - images, packages, sstate could change. Not an
> >issue for nightly builds, but could be a major issue for reproducible releases
> >
> No I was suggesting just adding
> 
> PV = "v0.3.1" to the recipe. Still use the SHA but just document the version

No, the filename already sets it to "0.3.1".

-- 
Denys


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

* Re: [dunfell/master][PATCH v4] websocketd: Add new recipe
  2020-10-29 19:42       ` Denys Dmytriyenko
@ 2020-10-29 20:04         ` Dan Murphy
  0 siblings, 0 replies; 7+ messages in thread
From: Dan Murphy @ 2020-10-29 20:04 UTC (permalink / raw)
  To: Denys Dmytriyenko; +Cc: meta-arago

Denys

On 10/29/20 2:42 PM, Denys Dmytriyenko wrote:
> On Thu, Oct 29, 2020 at 02:38:34PM -0500, Dan Murphy wrote:
>> Denys
>>
>> On 10/29/20 12:15 PM, Denys Dmytriyenko wrote:
>>> On Thu, Oct 29, 2020 at 11:36:45AM -0500, Dan Murphy wrote:
>>>> Nikhil
>>>>
>>>> On 10/28/20 6:27 PM, Denys Dmytriyenko wrote:
>>>>> From: Nikhil Devshatwar <nikhil.nd@ti.com>
>>>>>
>>>>> websocketd is an application which allows to redirect output of
>>>>> command line applications via a websocket so that web pages can
>>>>> interact with them.
>>>>>
>>>>> This is very useful for visualizing statistics information on
>>>>> host machine browser.
>>>>>
>>>>> Signed-off-by: Nikhil Devshatwar <nikhil.nd@ti.com>
>>>>> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
>>>>> ---
>>>>> v4 - export http_proxy with explanation
>>>>>
>>>>>   .../recipes-devtools/websocketd/websocketd_0.3.1.bb    | 18 ++++++++++++++++++
>>>>>   1 file changed, 18 insertions(+)
>>>>>   create mode 100644 meta-arago-extras/recipes-devtools/websocketd/websocketd_0.3.1.bb
>>>>>
>>>>> diff --git a/meta-arago-extras/recipes-devtools/websocketd/websocketd_0.3.1.bb b/meta-arago-extras/recipes-devtools/websocketd/websocketd_0.3.1.bb
>>>>> new file mode 100644
>>>>> index 0000000..d2f3387
>>>>> --- /dev/null
>>>>> +++ b/meta-arago-extras/recipes-devtools/websocketd/websocketd_0.3.1.bb
>>>>> @@ -0,0 +1,18 @@
>>>>> +SUMMARY = "Application for routing native applications via websockets"
>>>>> +HOMEPAGE = "http://websocketd.com/"
>>>>> +LICENSE = "BSD-2-Clause"
>>>>> +LIC_FILES_CHKSUM = "file://src/${GO_IMPORT}/LICENSE;md5=a14d7befdbee1290ac5c472cd85d66f2"
>>>>> +
>>>>> +inherit go-mod
>>>>> +
>>>>> +GO_IMPORT = "github.com/joewalnes/websocketd"
>>>>> +
>>>>> +SRC_URI = "git://${GO_IMPORT}"
>>>>> +SRCREV = "0440211d7862dc76b5f2499d7dfcd4ef6a9c2fa2"
>>>>> +
>>>>> +# bitbake only exports proxy variables during fetching, but go handles
>>>>> +# module fetching on its own during compile and needs proxy settings
>>>>> +export http_proxy
>>>>> +
>>>>> +# Development package contains all the examples in different languages
>>>>> +INSANE_SKIP_${PN}-dev = "file-rdeps"
>>>> This looks fine to me but I think we should add the version we are checking
>>>> out.
>>>>
>>>> I mean this repo has not been updated in years but we should add the version
>>>> so we know it is v0.3.1.
>>> SRCREV above corresponds to v0.3.1 tag. While you could use the tag directly,
>>> it's not recommended and it's better to use specific commit SHA directly in
>>> the recipes, even if it's the same as the tag.
>>>
>>> The only benefit of using the tag in SRCREV is developer convenience.
>>>
>>> There are several drawbacks though:
>>>
>>> * tag could move, so someone else using your recipe could get a completely
>>> different output, not what you expected or intended
>>>
>>> * tag needs to be resolved against the origin git server on every bitbake
>>> parse, regardless if you have local sources cached or stored on a mirror.
>>> That requires network connection, proxies setup, etc. for every time you
>>> run bitbake. And some customers require isolated no-network builds when all
>>> the sources are available locally
>>>
>>> * and from integration/release perspective there's less control of the build
>>> and results due to the above - images, packages, sstate could change. Not an
>>> issue for nightly builds, but could be a major issue for reproducible releases
>>>
>> No I was suggesting just adding
>>
>> PV = "v0.3.1" to the recipe. Still use the SHA but just document the version
> No, the filename already sets it to "0.3.1".
>
I see I overlooked the file name.

Dan



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

end of thread, other threads:[~2020-10-29 20:07 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-28 23:27 [dunfell/master][PATCH v4] websocketd: Add new recipe Denys Dmytriyenko
2020-10-29 16:36 ` Dan Murphy
2020-10-29 17:15   ` Denys Dmytriyenko
2020-10-29 19:38     ` Dan Murphy
2020-10-29 19:42       ` Denys Dmytriyenko
2020-10-29 20:04         ` Dan Murphy
2020-10-29 16:39 ` Nikhil Devshatwar

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.