All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-oe][PATCH] meta-oe: recipes-connectivity: add relayd recipe
@ 2015-09-30  9:33 Ioan-Adrian Ratiu
  2015-09-30  9:38 ` Martin Jansa
                   ` (3 more replies)
  0 siblings, 4 replies; 7+ messages in thread
From: Ioan-Adrian Ratiu @ 2015-09-30  9:33 UTC (permalink / raw)
  To: openembedded-devel

relayd is a daemon to relay and dynamically redirect incoming
connections to a target host.

Signed-off-by: Ioan-Adrian Ratiu <adrian.ratiu@ni.com>
---
 meta-oe/recipes-connectivity/relayd/relayd_git.bb | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)
 create mode 100644 meta-oe/recipes-connectivity/relayd/relayd_git.bb

diff --git a/meta-oe/recipes-connectivity/relayd/relayd_git.bb b/meta-oe/recipes-connectivity/relayd/relayd_git.bb
new file mode 100644
index 0000000..15fba0c
--- /dev/null
+++ b/meta-oe/recipes-connectivity/relayd/relayd_git.bb
@@ -0,0 +1,18 @@
+DESCRIPTION = "Layer 3 relay daemon"
+SECTION = "console/network"
+LICENSE = "relayd-custom-license"
+LIC_FILES_CHKSUM = "file://main.c;endline=17;md5=86aad799085683e0a2e1c2684a20bab2"
+PR = "r0"
+
+DEPENDS = "libubox"
+RDEPENDS_${PN} = "libubox"
+
+SRC_URI = "git://nbd.name/relayd.git;protocol=git;branch=master"
+
+SRCREV = "2970ff60bac6b70ecb682779d5c776dc559dc0b9"
+
+S = "${WORKDIR}/git"
+
+inherit cmake
+
+INSANE_SKIP_relayd += "dev-deps"
-- 
2.1.4



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

* Re: [meta-oe][PATCH] meta-oe: recipes-connectivity: add relayd recipe
  2015-09-30  9:33 [meta-oe][PATCH] meta-oe: recipes-connectivity: add relayd recipe Ioan-Adrian Ratiu
@ 2015-09-30  9:38 ` Martin Jansa
  2015-09-30 11:01   ` Ioan-Adrian Ratiu
  2015-09-30 11:03 ` [meta-oe][PATCH] meta-networking: " Ioan-Adrian Ratiu
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 7+ messages in thread
From: Martin Jansa @ 2015-09-30  9:38 UTC (permalink / raw)
  To: openembedded-devel

Why not meta-networking? Don't use INSANE_SKIP, this should be fixed, drop
PR, is RDEPENDS really needed? Drop protocol and branch from the SRC_URI
(default values).

On Wed, Sep 30, 2015 at 11:33 AM, Ioan-Adrian Ratiu <adrian.ratiu@ni.com>
wrote:

> relayd is a daemon to relay and dynamically redirect incoming
> connections to a target host.
>
> Signed-off-by: Ioan-Adrian Ratiu <adrian.ratiu@ni.com>
> ---
>  meta-oe/recipes-connectivity/relayd/relayd_git.bb | 18 ++++++++++++++++++
>  1 file changed, 18 insertions(+)
>  create mode 100644 meta-oe/recipes-connectivity/relayd/relayd_git.bb
>
> diff --git a/meta-oe/recipes-connectivity/relayd/relayd_git.bb
> b/meta-oe/recipes-connectivity/relayd/relayd_git.bb
> new file mode 100644
> index 0000000..15fba0c
> --- /dev/null
> +++ b/meta-oe/recipes-connectivity/relayd/relayd_git.bb
> @@ -0,0 +1,18 @@
> +DESCRIPTION = "Layer 3 relay daemon"
> +SECTION = "console/network"
> +LICENSE = "relayd-custom-license"
> +LIC_FILES_CHKSUM =
> "file://main.c;endline=17;md5=86aad799085683e0a2e1c2684a20bab2"
> +PR = "r0"
> +
> +DEPENDS = "libubox"
> +RDEPENDS_${PN} = "libubox"
> +
> +SRC_URI = "git://nbd.name/relayd.git;protocol=git;branch=master"
> +
> +SRCREV = "2970ff60bac6b70ecb682779d5c776dc559dc0b9"
> +
> +S = "${WORKDIR}/git"
> +
> +inherit cmake
> +
> +INSANE_SKIP_relayd += "dev-deps"
> --
> 2.1.4
>
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
>


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

* Re: [meta-oe][PATCH] meta-oe: recipes-connectivity: add relayd recipe
  2015-09-30  9:38 ` Martin Jansa
@ 2015-09-30 11:01   ` Ioan-Adrian Ratiu
  0 siblings, 0 replies; 7+ messages in thread
From: Ioan-Adrian Ratiu @ 2015-09-30 11:01 UTC (permalink / raw)
  To: openembedded-devel

On 30.09.2015 12:38, Martin Jansa wrote:
> Why not meta-networking? Don't use INSANE_SKIP, this should be fixed, drop
> PR, is RDEPENDS really needed? Drop protocol and branch from the SRC_URI
> (default values).

Thank you for the feedback. I'll apply these changes and resubmit.
I'll also modify the libubox patch with these suggestions.


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

* [meta-oe][PATCH] meta-networking: recipes-connectivity: add relayd recipe
  2015-09-30  9:33 [meta-oe][PATCH] meta-oe: recipes-connectivity: add relayd recipe Ioan-Adrian Ratiu
  2015-09-30  9:38 ` Martin Jansa
@ 2015-09-30 11:03 ` Ioan-Adrian Ratiu
  2015-09-30 15:26   ` Khem Raj
  2015-09-30 11:04 ` [meta-oe][PATCH V2] " Ioan-Adrian Ratiu
  2015-10-01 14:21 ` [meta-oe][PATCH V3] " Ioan-Adrian Ratiu
  3 siblings, 1 reply; 7+ messages in thread
From: Ioan-Adrian Ratiu @ 2015-09-30 11:03 UTC (permalink / raw)
  To: openembedded-devel

relayd is a daemon to relay and dynamically redirect incoming
connections to a target host.

Signed-off-by: Ioan-Adrian Ratiu <adrian.ratiu@ni.com>
---
 meta-networking/recipes-connectivity/relayd/relayd_git.bb | 14 ++++++++++++++
 1 file changed, 14 insertions(+)
 create mode 100644 meta-networking/recipes-connectivity/relayd/relayd_git.bb

diff --git a/meta-networking/recipes-connectivity/relayd/relayd_git.bb b/meta-networking/recipes-connectivity/relayd/relayd_git.bb
new file mode 100644
index 0000000..9ca04c4
--- /dev/null
+++ b/meta-networking/recipes-connectivity/relayd/relayd_git.bb
@@ -0,0 +1,14 @@
+DESCRIPTION = "Layer 3 relay daemon"
+SECTION = "console/network"
+LICENSE = "relayd-custom-license"
+LIC_FILES_CHKSUM = "file://main.c;endline=17;md5=86aad799085683e0a2e1c2684a20bab2"
+
+DEPENDS = "libubox"
+
+SRC_URI = "git://nbd.name/relayd.git"
+
+SRCREV = "2970ff60bac6b70ecb682779d5c776dc559dc0b9"
+
+S = "${WORKDIR}/git"
+
+inherit cmake
-- 
2.1.4



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

* [meta-oe][PATCH V2] meta-networking: recipes-connectivity: add relayd recipe
  2015-09-30  9:33 [meta-oe][PATCH] meta-oe: recipes-connectivity: add relayd recipe Ioan-Adrian Ratiu
  2015-09-30  9:38 ` Martin Jansa
  2015-09-30 11:03 ` [meta-oe][PATCH] meta-networking: " Ioan-Adrian Ratiu
@ 2015-09-30 11:04 ` Ioan-Adrian Ratiu
  2015-10-01 14:21 ` [meta-oe][PATCH V3] " Ioan-Adrian Ratiu
  3 siblings, 0 replies; 7+ messages in thread
From: Ioan-Adrian Ratiu @ 2015-09-30 11:04 UTC (permalink / raw)
  To: openembedded-devel

relayd is a daemon to relay and dynamically redirect incoming
connections to a target host.

Signed-off-by: Ioan-Adrian Ratiu <adrian.ratiu@ni.com>
---
 meta-networking/recipes-connectivity/relayd/relayd_git.bb | 14 ++++++++++++++
 1 file changed, 14 insertions(+)
 create mode 100644 meta-networking/recipes-connectivity/relayd/relayd_git.bb

diff --git a/meta-networking/recipes-connectivity/relayd/relayd_git.bb b/meta-networking/recipes-connectivity/relayd/relayd_git.bb
new file mode 100644
index 0000000..9ca04c4
--- /dev/null
+++ b/meta-networking/recipes-connectivity/relayd/relayd_git.bb
@@ -0,0 +1,14 @@
+DESCRIPTION = "Layer 3 relay daemon"
+SECTION = "console/network"
+LICENSE = "relayd-custom-license"
+LIC_FILES_CHKSUM = "file://main.c;endline=17;md5=86aad799085683e0a2e1c2684a20bab2"
+
+DEPENDS = "libubox"
+
+SRC_URI = "git://nbd.name/relayd.git"
+
+SRCREV = "2970ff60bac6b70ecb682779d5c776dc559dc0b9"
+
+S = "${WORKDIR}/git"
+
+inherit cmake
-- 
2.1.4



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

* Re: [meta-oe][PATCH] meta-networking: recipes-connectivity: add relayd recipe
  2015-09-30 11:03 ` [meta-oe][PATCH] meta-networking: " Ioan-Adrian Ratiu
@ 2015-09-30 15:26   ` Khem Raj
  0 siblings, 0 replies; 7+ messages in thread
From: Khem Raj @ 2015-09-30 15:26 UTC (permalink / raw)
  To: Martin Jansa

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


> On Sep 30, 2015, at 4:03 AM, Ioan-Adrian Ratiu <adrian.ratiu@ni.com> wrote:
> 
> relayd is a daemon to relay and dynamically redirect incoming
> connections to a target host.
> 
> Signed-off-by: Ioan-Adrian Ratiu <adrian.ratiu@ni.com>
> ---
> meta-networking/recipes-connectivity/relayd/relayd_git.bb | 14 ++++++++++++++
> 1 file changed, 14 insertions(+)
> create mode 100644 meta-networking/recipes-connectivity/relayd/relayd_git.bb
> 
> diff --git a/meta-networking/recipes-connectivity/relayd/relayd_git.bb b/meta-networking/recipes-connectivity/relayd/relayd_git.bb
> new file mode 100644
> index 0000000..9ca04c4
> --- /dev/null
> +++ b/meta-networking/recipes-connectivity/relayd/relayd_git.bb
> @@ -0,0 +1,14 @@
> +DESCRIPTION = "Layer 3 relay daemon"
> +SECTION = "console/network"
> +LICENSE = "relays-custom-license"

can you add this file to list of licenses too?

> +LIC_FILES_CHKSUM = "file://main.c;endline=17;md5=86aad799085683e0a2e1c2684a20bab2"
> +
> +DEPENDS = "libubox"
> +
> +SRC_URI = "git://nbd.name/relayd.git"
> +
> +SRCREV = "2970ff60bac6b70ecb682779d5c776dc559dc0b9"
> +
> +S = "${WORKDIR}/git"
> +
> +inherit cmake
> --
> 2.1.4
> 
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[-- Attachment #2: Message signed with OpenPGP using GPGMail --]
[-- Type: application/pgp-signature, Size: 211 bytes --]

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

* [meta-oe][PATCH V3] meta-networking: recipes-connectivity: add relayd recipe
  2015-09-30  9:33 [meta-oe][PATCH] meta-oe: recipes-connectivity: add relayd recipe Ioan-Adrian Ratiu
                   ` (2 preceding siblings ...)
  2015-09-30 11:04 ` [meta-oe][PATCH V2] " Ioan-Adrian Ratiu
@ 2015-10-01 14:21 ` Ioan-Adrian Ratiu
  3 siblings, 0 replies; 7+ messages in thread
From: Ioan-Adrian Ratiu @ 2015-10-01 14:21 UTC (permalink / raw)
  To: openembedded-devel

relayd is a daemon to relay and dynamically redirect incoming
connections to a target host.

Signed-off-by: Ioan-Adrian Ratiu <adrian.ratiu@ni.com>
---
 meta-networking/recipes-connectivity/relayd/relayd_git.bb | 14 ++++++++++++++
 1 file changed, 14 insertions(+)
 create mode 100644 meta-networking/recipes-connectivity/relayd/relayd_git.bb

diff --git a/meta-networking/recipes-connectivity/relayd/relayd_git.bb b/meta-networking/recipes-connectivity/relayd/relayd_git.bb
new file mode 100644
index 0000000..aab2ab5
--- /dev/null
+++ b/meta-networking/recipes-connectivity/relayd/relayd_git.bb
@@ -0,0 +1,14 @@
+DESCRIPTION = "Layer 3 relay daemon"
+SECTION = "console/network"
+LICENSE = "GPLv2"
+LIC_FILES_CHKSUM = "file://main.c;endline=17;md5=86aad799085683e0a2e1c2684a20bab2"
+
+DEPENDS = "libubox"
+
+SRC_URI = "git://nbd.name/relayd.git"
+
+SRCREV = "2970ff60bac6b70ecb682779d5c776dc559dc0b9"
+
+S = "${WORKDIR}/git"
+
+inherit cmake
-- 
2.1.4



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

end of thread, other threads:[~2015-10-01 14:21 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-30  9:33 [meta-oe][PATCH] meta-oe: recipes-connectivity: add relayd recipe Ioan-Adrian Ratiu
2015-09-30  9:38 ` Martin Jansa
2015-09-30 11:01   ` Ioan-Adrian Ratiu
2015-09-30 11:03 ` [meta-oe][PATCH] meta-networking: " Ioan-Adrian Ratiu
2015-09-30 15:26   ` Khem Raj
2015-09-30 11:04 ` [meta-oe][PATCH V2] " Ioan-Adrian Ratiu
2015-10-01 14:21 ` [meta-oe][PATCH V3] " Ioan-Adrian Ratiu

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.