* [meta-raspberrypi][PATCH] use right license name for GPLv2
@ 2013-03-12 21:00 Eric Bénard
2013-03-13 18:01 ` Andrei Gherzan
0 siblings, 1 reply; 4+ messages in thread
From: Eric Bénard @ 2013-03-12 21:00 UTC (permalink / raw)
To: yocto
Signed-off-by: Eric Bénard <eric@eukrea.com>
---
recipes-bcm/bcm2835/bcm2835_1.8.bb | 2 +-
| 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/recipes-bcm/bcm2835/bcm2835_1.8.bb b/recipes-bcm/bcm2835/bcm2835_1.8.bb
index d9681e5..40f9be5 100644
--- a/recipes-bcm/bcm2835/bcm2835_1.8.bb
+++ b/recipes-bcm/bcm2835/bcm2835_1.8.bb
@@ -5,7 +5,7 @@ SECTION = "base"
HOMEPAGE = "http://www.open.com.au/mikem/bcm2835"
AUTHOR = "Mike McCauley (mikem@open.com.au)"
-LICENSE = "GPL-2.0"
+LICENSE = "GPLv2"
LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
PR = "r0"
--git a/recipes-extra/startup/rpi-first-run-wizard.bb b/recipes-extra/startup/rpi-first-run-wizard.bb
index f3ac8b4..dda4012 100644
--- a/recipes-extra/startup/rpi-first-run-wizard.bb
+++ b/recipes-extra/startup/rpi-first-run-wizard.bb
@@ -1,5 +1,5 @@
DESCRIPTION = "Scripts to support a first run wizard on the Raspberry Pi."
-LICENSE = "GPLV2"
+LICENSE = "GPLv2"
LIC_FILES_CHKSUM = "file://${WORKDIR}/LICENSE;md5=b234ee4d69f5fce4486a80fdaf4a4263"
DEPENDS = "zenity dbus"
--
1.7.11.7
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [meta-raspberrypi][PATCH] use right license name for GPLv2
2013-03-12 21:00 [meta-raspberrypi][PATCH] use right license name for GPLv2 Eric Bénard
@ 2013-03-13 18:01 ` Andrei Gherzan
2013-03-14 14:02 ` Eric Bénard
0 siblings, 1 reply; 4+ messages in thread
From: Andrei Gherzan @ 2013-03-13 18:01 UTC (permalink / raw)
To: Eric Bénard; +Cc: Yocto Project
[-- Attachment #1: Type: text/plain, Size: 1677 bytes --]
Hello Eric,
The SPDX name for GPLv2 (http://spdx.org/licenses/) is GPL-2.0 so I'd like
to use this.
And one more thing, please add the recipe name in the commit log -
something like:
*rpi-first-run-wizard.bb: Use right license name for GPLv2*
Thank you,
On Tue, Mar 12, 2013 at 11:00 PM, Eric Bénard <eric@eukrea.com> wrote:
> Signed-off-by: Eric Bénard <eric@eukrea.com>
> ---
> recipes-bcm/bcm2835/bcm2835_1.8.bb | 2 +-
> recipes-extra/startup/rpi-first-run-wizard.bb | 2 +-
> 2 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/recipes-bcm/bcm2835/bcm2835_1.8.bb b/recipes-bcm/bcm2835/
> bcm2835_1.8.bb
> index d9681e5..40f9be5 100644
> --- a/recipes-bcm/bcm2835/bcm2835_1.8.bb
> +++ b/recipes-bcm/bcm2835/bcm2835_1.8.bb
> @@ -5,7 +5,7 @@ SECTION = "base"
> HOMEPAGE = "http://www.open.com.au/mikem/bcm2835"
> AUTHOR = "Mike McCauley (mikem@open.com.au)"
>
> -LICENSE = "GPL-2.0"
> +LICENSE = "GPLv2"
> LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
>
> PR = "r0"
> diff --git a/recipes-extra/startup/rpi-first-run-wizard.bbb/recipes-extra/startup/
> rpi-first-run-wizard.bb
> index f3ac8b4..dda4012 100644
> --- a/recipes-extra/startup/rpi-first-run-wizard.bb
> +++ b/recipes-extra/startup/rpi-first-run-wizard.bb
> @@ -1,5 +1,5 @@
> DESCRIPTION = "Scripts to support a first run wizard on the Raspberry Pi."
> -LICENSE = "GPLV2"
> +LICENSE = "GPLv2"
> LIC_FILES_CHKSUM =
> "file://${WORKDIR}/LICENSE;md5=b234ee4d69f5fce4486a80fdaf4a4263"
>
> DEPENDS = "zenity dbus"
> --
> 1.7.11.7
>
>
--
*Andrei Gherzan*
m: +40.744.478.414 | f: +40.31.816.28.12
[-- Attachment #2: Type: text/html, Size: 3738 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [meta-raspberrypi][PATCH] use right license name for GPLv2
2013-03-13 18:01 ` Andrei Gherzan
@ 2013-03-14 14:02 ` Eric Bénard
2013-05-03 9:31 ` Andrei Gherzan
0 siblings, 1 reply; 4+ messages in thread
From: Eric Bénard @ 2013-03-14 14:02 UTC (permalink / raw)
To: Andrei Gherzan; +Cc: Yocto Project
Hi Andrei,
Le Wed, 13 Mar 2013 20:01:54 +0200,
Andrei Gherzan <andrei@gherzan.ro> a écrit :
> The SPDX name for GPLv2 (http://spdx.org/licenses/) is GPL-2.0 so I'd like
> to use this.
>
OE-core is mainly using GPLv2 thus the change proposal to be consistant.
> And one more thing, please add the recipe name in the commit log -
> something like:
> *rpi-first-run-wizard.bb: Use right license name for GPLv2*
>
2 recipes were concerned in this patch so I din't put their names in
the 1st line to keep it short.
Eric
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [meta-raspberrypi][PATCH] use right license name for GPLv2
2013-03-14 14:02 ` Eric Bénard
@ 2013-05-03 9:31 ` Andrei Gherzan
0 siblings, 0 replies; 4+ messages in thread
From: Andrei Gherzan @ 2013-05-03 9:31 UTC (permalink / raw)
To: Eric Bénard; +Cc: Yocto Project
[-- Attachment #1: Type: text/plain, Size: 757 bytes --]
Merged to master.
Thanks a lot.
On Thu, Mar 14, 2013 at 3:02 PM, Eric Bénard <eric@eukrea.com> wrote:
> Hi Andrei,
>
> Le Wed, 13 Mar 2013 20:01:54 +0200,
> Andrei Gherzan <andrei@gherzan.ro> a écrit :
> > The SPDX name for GPLv2 (http://spdx.org/licenses/) is GPL-2.0 so I'd
> like
> > to use this.
> >
> OE-core is mainly using GPLv2 thus the change proposal to be consistant.
>
> > And one more thing, please add the recipe name in the commit log -
> > something like:
> > *rpi-first-run-wizard.bb: Use right license name for GPLv2*
> >
> 2 recipes were concerned in this patch so I din't put their names in
> the 1st line to keep it short.
>
> Eric
>
--
*Andrei Gherzan*
m: +40.744.478.414 | f: +40.31.816.28.12
[-- Attachment #2: Type: text/html, Size: 1807 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2013-05-03 9:31 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-03-12 21:00 [meta-raspberrypi][PATCH] use right license name for GPLv2 Eric Bénard
2013-03-13 18:01 ` Andrei Gherzan
2013-03-14 14:02 ` Eric Bénard
2013-05-03 9:31 ` Andrei Gherzan
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.