All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/5] fix fix LIC_FILES_CHKSUM for pixman, compositeproto, xproto, inputproto, libdmx
@ 2011-01-06  3:43 Dexuan Cui
  2011-01-06  3:43 ` [PATCH 1/5] libdmx: fix LIC_FILES_CHKSUM Dexuan Cui
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: Dexuan Cui @ 2011-01-06  3:43 UTC (permalink / raw)
  To: poky

I double checked the 10 recipes I upgraded last night and found the 5 ones'
LIC_FILES_CHKSUM should be fixed.
Previously I carelessly neglected the warning messages as that didn't cause build failure. Sorry!

Hi Saul, you might want to rebase the 5 commits and merge them into the previous ones.

Thanks,
- Dexuan

Pull URL: git://git.pokylinux.org/poky-contrib.git
  Branch: dcui/master
  Browse: http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=dcui/master

Thanks,
    Dexuan Cui <dexuan.cui@intel.com>
---


Dexuan Cui (5):
  libdmx: fix LIC_FILES_CHKSUM
  inputproto: fix LIC_FILES_CHKSUM
  xproto: fix LIC_FILES_CHKSUM
  compositeproto: fix LIC_FILES_CHKSUM
  pixman: fix LIC_FILES_CHKSUM

 meta/recipes-graphics/xorg-lib/libdmx_1.1.1.bb     |    4 ++--
 meta/recipes-graphics/xorg-lib/pixman_0.21.2.bb    |    2 +-
 .../xorg-proto/compositeproto_0.4.2.bb             |    6 +++---
 .../xorg-proto/inputproto_2.0.1.bb                 |    2 +-
 meta/recipes-graphics/xorg-proto/xproto_7.0.20.bb  |    2 +-
 5 files changed, 8 insertions(+), 8 deletions(-)

-- 
1.7.2



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

* [PATCH 1/5] libdmx: fix LIC_FILES_CHKSUM
  2011-01-06  3:43 [PATCH 0/5] fix fix LIC_FILES_CHKSUM for pixman, compositeproto, xproto, inputproto, libdmx Dexuan Cui
@ 2011-01-06  3:43 ` Dexuan Cui
  2011-01-06  3:43 ` [PATCH 2/5] inputproto: " Dexuan Cui
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Dexuan Cui @ 2011-01-06  3:43 UTC (permalink / raw)
  To: poky

Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
---
 meta/recipes-graphics/xorg-lib/libdmx_1.1.1.bb |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-graphics/xorg-lib/libdmx_1.1.1.bb b/meta/recipes-graphics/xorg-lib/libdmx_1.1.1.bb
index f007e30..7c5a030 100644
--- a/meta/recipes-graphics/xorg-lib/libdmx_1.1.1.bb
+++ b/meta/recipes-graphics/xorg-lib/libdmx_1.1.1.bb
@@ -3,8 +3,8 @@ require xorg-lib-common.inc
 DESCRIPTION = "X11 Distributed Multihead extension library"
 
 LICENSE = "MIT"
-LIC_FILES_CHKSUM = "file://COPYING;md5=4641deddaa80fe7ca88e944e1fd94a94 \
-                    file://src/dmx.c;endline=33;md5=79ff7aacf716dafea0d490316f998a11"
+LIC_FILES_CHKSUM = "file://COPYING;md5=a3c3499231a8035efd0e004cfbd3b72a \
+                    file://src/dmx.c;endline=33;md5=c43f19af03c7c8619cadc9724ed9afe1"
 
 DEPENDS += "libxext dmxproto"
 
-- 
1.7.2



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

* [PATCH 2/5] inputproto: fix LIC_FILES_CHKSUM
  2011-01-06  3:43 [PATCH 0/5] fix fix LIC_FILES_CHKSUM for pixman, compositeproto, xproto, inputproto, libdmx Dexuan Cui
  2011-01-06  3:43 ` [PATCH 1/5] libdmx: fix LIC_FILES_CHKSUM Dexuan Cui
@ 2011-01-06  3:43 ` Dexuan Cui
  2011-01-06  3:44 ` [PATCH 3/5] xproto: " Dexuan Cui
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Dexuan Cui @ 2011-01-06  3:43 UTC (permalink / raw)
  To: poky

Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
---
 .../xorg-proto/inputproto_2.0.1.bb                 |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/meta/recipes-graphics/xorg-proto/inputproto_2.0.1.bb b/meta/recipes-graphics/xorg-proto/inputproto_2.0.1.bb
index 27462ed..29f5526 100644
--- a/meta/recipes-graphics/xorg-proto/inputproto_2.0.1.bb
+++ b/meta/recipes-graphics/xorg-proto/inputproto_2.0.1.bb
@@ -1,7 +1,7 @@
 require xorg-proto-common.inc
 
 LICENSE = "MIT & MIT-style"
-LIC_FILES_CHKSUM = "file://COPYING;md5=b9f79c119df756aeffcb89ec96716a9e \
+LIC_FILES_CHKSUM = "file://COPYING;md5=e562cc0f6587b961f032211d8160f31e \
                     file://XI2proto.h;endline=48;md5=1ac1581e61188da2885cc14ff49b20be"
 
 PR = "r0"
-- 
1.7.2



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

* [PATCH 3/5] xproto: fix LIC_FILES_CHKSUM
  2011-01-06  3:43 [PATCH 0/5] fix fix LIC_FILES_CHKSUM for pixman, compositeproto, xproto, inputproto, libdmx Dexuan Cui
  2011-01-06  3:43 ` [PATCH 1/5] libdmx: fix LIC_FILES_CHKSUM Dexuan Cui
  2011-01-06  3:43 ` [PATCH 2/5] inputproto: " Dexuan Cui
@ 2011-01-06  3:44 ` Dexuan Cui
  2011-01-06  3:44 ` [PATCH 4/5] compositeproto: " Dexuan Cui
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Dexuan Cui @ 2011-01-06  3:44 UTC (permalink / raw)
  To: poky

Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
---
 meta/recipes-graphics/xorg-proto/xproto_7.0.20.bb |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/meta/recipes-graphics/xorg-proto/xproto_7.0.20.bb b/meta/recipes-graphics/xorg-proto/xproto_7.0.20.bb
index 0586742..0e830eb 100644
--- a/meta/recipes-graphics/xorg-proto/xproto_7.0.20.bb
+++ b/meta/recipes-graphics/xorg-proto/xproto_7.0.20.bb
@@ -1,7 +1,7 @@
 require xorg-proto-common.inc
 
 LICENSE = "MIT & MIT-style"
-LIC_FILES_CHKSUM = "file://COPYING;md5=70c104816b85de375ba1fc09199d0e69"
+LIC_FILES_CHKSUM = "file://COPYING;md5=93ae8952e7d02d855516fbf2efb9a0d2"
 
 PR = "r0"
 PE = "1"
-- 
1.7.2



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

* [PATCH 4/5] compositeproto: fix LIC_FILES_CHKSUM
  2011-01-06  3:43 [PATCH 0/5] fix fix LIC_FILES_CHKSUM for pixman, compositeproto, xproto, inputproto, libdmx Dexuan Cui
                   ` (2 preceding siblings ...)
  2011-01-06  3:44 ` [PATCH 3/5] xproto: " Dexuan Cui
@ 2011-01-06  3:44 ` Dexuan Cui
  2011-01-06  3:44 ` [PATCH 5/5] pixman: " Dexuan Cui
  2011-01-06 17:47 ` [PATCH 0/5] fix fix LIC_FILES_CHKSUM for pixman, compositeproto, xproto, inputproto, libdmx Saul Wold
  5 siblings, 0 replies; 7+ messages in thread
From: Dexuan Cui @ 2011-01-06  3:44 UTC (permalink / raw)
  To: poky

Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
---
 .../xorg-proto/compositeproto_0.4.2.bb             |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/meta/recipes-graphics/xorg-proto/compositeproto_0.4.2.bb b/meta/recipes-graphics/xorg-proto/compositeproto_0.4.2.bb
index 8f1e9e6..e78e173 100644
--- a/meta/recipes-graphics/xorg-proto/compositeproto_0.4.2.bb
+++ b/meta/recipes-graphics/xorg-proto/compositeproto_0.4.2.bb
@@ -1,8 +1,8 @@
 require xorg-proto-common.inc
 
-LICENSE = "MIT-style"
-LIC_FILES_CHKSUM = "file://COPYING;md5=f8cdfa47489609f305b91521f3a8803f \
-                    file://composite.h;endline=43;md5=11420a347713de702a1fe60949085464"
+LICENSE = "MIT & MIT-style"
+LIC_FILES_CHKSUM = "file://COPYING;md5=2c4bfe136f4a4418ea2f2a96b7c8f3c5 \
+                    file://composite.h;endline=43;md5=cbd44d4079053aa75930ed2f02b92926"
 
 CONFLICTS = "compositeext"
 
-- 
1.7.2



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

* [PATCH 5/5] pixman: fix LIC_FILES_CHKSUM
  2011-01-06  3:43 [PATCH 0/5] fix fix LIC_FILES_CHKSUM for pixman, compositeproto, xproto, inputproto, libdmx Dexuan Cui
                   ` (3 preceding siblings ...)
  2011-01-06  3:44 ` [PATCH 4/5] compositeproto: " Dexuan Cui
@ 2011-01-06  3:44 ` Dexuan Cui
  2011-01-06 17:47 ` [PATCH 0/5] fix fix LIC_FILES_CHKSUM for pixman, compositeproto, xproto, inputproto, libdmx Saul Wold
  5 siblings, 0 replies; 7+ messages in thread
From: Dexuan Cui @ 2011-01-06  3:44 UTC (permalink / raw)
  To: poky

Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
---
 meta/recipes-graphics/xorg-lib/pixman_0.21.2.bb |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/meta/recipes-graphics/xorg-lib/pixman_0.21.2.bb b/meta/recipes-graphics/xorg-lib/pixman_0.21.2.bb
index 224b160..562ba14 100644
--- a/meta/recipes-graphics/xorg-lib/pixman_0.21.2.bb
+++ b/meta/recipes-graphics/xorg-lib/pixman_0.21.2.bb
@@ -3,7 +3,7 @@ DESCRIPTION = "Library for lowlevel pixel operations"
 require xorg-lib-common.inc
 
 LICENSE = "MIT & MIT-style & Public Domain"
-LIC_FILES_CHKSUM = "file://COPYING;md5=fea989a44fb012b5e79584972a863d22 \
+LIC_FILES_CHKSUM = "file://COPYING;md5=71e682cc54eaaf251f96a9038423a5c3 \
                     file://pixman/pixman-matrix.c;endline=25;md5=ba6e8769bfaaee2c41698755af04c4be \
                     file://pixman/pixman-arm-neon-asm.h;endline=24;md5=9a9cc1e51abbf1da58f4d9528ec9d49b \
                     file://pixman/pixman-x64-mmx-emulation.h;beginline=4;endline=9;md5=4e32716f2efaa6c4659222667c339bb8"
-- 
1.7.2



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

* Re: [PATCH 0/5] fix fix LIC_FILES_CHKSUM for pixman, compositeproto, xproto, inputproto, libdmx
  2011-01-06  3:43 [PATCH 0/5] fix fix LIC_FILES_CHKSUM for pixman, compositeproto, xproto, inputproto, libdmx Dexuan Cui
                   ` (4 preceding siblings ...)
  2011-01-06  3:44 ` [PATCH 5/5] pixman: " Dexuan Cui
@ 2011-01-06 17:47 ` Saul Wold
  5 siblings, 0 replies; 7+ messages in thread
From: Saul Wold @ 2011-01-06 17:47 UTC (permalink / raw)
  To: Dexuan Cui; +Cc: poky

On 01/05/2011 07:43 PM, Dexuan Cui wrote:
> I double checked the 10 recipes I upgraded last night and found the 5 ones'
> LIC_FILES_CHKSUM should be fixed.
> Previously I carelessly neglected the warning messages as that didn't cause build failure. Sorry!
>
> Hi Saul, you might want to rebase the 5 commits and merge them into the previous ones.
>
> Thanks,
> - Dexuan
>
> Pull URL: git://git.pokylinux.org/poky-contrib.git
>    Branch: dcui/master
>    Browse: http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=dcui/master
>
> Thanks,
>      Dexuan Cui<dexuan.cui@intel.com>
> ---
>
>
> Dexuan Cui (5):
>    libdmx: fix LIC_FILES_CHKSUM
>    inputproto: fix LIC_FILES_CHKSUM
>    xproto: fix LIC_FILES_CHKSUM
>    compositeproto: fix LIC_FILES_CHKSUM
>    pixman: fix LIC_FILES_CHKSUM
>
>   meta/recipes-graphics/xorg-lib/libdmx_1.1.1.bb     |    4 ++--
>   meta/recipes-graphics/xorg-lib/pixman_0.21.2.bb    |    2 +-
>   .../xorg-proto/compositeproto_0.4.2.bb             |    6 +++---
>   .../xorg-proto/inputproto_2.0.1.bb                 |    2 +-
>   meta/recipes-graphics/xorg-proto/xproto_7.0.20.bb  |    2 +-
>   5 files changed, 8 insertions(+), 8 deletions(-)
>
Pulled into Master

Thanks

    Sau!




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

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

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-01-06  3:43 [PATCH 0/5] fix fix LIC_FILES_CHKSUM for pixman, compositeproto, xproto, inputproto, libdmx Dexuan Cui
2011-01-06  3:43 ` [PATCH 1/5] libdmx: fix LIC_FILES_CHKSUM Dexuan Cui
2011-01-06  3:43 ` [PATCH 2/5] inputproto: " Dexuan Cui
2011-01-06  3:44 ` [PATCH 3/5] xproto: " Dexuan Cui
2011-01-06  3:44 ` [PATCH 4/5] compositeproto: " Dexuan Cui
2011-01-06  3:44 ` [PATCH 5/5] pixman: " Dexuan Cui
2011-01-06 17:47 ` [PATCH 0/5] fix fix LIC_FILES_CHKSUM for pixman, compositeproto, xproto, inputproto, libdmx Saul Wold

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.