All of lore.kernel.org
 help / color / mirror / Atom feed
From: Saul Wold <sgw@linux.intel.com>
To: Olivier Guiter <olivier.guiter@linux.intel.com>
Cc: openembedded-core@lists.openembedded.org
Subject: Re: [PATCH v3] neard:Update reference commit sha1 and install script
Date: Mon, 11 Mar 2013 15:48:00 -0700	[thread overview]
Message-ID: <513E5F20.2020004@linux.intel.com> (raw)
In-Reply-To: <1362743153-29094-1-git-send-email-olivier.guiter@linux.intel.com>

On 03/08/2013 03:45 AM, Olivier Guiter wrote:
> This patch installs neard daemon in /usr/lib/neard.

Please add a Signed-off: line

Thanks
	Sau!

> ---
>   meta/recipes-connectivity/neard/neard/neard    |   42 ------------------------
>   meta/recipes-connectivity/neard/neard/neard.in |   42 ++++++++++++++++++++++++
>   meta/recipes-connectivity/neard/neard_0.9.bb   |   27 ++++++++++-----
>   3 files changed, 61 insertions(+), 50 deletions(-)
>   delete mode 100644 meta/recipes-connectivity/neard/neard/neard
>   create mode 100644 meta/recipes-connectivity/neard/neard/neard.in
>
> diff --git a/meta/recipes-connectivity/neard/neard/neard b/meta/recipes-connectivity/neard/neard/neard
> deleted file mode 100644
> index 5f36174..0000000
> --- a/meta/recipes-connectivity/neard/neard/neard
> +++ /dev/null
> @@ -1,42 +0,0 @@
> -#!/bin/sh
> -
> -DAEMON=/usr/sbin/neard
> -PIDFILE=/var/run/neard.pid
> -DESC="Linux NFC daemon"
> -
> -if [ -f /etc/default/neard ] ; then
> -	. /etc/default/neard
> -fi
> -
> -set -e
> -
> -do_start() {
> -	$DAEMON
> -}
> -
> -do_stop() {
> -	start-stop-daemon --stop --name neard --quiet
> -}
> -
> -case "$1" in
> -  start)
> -	echo "Starting $DESC"
> -	do_start
> -	;;
> -  stop)
> -	echo "Stopping $DESC"
> -	do_stop
> -	;;
> -  restart|force-reload)
> -	echo "Restarting $DESC"
> -	do_stop
> -	sleep 1
> -	do_start
> -	;;
> -  *)
> -	echo "Usage: $0 {start|stop|restart|force-reload}" >&2
> -	exit 1
> -	;;
> -esac
> -
> -exit 0
> diff --git a/meta/recipes-connectivity/neard/neard/neard.in b/meta/recipes-connectivity/neard/neard/neard.in
> new file mode 100644
> index 0000000..38361c8
> --- /dev/null
> +++ b/meta/recipes-connectivity/neard/neard/neard.in
> @@ -0,0 +1,42 @@
> +#!/bin/sh
> +
> +DAEMON=@installpath@/neard
> +PIDFILE=/var/run/neard.pid
> +DESC="Linux NFC daemon"
> +
> +if [ -f /etc/default/neard ] ; then
> +	. /etc/default/neard
> +fi
> +
> +set -e
> +
> +do_start() {
> +	$DAEMON
> +}
> +
> +do_stop() {
> +	start-stop-daemon --stop --name neard --quiet
> +}
> +
> +case "$1" in
> +  start)
> +	echo "Starting $DESC"
> +	do_start
> +	;;
> +  stop)
> +	echo "Stopping $DESC"
> +	do_stop
> +	;;
> +  restart|force-reload)
> +	echo "Restarting $DESC"
> +	do_stop
> +	sleep 1
> +	do_start
> +	;;
> +  *)
> +	echo "Usage: $0 {start|stop|restart|force-reload}" >&2
> +	exit 1
> +	;;
> +esac
> +
> +exit 0
> diff --git a/meta/recipes-connectivity/neard/neard_0.9.bb b/meta/recipes-connectivity/neard/neard_0.9.bb
> index 61ea58c..afd6597 100644
> --- a/meta/recipes-connectivity/neard/neard_0.9.bb
> +++ b/meta/recipes-connectivity/neard/neard_0.9.bb
> @@ -11,14 +11,25 @@ inherit autotools pkgconfig update-rc.d
>   INITSCRIPT_NAME = "neard"
>   INITSCRIPT_PARAMS = "defaults 64"
>
> +do_install() {
> +	oe_runmake DESTDIR=${D} libexecdir=${libexecdir} install
> +}
> +
>   # This would copy neard start-stop shell and test scripts
>   do_install_append() {
> +
> +  # start/stop
>     install -d ${D}${sysconfdir}/init.d/
> -  install -m 0755 ${WORKDIR}/neard ${D}${sysconfdir}/init.d/neard
>
> + sed "s:@installpath@:${libexecdir}:" ${WORKDIR}/neard.in \
> +		> ${D}${sysconfdir}/init.d/neard
> +
> +  chmod 0755 ${D}${sysconfdir}/init.d/neard
> +
> +  #test files
>     install -d ${D}${libdir}/neard
> -  install -m 0755 ${S}/test/* ${D}${libdir}/neard/
> -  install -m 0755 ${S}/tools/nfctool/nfctool ${D}${libdir}/neard/
> +  install -m 0755 ${S}/test/* ${D}${libdir}/${BPN}/
> +  install -m 0755 ${S}/tools/nfctool/nfctool ${D}${libdir}/${BPN}/
>   }
>
>   RDEPENDS_${PN} = "dbus python python-dbus python-pygobject"
> @@ -32,10 +43,10 @@ RRECOMMENDS_${PN} = "\
>   #Additional
>   PACKAGES =+ "${PN}-tests"
>
> -FILES_${PN}-tests = "${libdir}/neard/*-test"
> -RDEPENDS_${PN}-tests = "python python-dbus python-pygobject"
> +FILES_${PN}-tests = "${libdir}/${BPN}/*-test"
> +FILES_${PN}-dbg += "${libdir}/${BPN}/*/.debug"
>
> -FILES_${PN}-dbg += "${bindir}/neard/*/.debug"
> +RDEPENDS_${PN}-tests = "python python-dbus python-pygobject"
>
>   ##=============================
>   # This is valid for 0.9+
> @@ -43,12 +54,12 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=12f884d2ae1ff87c09e5b7ccc2c4ca7e \
>    file://src/near.h;beginline=1;endline=20;md5=358e4deefef251a4761e1ffacc965d13 \
>    "
>   S	= "${WORKDIR}/git"
> -SRCREV	= "7abdb13d106d496e1115fab49e6448a249dfb3c8"
> +SRCREV	= "1e20e396cb837017b7e5ef822bfdab6ce060d2cf"
>   PV	= "0.9-git${SRCPV}"
>   PR	= "r1"
>
>   SRC_URI  = "git://git.kernel.org/pub/scm/network/nfc/neard.git;protocol=git \
> -	file://neard \
> +	file://neard.in \
>   	"
>
>   EXTRA_OECONF += "--enable-tools \
>



  reply	other threads:[~2013-03-11 23:04 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-03-07 16:09 [PATCH v2] neard: Update reference commit sha1 and script path Olivier Guiter
2013-03-07 16:24 ` Burton, Ross
2013-03-08 11:45   ` [PATCH v3] neard:Update reference commit sha1 and install script Olivier Guiter
2013-03-11 22:48     ` Saul Wold [this message]
2013-03-12 20:33       ` [PATCH v4] neard: Update " Olivier Guiter
2013-03-12  7:44     ` [PATCH v3] neard:Update " Koen Kooi

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=513E5F20.2020004@linux.intel.com \
    --to=sgw@linux.intel.com \
    --cc=olivier.guiter@linux.intel.com \
    --cc=openembedded-core@lists.openembedded.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.