All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCHv2 0/2] scons misc patches
@ 2011-01-25 16:16 Víctor Manuel Jáquez Leal
  2011-01-25 16:16 ` [PATCHv2 1/2] python-scons_1.3.0: add missing dependencies Víctor Manuel Jáquez Leal
  2011-01-25 16:16 ` [PATCHv2 2/2] python-scons_1.3.0: fix licence type Víctor Manuel Jáquez Leal
  0 siblings, 2 replies; 8+ messages in thread
From: Víctor Manuel Jáquez Leal @ 2011-01-25 16:16 UTC (permalink / raw)
  To: openembedded-devel

I order to keep the atomic nature of the git commits, I splitted in
two this change set.

The version two is based on the previous requests for the first
approach submitted to the list (move the line to a better position in
the recipe and verifying the licence of the project).

Víctor Manuel Jáquez Leal (2):
  python-scons_1.3.0: add missing dependencies
  python-scons_1.3.0: fix licence type

 recipes/python/python-scons_1.3.0.bb |   11 ++++++++++-
 1 files changed, 10 insertions(+), 1 deletions(-)

-- 
1.7.2.3




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

* [PATCHv2 1/2] python-scons_1.3.0: add missing dependencies
  2011-01-25 16:16 [PATCHv2 0/2] scons misc patches Víctor Manuel Jáquez Leal
@ 2011-01-25 16:16 ` Víctor Manuel Jáquez Leal
  2011-01-25 16:21   ` Koen Kooi
  2011-01-25 16:16 ` [PATCHv2 2/2] python-scons_1.3.0: fix licence type Víctor Manuel Jáquez Leal
  1 sibling, 1 reply; 8+ messages in thread
From: Víctor Manuel Jáquez Leal @ 2011-01-25 16:16 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Koen Kooi

In order to launch scons in a board it depends on a couple python packages
which were not managed by the recipe.

This patch adds them.

Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
---
 recipes/python/python-scons_1.3.0.bb |    9 +++++++++
 1 files changed, 9 insertions(+), 0 deletions(-)

diff --git a/recipes/python/python-scons_1.3.0.bb b/recipes/python/python-scons_1.3.0.bb
index 792e3a5..a0690d1 100644
--- a/recipes/python/python-scons_1.3.0.bb
+++ b/recipes/python/python-scons_1.3.0.bb
@@ -3,6 +3,7 @@ SECTION = "devel/python"
 PRIORITY = "optional"
 LICENSE = "GPL"
 SRCNAME = "scons"
+PR = "r1"
 
 SRC_URI = "${SOURCEFORGE_MIRROR}/scons/scons-${PV}.tar.gz;name=scons \
            file://toolchain-from-env.SConscript \
@@ -21,3 +22,11 @@ do_install_append() {
 
 NATIVE_INSTALL_WORKS = "1"
 BBCLASSEXTEND = "native"
+
+RDEPENDS_${PN} = "python-shell \
+	       python-stringold \
+	       python-lang \
+	       python-io \
+	       python-fcntl \
+	       python-pickle \
+	       python-crypt"
-- 
1.7.2.3




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

* [PATCHv2 2/2] python-scons_1.3.0: fix licence type
  2011-01-25 16:16 [PATCHv2 0/2] scons misc patches Víctor Manuel Jáquez Leal
  2011-01-25 16:16 ` [PATCHv2 1/2] python-scons_1.3.0: add missing dependencies Víctor Manuel Jáquez Leal
@ 2011-01-25 16:16 ` Víctor Manuel Jáquez Leal
  2011-01-25 16:22   ` Koen Kooi
  2011-01-25 17:02   ` [PATCHv3] " Víctor Manuel Jáquez Leal
  1 sibling, 2 replies; 8+ messages in thread
From: Víctor Manuel Jáquez Leal @ 2011-01-25 16:16 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Koen Kooi

According to the wiki [1], the licence of the project [2] is MIT, not GPL.

1. http://www.scons.org/wiki/FrequentlyAskedQuestions#head-4fe23271137d5e5e95370a1360909ca303157c0d
2. http://scons.tigris.org/source/browse/scons/trunk/LICENSE?revision=557&view=markup
---
 recipes/python/python-scons_1.3.0.bb |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/recipes/python/python-scons_1.3.0.bb b/recipes/python/python-scons_1.3.0.bb
index a0690d1..82231f2 100644
--- a/recipes/python/python-scons_1.3.0.bb
+++ b/recipes/python/python-scons_1.3.0.bb
@@ -1,7 +1,7 @@
 DESCRIPTION = "A Software Construction Tool"
 SECTION = "devel/python"
 PRIORITY = "optional"
-LICENSE = "GPL"
+LICENSE = "MIT"
 SRCNAME = "scons"
 PR = "r1"
 
-- 
1.7.2.3




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

* Re: [PATCHv2 1/2] python-scons_1.3.0: add missing dependencies
  2011-01-25 16:16 ` [PATCHv2 1/2] python-scons_1.3.0: add missing dependencies Víctor Manuel Jáquez Leal
@ 2011-01-25 16:21   ` Koen Kooi
  0 siblings, 0 replies; 8+ messages in thread
From: Koen Kooi @ 2011-01-25 16:21 UTC (permalink / raw)
  To: Víctor Manuel Jáquez Leal; +Cc: openembedded-devel


Op 25 jan 2011, om 17:16 heeft Víctor Manuel Jáquez Leal het volgende geschreven:

> In order to launch scons in a board it depends on a couple python packages
> which were not managed by the recipe.
> 
> This patch adds them.
> 
> Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

Acked-by: Koen Kooi <koen@openembedded.org>

> ---
> recipes/python/python-scons_1.3.0.bb |    9 +++++++++
> 1 files changed, 9 insertions(+), 0 deletions(-)
> 
> diff --git a/recipes/python/python-scons_1.3.0.bb b/recipes/python/python-scons_1.3.0.bb
> index 792e3a5..a0690d1 100644
> --- a/recipes/python/python-scons_1.3.0.bb
> +++ b/recipes/python/python-scons_1.3.0.bb
> @@ -3,6 +3,7 @@ SECTION = "devel/python"
> PRIORITY = "optional"
> LICENSE = "GPL"
> SRCNAME = "scons"
> +PR = "r1"
> 
> SRC_URI = "${SOURCEFORGE_MIRROR}/scons/scons-${PV}.tar.gz;name=scons \
>            file://toolchain-from-env.SConscript \
> @@ -21,3 +22,11 @@ do_install_append() {
> 
> NATIVE_INSTALL_WORKS = "1"
> BBCLASSEXTEND = "native"
> +
> +RDEPENDS_${PN} = "python-shell \
> +	       python-stringold \
> +	       python-lang \
> +	       python-io \
> +	       python-fcntl \
> +	       python-pickle \
> +	       python-crypt"
> -- 
> 1.7.2.3
> 




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

* Re: [PATCHv2 2/2] python-scons_1.3.0: fix licence type
  2011-01-25 16:16 ` [PATCHv2 2/2] python-scons_1.3.0: fix licence type Víctor Manuel Jáquez Leal
@ 2011-01-25 16:22   ` Koen Kooi
  2011-01-25 16:25     ` Víctor M. Jáquez L.
  2011-01-25 17:02   ` [PATCHv3] " Víctor Manuel Jáquez Leal
  1 sibling, 1 reply; 8+ messages in thread
From: Koen Kooi @ 2011-01-25 16:22 UTC (permalink / raw)
  To: Víctor Manuel Jáquez Leal; +Cc: openembedded-devel


Op 25 jan 2011, om 17:16 heeft Víctor Manuel Jáquez Leal het volgende geschreven:

> According to the wiki [1], the licence of the project [2] is MIT, not GPL.
> 
> 1. http://www.scons.org/wiki/FrequentlyAskedQuestions#head-4fe23271137d5e5e95370a1360909ca303157c0d
> 2. http://scons.tigris.org/source/browse/scons/trunk/LICENSE?revision=557&view=markup

Missing sign-off?

Acked-by: Koen Kooi <koen@openembedded.org>

> ---
> recipes/python/python-scons_1.3.0.bb |    2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/recipes/python/python-scons_1.3.0.bb b/recipes/python/python-scons_1.3.0.bb
> index a0690d1..82231f2 100644
> --- a/recipes/python/python-scons_1.3.0.bb
> +++ b/recipes/python/python-scons_1.3.0.bb
> @@ -1,7 +1,7 @@
> DESCRIPTION = "A Software Construction Tool"
> SECTION = "devel/python"
> PRIORITY = "optional"
> -LICENSE = "GPL"
> +LICENSE = "MIT"
> SRCNAME = "scons"
> PR = "r1"
> 
> -- 
> 1.7.2.3
> 




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

* Re: [PATCHv2 2/2] python-scons_1.3.0: fix licence type
  2011-01-25 16:22   ` Koen Kooi
@ 2011-01-25 16:25     ` Víctor M. Jáquez L.
  2011-01-25 16:49       ` Koen Kooi
  0 siblings, 1 reply; 8+ messages in thread
From: Víctor M. Jáquez L. @ 2011-01-25 16:25 UTC (permalink / raw)
  To: Koen Kooi; +Cc: openembedded-devel

On Tue, Jan 25, 2011 at 05:22:02PM +0100, Koen Kooi wrote:
> 
> Op 25 jan 2011, om 17:16 heeft Víctor Manuel Jáquez Leal het volgende geschreven:
> 
> > According to the wiki [1], the licence of the project [2] is MIT, not GPL.
> > 
> > 1. http://www.scons.org/wiki/FrequentlyAskedQuestions#head-4fe23271137d5e5e95370a1360909ca303157c0d
> > 2. http://scons.tigris.org/source/browse/scons/trunk/LICENSE?revision=557&view=markup
> 
> Missing sign-off?

D'oh! 

Do I resend it?

vmjl



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

* Re: [PATCHv2 2/2] python-scons_1.3.0: fix licence type
  2011-01-25 16:25     ` Víctor M. Jáquez L.
@ 2011-01-25 16:49       ` Koen Kooi
  0 siblings, 0 replies; 8+ messages in thread
From: Koen Kooi @ 2011-01-25 16:49 UTC (permalink / raw)
  To: Víctor M. Jáquez L.; +Cc: openembedded-devel


Op 25 jan 2011, om 17:25 heeft Víctor M. Jáquez L. het volgende geschreven:

> On Tue, Jan 25, 2011 at 05:22:02PM +0100, Koen Kooi wrote:
>> 
>> Op 25 jan 2011, om 17:16 heeft Víctor Manuel Jáquez Leal het volgende geschreven:
>> 
>>> According to the wiki [1], the licence of the project [2] is MIT, not GPL.
>>> 
>>> 1. http://www.scons.org/wiki/FrequentlyAskedQuestions#head-4fe23271137d5e5e95370a1360909ca303157c0d
>>> 2. http://scons.tigris.org/source/browse/scons/trunk/LICENSE?revision=557&view=markup
>> 
>> Missing sign-off?
> 
> D'oh! 
> 
> Do I resend it?

Just reply to it, patchwork will pick it up


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

* [PATCHv3] python-scons_1.3.0: fix licence type
  2011-01-25 16:16 ` [PATCHv2 2/2] python-scons_1.3.0: fix licence type Víctor Manuel Jáquez Leal
  2011-01-25 16:22   ` Koen Kooi
@ 2011-01-25 17:02   ` Víctor Manuel Jáquez Leal
  1 sibling, 0 replies; 8+ messages in thread
From: Víctor Manuel Jáquez Leal @ 2011-01-25 17:02 UTC (permalink / raw)
  To: openembedded-devel

According to the wiki [1], the licence of the project [2] is MIT, not GPL.

1. http://www.scons.org/wiki/FrequentlyAskedQuestions#head-4fe23271137d5e5e95370a1360909ca303157c0d
2. http://scons.tigris.org/source/browse/scons/trunk/LICENSE?revision=557&view=markup

Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
---
 recipes/python/python-scons_1.3.0.bb |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/recipes/python/python-scons_1.3.0.bb b/recipes/python/python-scons_1.3.0.bb
index a0690d1..82231f2 100644
--- a/recipes/python/python-scons_1.3.0.bb
+++ b/recipes/python/python-scons_1.3.0.bb
@@ -1,7 +1,7 @@
 DESCRIPTION = "A Software Construction Tool"
 SECTION = "devel/python"
 PRIORITY = "optional"
-LICENSE = "GPL"
+LICENSE = "MIT"
 SRCNAME = "scons"
 PR = "r1"
 
-- 
1.7.2.3




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

end of thread, other threads:[~2011-01-25 17:03 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-01-25 16:16 [PATCHv2 0/2] scons misc patches Víctor Manuel Jáquez Leal
2011-01-25 16:16 ` [PATCHv2 1/2] python-scons_1.3.0: add missing dependencies Víctor Manuel Jáquez Leal
2011-01-25 16:21   ` Koen Kooi
2011-01-25 16:16 ` [PATCHv2 2/2] python-scons_1.3.0: fix licence type Víctor Manuel Jáquez Leal
2011-01-25 16:22   ` Koen Kooi
2011-01-25 16:25     ` Víctor M. Jáquez L.
2011-01-25 16:49       ` Koen Kooi
2011-01-25 17:02   ` [PATCHv3] " Víctor Manuel Jáquez Leal

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.