All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] bt-obex: Port recipe from arago
@ 2012-10-05  6:41 Franklin S. Cooper Jr
  2012-10-05 12:24 ` Maupin, Chase
  2012-10-05 16:11 ` Denys Dmytriyenko
  0 siblings, 2 replies; 3+ messages in thread
From: Franklin S. Cooper Jr @ 2012-10-05  6:41 UTC (permalink / raw)
  To: meta-arago

* Port recipe from Arago.
Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
---
 .../recipes-connectivity/bt-obex/bt-obex.bb        |   33 ++++++++++++++++++++
 1 files changed, 33 insertions(+), 0 deletions(-)
 create mode 100644 meta-arago-extras/recipes-connectivity/bt-obex/bt-obex.bb

diff --git a/meta-arago-extras/recipes-connectivity/bt-obex/bt-obex.bb b/meta-arago-extras/recipes-connectivity/bt-obex/bt-obex.bb
new file mode 100644
index 0000000..594e5bc
--- /dev/null
+++ b/meta-arago-extras/recipes-connectivity/bt-obex/bt-obex.bb
@@ -0,0 +1,33 @@
+DESCRIPTION = "BT Obex - Agentfor OBEXD (OPP/FTP profile)"
+LICENSE = "GPLv2"
+LIC_FILES_CHKSUM = "file://COPYING;md5=12f884d2ae1ff87c09e5b7ccc2c4ca7e"
+
+RDEPENDS += "bluez4"
+DEPENDS += "glib-2.0 dbus-glib"
+
+PR = "r0+gitr${SRCREV}"
+
+SRCREV = "171181b6ef6c94aefc828dc7fd8de136b9f97532"
+
+SRC_URI = "git://gitorious.org/bluez-tools/bluez-tools.git;protocol=git \
+          "
+
+S = "${WORKDIR}/git"
+
+inherit autotools
+
+do_install() {
+       install -d ${D}${bindir}
+       install -m 755 ${S}/src/bt-adapter ${D}${bindir}
+       install -m 755 ${S}/src/bt-agent   ${D}${bindir}
+       install -m 755 ${S}/src/bt-audio   ${D}${bindir}
+       install -m 755 ${S}/src/bt-device  ${D}${bindir}
+       install -m 755 ${S}/src/bt-input   ${D}${bindir}
+       install -m 755 ${S}/src/bt-monitor ${D}${bindir}
+       install -m 755 ${S}/src/bt-network ${D}${bindir}
+       install -m 755 ${S}/src/bt-obex    ${D}${bindir}
+       install -m 755 ${S}/src/bt-serial  ${D}${bindir}
+}
+
+SRC_URI[md5sum] = "36080a767e63e54878cd6bcfb20c4f3b"
+SRC_URI[sha256sum] = "f99fb58562a3d7edef6fd9e63ca04510e241bbdab37fdb122c2c7a112a09100a"
-- 
1.7.0.4



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

* Re: [PATCH] bt-obex: Port recipe from arago
  2012-10-05  6:41 [PATCH] bt-obex: Port recipe from arago Franklin S. Cooper Jr
@ 2012-10-05 12:24 ` Maupin, Chase
  2012-10-05 16:11 ` Denys Dmytriyenko
  1 sibling, 0 replies; 3+ messages in thread
From: Maupin, Chase @ 2012-10-05 12:24 UTC (permalink / raw)
  To: Franklin S. Cooper Jr, meta-arago

Acked-by: Chase Maupin <chase.maupin@ti.com>

> -----Original Message-----
> From: meta-arago-bounces@arago-project.org [mailto:meta-arago-
> bounces@arago-project.org] On Behalf Of Franklin S. Cooper Jr
> Sent: Friday, October 05, 2012 1:42 AM
> To: meta-arago@arago-project.org
> Subject: [meta-arago] [PATCH] bt-obex: Port recipe from arago
> 
> * Port recipe from Arago.
> Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
> ---
>  .../recipes-connectivity/bt-obex/bt-obex.bb        |   33
> ++++++++++++++++++++
>  1 files changed, 33 insertions(+), 0 deletions(-)
>  create mode 100644 meta-arago-extras/recipes-connectivity/bt-
> obex/bt-obex.bb
> 
> diff --git a/meta-arago-extras/recipes-connectivity/bt-obex/bt-
> obex.bb b/meta-arago-extras/recipes-connectivity/bt-obex/bt-
> obex.bb
> new file mode 100644
> index 0000000..594e5bc
> --- /dev/null
> +++ b/meta-arago-extras/recipes-connectivity/bt-obex/bt-obex.bb
> @@ -0,0 +1,33 @@
> +DESCRIPTION = "BT Obex - Agentfor OBEXD (OPP/FTP profile)"
> +LICENSE = "GPLv2"
> +LIC_FILES_CHKSUM =
> "file://COPYING;md5=12f884d2ae1ff87c09e5b7ccc2c4ca7e"
> +
> +RDEPENDS += "bluez4"
> +DEPENDS += "glib-2.0 dbus-glib"
> +
> +PR = "r0+gitr${SRCREV}"
> +
> +SRCREV = "171181b6ef6c94aefc828dc7fd8de136b9f97532"
> +
> +SRC_URI = "git://gitorious.org/bluez-tools/bluez-
> tools.git;protocol=git \
> +          "
> +
> +S = "${WORKDIR}/git"
> +
> +inherit autotools
> +
> +do_install() {
> +       install -d ${D}${bindir}
> +       install -m 755 ${S}/src/bt-adapter ${D}${bindir}
> +       install -m 755 ${S}/src/bt-agent   ${D}${bindir}
> +       install -m 755 ${S}/src/bt-audio   ${D}${bindir}
> +       install -m 755 ${S}/src/bt-device  ${D}${bindir}
> +       install -m 755 ${S}/src/bt-input   ${D}${bindir}
> +       install -m 755 ${S}/src/bt-monitor ${D}${bindir}
> +       install -m 755 ${S}/src/bt-network ${D}${bindir}
> +       install -m 755 ${S}/src/bt-obex    ${D}${bindir}
> +       install -m 755 ${S}/src/bt-serial  ${D}${bindir}
> +}
> +
> +SRC_URI[md5sum] = "36080a767e63e54878cd6bcfb20c4f3b"
> +SRC_URI[sha256sum] =
> "f99fb58562a3d7edef6fd9e63ca04510e241bbdab37fdb122c2c7a112a09100a
> "
> --
> 1.7.0.4
> 
> _______________________________________________
> meta-arago mailing list
> meta-arago@arago-project.org
> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago


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

* Re: [PATCH] bt-obex: Port recipe from arago
  2012-10-05  6:41 [PATCH] bt-obex: Port recipe from arago Franklin S. Cooper Jr
  2012-10-05 12:24 ` Maupin, Chase
@ 2012-10-05 16:11 ` Denys Dmytriyenko
  1 sibling, 0 replies; 3+ messages in thread
From: Denys Dmytriyenko @ 2012-10-05 16:11 UTC (permalink / raw)
  To: Franklin S. Cooper Jr; +Cc: meta-arago

On Fri, Oct 05, 2012 at 01:41:39AM -0500, Franklin S. Cooper Jr wrote:
> * Port recipe from Arago.
> Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
> ---
>  .../recipes-connectivity/bt-obex/bt-obex.bb        |   33 ++++++++++++++++++++
>  1 files changed, 33 insertions(+), 0 deletions(-)
>  create mode 100644 meta-arago-extras/recipes-connectivity/bt-obex/bt-obex.bb
> 
> diff --git a/meta-arago-extras/recipes-connectivity/bt-obex/bt-obex.bb b/meta-arago-extras/recipes-connectivity/bt-obex/bt-obex.bb
> new file mode 100644
> index 0000000..594e5bc
> --- /dev/null
> +++ b/meta-arago-extras/recipes-connectivity/bt-obex/bt-obex.bb
> @@ -0,0 +1,33 @@
> +DESCRIPTION = "BT Obex - Agentfor OBEXD (OPP/FTP profile)"
> +LICENSE = "GPLv2"
> +LIC_FILES_CHKSUM = "file://COPYING;md5=12f884d2ae1ff87c09e5b7ccc2c4ca7e"
> +
> +RDEPENDS += "bluez4"

Like I told you on irc - any run-time specific variable (RREPLACES, 
RCONFLICTS, RDEPENDS) requires package specifier, e.g.:

RDEPENDS_${PN} += "bluez4"
RDEPENDS_bt-obex += "bluez4"
RDEPENDS_${PN}-dev += "bluez4"

Unfortunately, I wasn't paying attention and passed few recipes where this was 
not done properly...

-- 
Denys


> +DEPENDS += "glib-2.0 dbus-glib"
> +
> +PR = "r0+gitr${SRCREV}"
> +
> +SRCREV = "171181b6ef6c94aefc828dc7fd8de136b9f97532"
> +
> +SRC_URI = "git://gitorious.org/bluez-tools/bluez-tools.git;protocol=git \
> +          "
> +
> +S = "${WORKDIR}/git"
> +
> +inherit autotools
> +
> +do_install() {
> +       install -d ${D}${bindir}
> +       install -m 755 ${S}/src/bt-adapter ${D}${bindir}
> +       install -m 755 ${S}/src/bt-agent   ${D}${bindir}
> +       install -m 755 ${S}/src/bt-audio   ${D}${bindir}
> +       install -m 755 ${S}/src/bt-device  ${D}${bindir}
> +       install -m 755 ${S}/src/bt-input   ${D}${bindir}
> +       install -m 755 ${S}/src/bt-monitor ${D}${bindir}
> +       install -m 755 ${S}/src/bt-network ${D}${bindir}
> +       install -m 755 ${S}/src/bt-obex    ${D}${bindir}
> +       install -m 755 ${S}/src/bt-serial  ${D}${bindir}
> +}
> +
> +SRC_URI[md5sum] = "36080a767e63e54878cd6bcfb20c4f3b"
> +SRC_URI[sha256sum] = "f99fb58562a3d7edef6fd9e63ca04510e241bbdab37fdb122c2c7a112a09100a"
> -- 
> 1.7.0.4
> 
> _______________________________________________
> meta-arago mailing list
> meta-arago@arago-project.org
> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
> 


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

end of thread, other threads:[~2012-10-05 16:11 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-10-05  6:41 [PATCH] bt-obex: Port recipe from arago Franklin S. Cooper Jr
2012-10-05 12:24 ` Maupin, Chase
2012-10-05 16:11 ` 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.