From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail.dream-property.net ([82.149.226.172]) by linuxtogo.org with esmtp (Exim 4.72) (envelope-from ) id 1QPEJJ-00045G-Bw for openembedded-devel@lists.openembedded.org; Wed, 25 May 2011 15:39:41 +0200 Received: from localhost (localhost [127.0.0.1]) by mail.dream-property.net (Postfix) with ESMTP id 080BE31480A6 for ; Wed, 25 May 2011 15:36:40 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at mail.dream-property.net Received: from mail.dream-property.net ([127.0.0.1]) by localhost (mail.dream-property.net [127.0.0.1]) (amavisd-new, port 10024) with LMTP id ajzCGhJ5mgLN for ; Wed, 25 May 2011 15:36:33 +0200 (CEST) Received: from [172.22.22.61] (drms-4d0153df.pool.mediaWays.net [77.1.83.223]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.dream-property.net (Postfix) with ESMTPSA id 440043146861 for ; Wed, 25 May 2011 15:36:33 +0200 (CEST) Message-ID: <4DDD05E0.4070504@opendreambox.org> Date: Wed, 25 May 2011 15:36:32 +0200 From: Andreas Oberritter User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.17) Gecko/20110424 Lightning/1.0b2 Thunderbird/3.1.10 MIME-Version: 1.0 To: openembedded-devel@lists.openembedded.org References: <1306328337-19285-1-git-send-email-eyalr@ti.com> In-Reply-To: <1306328337-19285-1-git-send-email-eyalr@ti.com> Subject: Re: [PATCH] wpa-gui-e: build the latest version from git sources X-BeenThere: openembedded-devel@lists.openembedded.org X-Mailman-Version: 2.1.11 Precedence: list Reply-To: openembedded-devel@lists.openembedded.org List-Id: Using the OpenEmbedded metadata to build Distributions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 25 May 2011 13:39:41 -0000 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Hello Eyal, thanks for your contribution. See some comments below: On 05/25/2011 02:58 PM, Eyal Reizer wrote: > Builds wpa-gui for qt4-embedded from the latest wpa-supplicant (0.8x) > git sources > > Signed-off-by: Eyal Reizer > --- > recipes/wpa-supplicant/wpa-gui-e_git.bb | 32 +++++++++++++++++++++++++++++++ > 1 files changed, 32 insertions(+), 0 deletions(-) > create mode 100644 recipes/wpa-supplicant/wpa-gui-e_git.bb > > diff --git a/recipes/wpa-supplicant/wpa-gui-e_git.bb b/recipes/wpa-supplicant/wpa-gui-e_git.bb > new file mode 100644 > index 0000000..1c990c6 > --- /dev/null > +++ b/recipes/wpa-supplicant/wpa-gui-e_git.bb > @@ -0,0 +1,32 @@ > +DESCRIPTION = "Qt embedded interface for choosing which configured network \ > +to connect to. It also provides a method for browsing 802.11 SSID scan \ > +results, an event history log of messages generated by wpa_supplicant, and \ > +a method to add or edit wpa_supplicant networks." > +SECTION = "network" > +LICENSE = "GPL BSD" Which GPL version? > +HOMEPAGE = "http://hostap.epitest.fi/wpa_supplicant/" > +RDEPENDS_${PN} = "wpa-supplicant" > +RRECOMMENDS_${PN} = "glibc-gconv-utf-16" What is this recommendation good for? > + > +SRCREV = "b8fb017272ed4794339978c9fbc0e74571a44728" > +PR = "r0" PR = "r0" is the default and can be removed. > +PV = "0.7.3+0.8.0-rc" > +PR_append = "+gitr${SRCPV}" SRCPV should not be used in PR (even if it's been copied from another recipe which does it wrong). Regards, Andreas > + > +DEFAULT_PREFERENCE = "-1" > + > +SRC_URI = "git://w1.fi/srv/git/hostap.git;protocol=git" > + > +S = "${WORKDIR}/git/wpa_supplicant/wpa_gui-qt4" > + > +inherit qt4e > +ARM_INSTRUCTION_SET = "arm" > + > +do_install () { > + install -d ${D}${bindir} > + install -d ${D}${datadir}/wpa_gui > + install -d ${D}${datadir}/applications > + install -m 755 wpa_gui ${D}/${bindir}/wpa_gui-e > +} > + > +