All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/7] Checksums and LIC_FILES_CHKSUMs
@ 2011-03-24 10:09 Martin Jansa
  2011-03-24 10:09 ` [PATCH 1/7] libgpg-error: add checksums Martin Jansa
                   ` (8 more replies)
  0 siblings, 9 replies; 12+ messages in thread
From: Martin Jansa @ 2011-03-24 10:09 UTC (permalink / raw)
  To: openembedded-devel

Mostly checksums and LIC_FILES_CHKSUMs

Pull URL: git://gitorious.org/shr/meta-openembedded.git
  Branch: jama/license
  Browse: http://gitorious.org/shr/meta-openembedded/commits/jama/license

Thanks,
    Martin Jansa <Martin.Jansa@gmail.com>
---


Martin Jansa (7):
  libgpg-error: add checksums
  mime-support: add LIC_FILES_CHKSUM
  eina: add LIC_FILES_CHKSUM
  embryo: add LIC_FILES_CHKSUM
  gitflib: add LIC_FILES_CHKSUM
  fribidi: fix LICENSE, drop D_P, add LIC_FILES_CHKSUM
  lua5.1: add LIC_FILES_CHKSUM

 meta-efl/recipes-efl/efl/eina.inc                  |    3 ++-
 meta-efl/recipes-efl/efl/embryo.inc                |    3 ++-
 meta-oe/recipes-devtools/giflib/giflib_4.1.6.bb    |    1 +
 .../recipes-devtools/libfribidi/fribidi_0.19.2.bb  |    9 +++------
 meta-oe/recipes-devtools/lua/lua5.1_5.1.4.bb       |    1 +
 .../libgpg-error/libgpg-error_1.8.bb               |    3 ++-
 .../mime-support/mime-support_3.44.bb              |    1 +
 7 files changed, 12 insertions(+), 9 deletions(-)

-- 
1.7.4.1




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

* [PATCH 1/7] libgpg-error: add checksums
  2011-03-24 10:09 [PATCH 0/7] Checksums and LIC_FILES_CHKSUMs Martin Jansa
@ 2011-03-24 10:09 ` Martin Jansa
  2011-03-24 10:10 ` [PATCH 2/7] mime-support: add LIC_FILES_CHKSUM Martin Jansa
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 12+ messages in thread
From: Martin Jansa @ 2011-03-24 10:09 UTC (permalink / raw)
  To: openembedded-devel

---
 .../libgpg-error/libgpg-error_1.8.bb               |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/meta-oe/recipes-support/libgpg-error/libgpg-error_1.8.bb b/meta-oe/recipes-support/libgpg-error/libgpg-error_1.8.bb
index 5f6b72c..19a3c26 100644
--- a/meta-oe/recipes-support/libgpg-error/libgpg-error_1.8.bb
+++ b/meta-oe/recipes-support/libgpg-error/libgpg-error_1.8.bb
@@ -9,7 +9,8 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552 \
                     file://COPYING.LIB;md5=2d5025d4aa3495befef8f17206a5b0a1 \
                     file://src/gpg-error.h;endline=23;md5=83c16c8f5cea85affa1ff270a6f4fcff \
                     file://src/init.c;endline=20;md5=b69742f2a8827d494c6f6a4b1768416c"
-
+SRC_URI[md5sum] = "1d2005268a2f096db28cf9cf77b3229a"
+SRC_URI[sha256sum] = "bdfbf2677147239d2d26d4e37f44635d9fd97c133c9ef9fd9793a12a059508c5"
 
 SECTION = "libs"
 LICENSE = "GPLv2+ & LGPLv2.1+"
-- 
1.7.4.1




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

* [PATCH 2/7] mime-support: add LIC_FILES_CHKSUM
  2011-03-24 10:09 [PATCH 0/7] Checksums and LIC_FILES_CHKSUMs Martin Jansa
  2011-03-24 10:09 ` [PATCH 1/7] libgpg-error: add checksums Martin Jansa
@ 2011-03-24 10:10 ` Martin Jansa
  2011-03-24 10:11 ` [PATCH 3/7] eina: " Martin Jansa
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 12+ messages in thread
From: Martin Jansa @ 2011-03-24 10:10 UTC (permalink / raw)
  To: openembedded-devel

---
 .../mime-support/mime-support_3.44.bb              |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/meta-oe/recipes-support/mime-support/mime-support_3.44.bb b/meta-oe/recipes-support/mime-support/mime-support_3.44.bb
index 415022a..99c2af7 100644
--- a/meta-oe/recipes-support/mime-support/mime-support_3.44.bb
+++ b/meta-oe/recipes-support/mime-support/mime-support_3.44.bb
@@ -1,6 +1,7 @@
 SECTION = "base"
 DESCRIPTION = "MIME files 'mime.types' & 'mailcap', and support programs"
 LICENSE = "PD"
+LIC_FILES_CHKSUM = "file://debian/README;md5=36bbe2ace0a05c3fb684b73208fbf30b"
 
 DEPENDS = "file"
 RRECOMMENDS_${PN} = "file"
-- 
1.7.4.1




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

* [PATCH 3/7] eina: add LIC_FILES_CHKSUM
  2011-03-24 10:09 [PATCH 0/7] Checksums and LIC_FILES_CHKSUMs Martin Jansa
  2011-03-24 10:09 ` [PATCH 1/7] libgpg-error: add checksums Martin Jansa
  2011-03-24 10:10 ` [PATCH 2/7] mime-support: add LIC_FILES_CHKSUM Martin Jansa
@ 2011-03-24 10:11 ` Martin Jansa
  2011-03-24 10:11 ` [PATCH 4/7] embryo: " Martin Jansa
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 12+ messages in thread
From: Martin Jansa @ 2011-03-24 10:11 UTC (permalink / raw)
  To: openembedded-devel

---
 meta-efl/recipes-efl/efl/eina.inc |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/meta-efl/recipes-efl/efl/eina.inc b/meta-efl/recipes-efl/efl/eina.inc
index 621cc9e..c3f654d 100644
--- a/meta-efl/recipes-efl/efl/eina.inc
+++ b/meta-efl/recipes-efl/efl/eina.inc
@@ -1,5 +1,6 @@
 DESCRIPTION = "Eina is the Enlightenment data library"
-LICENSE = "LGPL"
+LICENSE = "LGPLv2.1"
+LIC_FILES_CHKSUM = "file://COPYING;md5=723bb07e0e90220fe8f03924969e5f4e"
 
 BBCLASSEXTEND = "native"
 INC_PR = "r0"
-- 
1.7.4.1




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

* [PATCH 4/7] embryo: add LIC_FILES_CHKSUM
  2011-03-24 10:09 [PATCH 0/7] Checksums and LIC_FILES_CHKSUMs Martin Jansa
                   ` (2 preceding siblings ...)
  2011-03-24 10:11 ` [PATCH 3/7] eina: " Martin Jansa
@ 2011-03-24 10:11 ` Martin Jansa
  2011-03-24 10:11 ` [PATCH 5/7] gitflib: " Martin Jansa
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 12+ messages in thread
From: Martin Jansa @ 2011-03-24 10:11 UTC (permalink / raw)
  To: openembedded-devel

---
 meta-efl/recipes-efl/efl/embryo.inc |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/meta-efl/recipes-efl/efl/embryo.inc b/meta-efl/recipes-efl/efl/embryo.inc
index cc0a1a4..ab02905 100644
--- a/meta-efl/recipes-efl/efl/embryo.inc
+++ b/meta-efl/recipes-efl/efl/embryo.inc
@@ -1,5 +1,6 @@
 DESCRIPTION = "The Enlightenment C-like scripting language for Edje"
-LICENSE = "MIT BSD"
+LICENSE = "MIT BSD & CompuPhase"
+LIC_FILES_CHKSUM = "file://COPYING;md5=6aa45e26c1ed178da910fd76b306a875"
 
 inherit efl
 
-- 
1.7.4.1




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

* [PATCH 5/7] gitflib: add LIC_FILES_CHKSUM
  2011-03-24 10:09 [PATCH 0/7] Checksums and LIC_FILES_CHKSUMs Martin Jansa
                   ` (3 preceding siblings ...)
  2011-03-24 10:11 ` [PATCH 4/7] embryo: " Martin Jansa
@ 2011-03-24 10:11 ` Martin Jansa
  2011-03-24 10:11 ` [PATCH 6/7] fribidi: fix LICENSE, drop D_P, " Martin Jansa
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 12+ messages in thread
From: Martin Jansa @ 2011-03-24 10:11 UTC (permalink / raw)
  To: openembedded-devel

---
 meta-oe/recipes-devtools/giflib/giflib_4.1.6.bb |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/meta-oe/recipes-devtools/giflib/giflib_4.1.6.bb b/meta-oe/recipes-devtools/giflib/giflib_4.1.6.bb
index 16be642..bd7b495 100644
--- a/meta-oe/recipes-devtools/giflib/giflib_4.1.6.bb
+++ b/meta-oe/recipes-devtools/giflib/giflib_4.1.6.bb
@@ -1,6 +1,7 @@
 DESCRIPTION = "shared library for GIF images"
 SECTION = "libs"
 LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://COPYING;md5=ae11c61b04b2917be39b11f78d71519a"
 PR = "r2"
 
 SRC_URI = "${SOURCEFORGE_MIRROR}/giflib/${BP}.tar.bz2"
-- 
1.7.4.1




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

* [PATCH 6/7] fribidi: fix LICENSE, drop D_P, add LIC_FILES_CHKSUM
  2011-03-24 10:09 [PATCH 0/7] Checksums and LIC_FILES_CHKSUMs Martin Jansa
                   ` (4 preceding siblings ...)
  2011-03-24 10:11 ` [PATCH 5/7] gitflib: " Martin Jansa
@ 2011-03-24 10:11 ` Martin Jansa
  2011-03-24 10:11 ` [PATCH 7/7] lua5.1: " Martin Jansa
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 12+ messages in thread
From: Martin Jansa @ 2011-03-24 10:11 UTC (permalink / raw)
  To: openembedded-devel

---
 .../recipes-devtools/libfribidi/fribidi_0.19.2.bb  |    9 +++------
 1 files changed, 3 insertions(+), 6 deletions(-)

diff --git a/meta-oe/recipes-devtools/libfribidi/fribidi_0.19.2.bb b/meta-oe/recipes-devtools/libfribidi/fribidi_0.19.2.bb
index dd7fb98..fd4ef7a 100644
--- a/meta-oe/recipes-devtools/libfribidi/fribidi_0.19.2.bb
+++ b/meta-oe/recipes-devtools/libfribidi/fribidi_0.19.2.bb
@@ -2,14 +2,12 @@ DESCRIPTION = "Fribidi library for bidirectional text"
 SECTION = "libs"
 PRIORITY = "optional"
 PR = "r1"
-LICENSE = "unknown"
+LICENSE = "LGPLv2.1"
+LIC_FILES_CHKSUM = "file://COPYING;md5=7fbc338309ac38fefcd64b04bb903e34"
+BBCLASSEXTEND = "native"
 
 PROVIDES = "libfribidi"
 
-# Slightly incompatible with 0.10.x, so:
-DEFAULT_PREFERENCE = "-1"
-DEFAULT_PREFERENCE_angstrom = "1"
-
 inherit autotools lib_package pkgconfig
 
 CFLAGS_append = "  -DPAGE_SIZE=4096 "
@@ -18,4 +16,3 @@ SRC_URI = "http://fribidi.org/download/fribidi-${PV}.tar.gz"
 
 SRC_URI[md5sum] = "626db17d2d99b43615ad9d12500f568a"
 SRC_URI[sha256sum] = "49cf91586e48b52fe25872ff66c1da0dff0daac2593f9f300e2af12f44f64177"
-BBCLASSEXTEND = "native"
-- 
1.7.4.1




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

* [PATCH 7/7] lua5.1: add LIC_FILES_CHKSUM
  2011-03-24 10:09 [PATCH 0/7] Checksums and LIC_FILES_CHKSUMs Martin Jansa
                   ` (5 preceding siblings ...)
  2011-03-24 10:11 ` [PATCH 6/7] fribidi: fix LICENSE, drop D_P, " Martin Jansa
@ 2011-03-24 10:11 ` Martin Jansa
  2011-03-24 10:28 ` [PATCH 0/7] Checksums and LIC_FILES_CHKSUMs Paul Menzel
  2011-03-24 10:41 ` Koen Kooi
  8 siblings, 0 replies; 12+ messages in thread
From: Martin Jansa @ 2011-03-24 10:11 UTC (permalink / raw)
  To: openembedded-devel

---
 meta-oe/recipes-devtools/lua/lua5.1_5.1.4.bb |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/meta-oe/recipes-devtools/lua/lua5.1_5.1.4.bb b/meta-oe/recipes-devtools/lua/lua5.1_5.1.4.bb
index 06c8004..5591c4c 100644
--- a/meta-oe/recipes-devtools/lua/lua5.1_5.1.4.bb
+++ b/meta-oe/recipes-devtools/lua/lua5.1_5.1.4.bb
@@ -1,6 +1,7 @@
 DESCRIPTION = "Lua is a powerful light-weight programming language designed \
 for extending applications."
 LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://COPYRIGHT;md5=90c3badc6055c699194c4a7cea583296"
 HOMEPAGE = "http://www.lua.org/"
 
 DEPENDS += "readline"
-- 
1.7.4.1




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

* Re: [PATCH 0/7] Checksums and LIC_FILES_CHKSUMs
  2011-03-24 10:09 [PATCH 0/7] Checksums and LIC_FILES_CHKSUMs Martin Jansa
                   ` (6 preceding siblings ...)
  2011-03-24 10:11 ` [PATCH 7/7] lua5.1: " Martin Jansa
@ 2011-03-24 10:28 ` Paul Menzel
  2011-03-24 10:39   ` Koen Kooi
  2011-03-24 10:41 ` Koen Kooi
  8 siblings, 1 reply; 12+ messages in thread
From: Paul Menzel @ 2011-03-24 10:28 UTC (permalink / raw)
  To: openembedded-devel

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

Am Donnerstag, den 24.03.2011, 11:09 +0100 schrieb Martin Jansa:
> Mostly checksums and LIC_FILES_CHKSUMs

I have never heard of 'LIC_FILES_CHKSUM'.

        $ git grep 'LIC_FILES'
        recipes/htop/htop_0.9.bb:LIC_FILES_CHKSUM = "file://COPYING;md5=c312653532e8e669f30e5ec8bdc23be3"
        recipes/lighttpd/lighttpd_1.4.28.bb:LIC_FILES_CHKSUM = "file://COPYING;md5=e4dac5c6ab169aa212feb5028853a579"
        recipes/ofono/ofono.inc:LIC_FILES_CHKSUM = "file://COPYING;md5=eb723b61539feef013de476e68b5c50a \
        recipes/wpa-supplicant/wpa-supplicant-0.7.inc:LIC_FILES_CHKSUM = "file://../COPYING;md5=c54ce9345727175ff66d17b67ff51f58 \

It looks like this is something from Pkoy [1]. So is this for the merge
with Yocto?

[…]


Thanks,

Paul


[1] http://www.yoctoproject.org/docs/poky-ref-manual/poky-ref-manual.html#usingpoky-specifying-LIC_FILES_CHKSUM

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

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

* Re: [PATCH 0/7] Checksums and LIC_FILES_CHKSUMs
  2011-03-24 10:28 ` [PATCH 0/7] Checksums and LIC_FILES_CHKSUMs Paul Menzel
@ 2011-03-24 10:39   ` Koen Kooi
  0 siblings, 0 replies; 12+ messages in thread
From: Koen Kooi @ 2011-03-24 10:39 UTC (permalink / raw)
  To: openembedded-devel

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

On 24-03-11 11:28, Paul Menzel wrote:
> Am Donnerstag, den 24.03.2011, 11:09 +0100 schrieb Martin Jansa:
>> Mostly checksums and LIC_FILES_CHKSUMs
> 
> I have never heard of 'LIC_FILES_CHKSUM'.
> 
>         $ git grep 'LIC_FILES'
>         recipes/htop/htop_0.9.bb:LIC_FILES_CHKSUM = "file://COPYING;md5=c312653532e8e669f30e5ec8bdc23be3"
>         recipes/lighttpd/lighttpd_1.4.28.bb:LIC_FILES_CHKSUM = "file://COPYING;md5=e4dac5c6ab169aa212feb5028853a579"
>         recipes/ofono/ofono.inc:LIC_FILES_CHKSUM = "file://COPYING;md5=eb723b61539feef013de476e68b5c50a \
>         recipes/wpa-supplicant/wpa-supplicant-0.7.inc:LIC_FILES_CHKSUM = "file://../COPYING;md5=c54ce9345727175ff66d17b67ff51f58 \
> 
> It looks like this is something from Pkoy [1]. So is this for the merge
> with Yocto?

This is for http://cgit.openembedded.org/cgit.cgi/meta-openembedded/

regards,

Koen
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.5 (Darwin)

iD8DBQFNix9XMkyGM64RGpERAoqnAJ4gdzyAl8FYrGE6sX26swBFFpdaMQCcCFpH
9EVH8PewwCg1yyXOJkYpZoc=
=Lvdu
-----END PGP SIGNATURE-----




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

* Re: [PATCH 0/7] Checksums and LIC_FILES_CHKSUMs
  2011-03-24 10:09 [PATCH 0/7] Checksums and LIC_FILES_CHKSUMs Martin Jansa
                   ` (7 preceding siblings ...)
  2011-03-24 10:28 ` [PATCH 0/7] Checksums and LIC_FILES_CHKSUMs Paul Menzel
@ 2011-03-24 10:41 ` Koen Kooi
  2011-03-24 10:47   ` Martin Jansa
  8 siblings, 1 reply; 12+ messages in thread
From: Koen Kooi @ 2011-03-24 10:41 UTC (permalink / raw)
  To: openembedded-devel

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

On 24-03-11 11:09, Martin Jansa wrote:
> Mostly checksums and LIC_FILES_CHKSUMs
> 
> Pull URL: git://gitorious.org/shr/meta-openembedded.git
>   Branch: jama/license
>   Browse: http://gitorious.org/shr/meta-openembedded/commits/jama/license

Thanks for the pull request! I merged it as is, but could you add your
SOB next time to the commits?

regards,

Koen
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.5 (Darwin)

iD8DBQFNix/iMkyGM64RGpERAtZ/AJ4kBMNVeNpu8V5dWH89yl1jYKi7nQCfb6fy
UMjhFzSNWwbCNYivpxnSeAY=
=7Jzm
-----END PGP SIGNATURE-----




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

* Re: [PATCH 0/7] Checksums and LIC_FILES_CHKSUMs
  2011-03-24 10:41 ` Koen Kooi
@ 2011-03-24 10:47   ` Martin Jansa
  0 siblings, 0 replies; 12+ messages in thread
From: Martin Jansa @ 2011-03-24 10:47 UTC (permalink / raw)
  To: openembedded-devel

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

On Thu, Mar 24, 2011 at 11:41:38AM +0100, Koen Kooi wrote:
> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
> 
> On 24-03-11 11:09, Martin Jansa wrote:
> > Mostly checksums and LIC_FILES_CHKSUMs
> > 
> > Pull URL: git://gitorious.org/shr/meta-openembedded.git
> >   Branch: jama/license
> >   Browse: http://gitorious.org/shr/meta-openembedded/commits/jama/license
> 
> Thanks for the pull request! I merged it as is, but could you add your
> SOB next time to the commits?

Yup sorry for that :/ I was used to cherry-pick from my patch-queue
branch to push checkout (while adding SOB) so I just forget today :/.

> regards,
> 
> Koen
> -----BEGIN PGP SIGNATURE-----
> Version: GnuPG v1.4.5 (Darwin)
> 
> iD8DBQFNix/iMkyGM64RGpERAtZ/AJ4kBMNVeNpu8V5dWH89yl1jYKi7nQCfb6fy
> UMjhFzSNWwbCNYivpxnSeAY=
> =7Jzm
> -----END PGP SIGNATURE-----
> 
> 
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel

-- 
Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com

[-- Attachment #2: Type: application/pgp-signature, Size: 205 bytes --]

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

end of thread, other threads:[~2011-03-24 10:57 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-24 10:09 [PATCH 0/7] Checksums and LIC_FILES_CHKSUMs Martin Jansa
2011-03-24 10:09 ` [PATCH 1/7] libgpg-error: add checksums Martin Jansa
2011-03-24 10:10 ` [PATCH 2/7] mime-support: add LIC_FILES_CHKSUM Martin Jansa
2011-03-24 10:11 ` [PATCH 3/7] eina: " Martin Jansa
2011-03-24 10:11 ` [PATCH 4/7] embryo: " Martin Jansa
2011-03-24 10:11 ` [PATCH 5/7] gitflib: " Martin Jansa
2011-03-24 10:11 ` [PATCH 6/7] fribidi: fix LICENSE, drop D_P, " Martin Jansa
2011-03-24 10:11 ` [PATCH 7/7] lua5.1: " Martin Jansa
2011-03-24 10:28 ` [PATCH 0/7] Checksums and LIC_FILES_CHKSUMs Paul Menzel
2011-03-24 10:39   ` Koen Kooi
2011-03-24 10:41 ` Koen Kooi
2011-03-24 10:47   ` Martin Jansa

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.