All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCHv2] wpa-gui-e: build the latest version from git sources
@ 2011-05-25 15:11 Eyal Reizer
  2011-05-25 17:39 ` Paul Menzel
  0 siblings, 1 reply; 5+ messages in thread
From: Eyal Reizer @ 2011-05-25 15:11 UTC (permalink / raw)
  To: openembedded-devel

Builds wpa-gui for qt4-embedded from the latest wpa-supplicant (0.8x)
git sources

update based on comments from comunity members.

Signed-off-by: Eyal Reizer <eyalr@ti.com>
---
 recipes/wpa-supplicant/wpa-gui-e_git.bb |   29 +++++++++++++++++++++++++++++
 1 files changed, 29 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..18a1422
--- /dev/null
+++ b/recipes/wpa-supplicant/wpa-gui-e_git.bb
@@ -0,0 +1,29 @@
+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 = "GPLv2 | BSD"
+HOMEPAGE = "http://hostap.epitest.fi/wpa_supplicant/"
+RDEPENDS_${PN} = "wpa-supplicant"
+
+SRCREV = "b8fb017272ed4794339978c9fbc0e74571a44728"
+PR = "r0"
+PV = "0.7.3+0.8.0-rc"
+PR_append = "+gitr${SRCPV}"
+
+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 -m 755 wpa_gui ${D}/${bindir}/wpa_gui-e
+}
+
+
-- 
1.7.0.4




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

* Re: [PATCHv2] wpa-gui-e: build the latest version from git sources
  2011-05-25 15:11 [PATCHv2] wpa-gui-e: build the latest version from git sources Eyal Reizer
@ 2011-05-25 17:39 ` Paul Menzel
  2011-05-25 18:09   ` Koen Kooi
  0 siblings, 1 reply; 5+ messages in thread
From: Paul Menzel @ 2011-05-25 17:39 UTC (permalink / raw)
  To: openembedded-devel

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

Am Mittwoch, den 25.05.2011, 18:11 +0300 schrieb Eyal Reizer:
> Builds wpa-gui for qt4-embedded from the latest wpa-supplicant (0.8x)
> git sources
> 
> update based on comments from comunity members.

This is only useful for reviews and therefore should go after the `---`
so that it is not included into the commit message.

> Signed-off-by: Eyal Reizer <eyalr@ti.com>
> ---
>  recipes/wpa-supplicant/wpa-gui-e_git.bb |   29 +++++++++++++++++++++++++++++

Why do you use that recipe name?

>  1 files changed, 29 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..18a1422
> --- /dev/null
> +++ b/recipes/wpa-supplicant/wpa-gui-e_git.bb
> @@ -0,0 +1,29 @@
> +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 = "GPLv2 | BSD"
> +HOMEPAGE = "http://hostap.epitest.fi/wpa_supplicant/"
> +RDEPENDS_${PN} = "wpa-supplicant"

Please sort it after the style guide.

> +
> +SRCREV = "b8fb017272ed4794339978c9fbc0e74571a44728"
> +PR = "r0"
> +PV = "0.7.3+0.8.0-rc"
> +PR_append = "+gitr${SRCPV}"
> +
> +DEFAULT_PREFERENCE = "-1"

Why is this still here?

> +
> +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 -m 755 wpa_gui ${D}/${bindir}/wpa_gui-e
> +}


Thanks,

Paul

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 205 bytes --]

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

* Re: [PATCHv2] wpa-gui-e: build the latest version from git sources
  2011-05-25 17:39 ` Paul Menzel
@ 2011-05-25 18:09   ` Koen Kooi
  2011-05-25 18:31     ` Paul Menzel
  0 siblings, 1 reply; 5+ messages in thread
From: Koen Kooi @ 2011-05-25 18:09 UTC (permalink / raw)
  To: openembedded-devel

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

On 25-05-11 19:39, Paul Menzel wrote:
> Am Mittwoch, den 25.05.2011, 18:11 +0300 schrieb Eyal Reizer:
>> Builds wpa-gui for qt4-embedded from the latest wpa-supplicant (0.8x)
>> git sources
>>
>> update based on comments from comunity members.
> 
> This is only useful for reviews and therefore should go after the `---`
> so that it is not included into the commit message.
> 
>> Signed-off-by: Eyal Reizer <eyalr@ti.com>
>> ---
>>  recipes/wpa-supplicant/wpa-gui-e_git.bb |   29 +++++++++++++++++++++++++++++
> 
> Why do you use that recipe name?

'-e' is for qt/e builds and '' or '-qt4' for qt4/x11 builds
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.5 (Darwin)

iD8DBQFN3UXiMkyGM64RGpERAkm0AKCjhwxmFmdAP8WvziJ9yh9YGQeR2wCgojps
H2ELk5aG4On2IK08p+BW1nw=
=R0MZ
-----END PGP SIGNATURE-----




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

* Re: [PATCHv2] wpa-gui-e: build the latest version from git sources
  2011-05-25 18:09   ` Koen Kooi
@ 2011-05-25 18:31     ` Paul Menzel
  0 siblings, 0 replies; 5+ messages in thread
From: Paul Menzel @ 2011-05-25 18:31 UTC (permalink / raw)
  To: openembedded-devel

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

Am Mittwoch, den 25.05.2011, 20:09 +0200 schrieb Koen Kooi:

> On 25-05-11 19:39, Paul Menzel wrote:
> > Am Mittwoch, den 25.05.2011, 18:11 +0300 schrieb Eyal Reizer:
> >> Builds wpa-gui for qt4-embedded from the latest wpa-supplicant (0.8x)
> >> git sources
> >>
> >> update based on comments from comunity members.
> > 
> > This is only useful for reviews and therefore should go after the `---`
> > so that it is not included into the commit message.
> > 
> >> Signed-off-by: Eyal Reizer <eyalr@ti.com>
> >> ---
> >>  recipes/wpa-supplicant/wpa-gui-e_git.bb |   29 +++++++++++++++++++++++++++++
> > 
> > Why do you use that recipe name?
> 
> '-e' is for qt/e builds and '' or '-qt4' for qt4/x11 builds

[…]

> >> +S = "${WORKDIR}/git/wpa_supplicant/wpa_gui-qt4"

So the Qt4 version is build?


Thanks,

Paul

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 205 bytes --]

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

* Re: [PATCHv2] wpa-gui-e: build the latest version from git sources
@ 2011-05-25 18:39 Reizer, Eyal
  0 siblings, 0 replies; 5+ messages in thread
From: Reizer, Eyal @ 2011-05-25 18:39 UTC (permalink / raw)
  To: openembedded-devel

Posting from mobile...

Same source code is used for qt4e and qt4x.
The INHERIT line select qt4e.



Paul Menzel <paulepanter@users.sourceforge.net> wrote:


Am Mittwoch, den 25.05.2011, 20:09 +0200 schrieb Koen Kooi:

> On 25-05-11 19:39, Paul Menzel wrote:
> > Am Mittwoch, den 25.05.2011, 18:11 +0300 schrieb Eyal Reizer:
> >> Builds wpa-gui for qt4-embedded from the latest wpa-supplicant (0.8x)
> >> git sources
> >>
> >> update based on comments from comunity members.
> >
> > This is only useful for reviews and therefore should go after the `---`
> > so that it is not included into the commit message.
> >
> >> Signed-off-by: Eyal Reizer <eyalr@ti.com>
> >> ---
> >>  recipes/wpa-supplicant/wpa-gui-e_git.bb |   29 +++++++++++++++++++++++++++++
> >
> > Why do you use that recipe name?
>
> '-e' is for qt/e builds and '' or '-qt4' for qt4/x11 builds

[…]

> >> +S = "${WORKDIR}/git/wpa_supplicant/wpa_gui-qt4"

So the Qt4 version is build?


Thanks,

Paul

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

end of thread, other threads:[~2011-05-25 18:42 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-05-25 15:11 [PATCHv2] wpa-gui-e: build the latest version from git sources Eyal Reizer
2011-05-25 17:39 ` Paul Menzel
2011-05-25 18:09   ` Koen Kooi
2011-05-25 18:31     ` Paul Menzel
2011-05-25 18:39 Reizer, Eyal

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.