* [meta-java][PATCH 0/5] Fix several license issues
@ 2016-02-05 2:16 jackie.huang
2016-02-05 2:16 ` [meta-java][PATCH 1/5] jikes: fix the license name jackie.huang
` (5 more replies)
0 siblings, 6 replies; 7+ messages in thread
From: jackie.huang @ 2016-02-05 2:16 UTC (permalink / raw)
To: openembedded-devel
From: Jackie Huang <jackie.huang@windriver.com>
Fixed the following license issues:
WARNING: jikes-native: No generic license file exists for: IBM in any provider
WARNING: cup-native: No generic license file exists for: CUP in any provider
WARNING: jacl-native: No generic license file exists for: JACL in any provider
WARNING: jlex-native: No generic license file exists for: JLEX in any provider
WARNING: classpath: No generic license file exists for: Classpath in any provider
--
The following changes since commit b7fe60a8e23664b3c637fa913ccdcfd0c122487e:
cacao: remove invalid configure options (2016-01-29 11:37:51 +0200)
are available in the git repository at:
git://git.pokylinux.org/poky-contrib.git jhuang0/d_java-licenses_160205-0
http://git.pokylinux.org/cgit.cgi//log/?h=jhuang0/d_java-licenses_160205-0
Jackie Huang (5):
jikes: fix the license name
cup: add the license file
jacl: fix license and add license files
jlex: fix the license and add JLEX license file
classpath: fix the license
licenses/AMD | 50 ++++++++++++++++++++++
licenses/CDS | 83 ++++++++++++++++++++++++++++++++++++
licenses/CUP | 20 +++++++++
licenses/JLEX | 19 +++++++++
licenses/SUN | 31 ++++++++++++++
recipes-core/classpath/classpath.inc | 2 +-
recipes-core/jacl/jacl_1.4.1.bb | 5 ++-
recipes-core/jikes/jikes_1.22.bb | 2 +-
recipes-core/jlex/jlex_1.2.6.bb | 4 +-
9 files changed, 209 insertions(+), 7 deletions(-)
create mode 100644 licenses/AMD
create mode 100644 licenses/CDS
create mode 100644 licenses/CUP
create mode 100644 licenses/JLEX
create mode 100644 licenses/SUN
--
1.9.1
^ permalink raw reply [flat|nested] 7+ messages in thread
* [meta-java][PATCH 1/5] jikes: fix the license name
2016-02-05 2:16 [meta-java][PATCH 0/5] Fix several license issues jackie.huang
@ 2016-02-05 2:16 ` jackie.huang
2016-02-05 2:16 ` [meta-java][PATCH 2/5] cup: add the license file jackie.huang
` (4 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: jackie.huang @ 2016-02-05 2:16 UTC (permalink / raw)
To: openembedded-devel
From: Jackie Huang <jackie.huang@windriver.com>
The license is: IBM Public License Version 1.0
and it is named IPL-1.0 instead of IBM in common-licenses.
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
---
recipes-core/jikes/jikes_1.22.bb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/recipes-core/jikes/jikes_1.22.bb b/recipes-core/jikes/jikes_1.22.bb
index c05b0f6..0c33118 100644
--- a/recipes-core/jikes/jikes_1.22.bb
+++ b/recipes-core/jikes/jikes_1.22.bb
@@ -2,7 +2,7 @@ DESCRIPTION = "Java compiler adhering to language and VM specifications"
HOMEPAGE = "http://jikes.sourceforge.net/"
PRIORITY = "optional"
SECTION = "devel"
-LICENSE = "IBM"
+LICENSE = "IPL-1.0"
LIC_FILES_CHKSUM = " \
file://COPYING;md5=2d52359fd0d8f0c3e371e4cd19b213c0 \
file://doc/license.htm;md5=43506e48033a385dc0936f620ae2c745 \
--
1.9.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [meta-java][PATCH 2/5] cup: add the license file
2016-02-05 2:16 [meta-java][PATCH 0/5] Fix several license issues jackie.huang
2016-02-05 2:16 ` [meta-java][PATCH 1/5] jikes: fix the license name jackie.huang
@ 2016-02-05 2:16 ` jackie.huang
2016-02-05 2:16 ` [meta-java][PATCH 3/5] jacl: fix license and add license files jackie.huang
` (3 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: jackie.huang @ 2016-02-05 2:16 UTC (permalink / raw)
To: openembedded-devel
From: Jackie Huang <jackie.huang@windriver.com>
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
---
licenses/CUP | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
create mode 100644 licenses/CUP
diff --git a/licenses/CUP b/licenses/CUP
new file mode 100644
index 0000000..f3f0299
--- /dev/null
+++ b/licenses/CUP
@@ -0,0 +1,20 @@
+CUP PARSER GENERATOR COPYRIGHT NOTICE, LICENSE AND DISCLAIMER.
+
+Copyright 1996 by Scott Hudson, Frank Flannery, C. Scott Ananian
+
+Permission to use, copy, modify, and distribute this software and its
+documentation for any purpose and without fee is hereby granted,
+provided that the above copyright notice appear in all copies and that
+both the copyright notice and this permission notice and warranty
+disclaimer appear in supporting documentation, and that the names of
+the authors or their employers not be used in advertising or publicity
+pertaining to distribution of the software without specific, written
+prior permission.
+
+The authors and their employers disclaim all warranties with regard to
+this software, including all implied warranties of merchantability and
+fitness. In no event shall the authors or their employers be liable
+for any special, indirect or consequential damages or any damages
+whatsoever resulting from loss of use, data or profits, whether in an
+action of contract, negligence or other tortious action, arising out of
+or in connection with the use or performance of this software.
--
1.9.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [meta-java][PATCH 3/5] jacl: fix license and add license files
2016-02-05 2:16 [meta-java][PATCH 0/5] Fix several license issues jackie.huang
2016-02-05 2:16 ` [meta-java][PATCH 1/5] jikes: fix the license name jackie.huang
2016-02-05 2:16 ` [meta-java][PATCH 2/5] cup: add the license file jackie.huang
@ 2016-02-05 2:16 ` jackie.huang
2016-02-05 2:17 ` [meta-java][PATCH 4/5] jlex: fix the license and add JLEX license file jackie.huang
` (2 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: jackie.huang @ 2016-02-05 2:16 UTC (permalink / raw)
To: openembedded-devel
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset="UTF-8", Size: 11733 bytes --]
From: Jackie Huang <jackie.huang@windriver.com>
license.amd(AMD): applies to the TJC compiler source and test files
license.itcl(CDS): applies to the Itcl source and test files
license.ucb(UCB): applies to portions of Jacl and Tcl Blend sources
license.terms(SUN): applies to the other cource files
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
---
licenses/AMD | 50 +++++++++++++++++++++++++
licenses/CDS | 83 +++++++++++++++++++++++++++++++++++++++++
licenses/SUN | 31 +++++++++++++++
recipes-core/jacl/jacl_1.4.1.bb | 5 ++-
4 files changed, 167 insertions(+), 2 deletions(-)
create mode 100644 licenses/AMD
create mode 100644 licenses/CDS
create mode 100644 licenses/SUN
diff --git a/licenses/AMD b/licenses/AMD
new file mode 100644
index 0000000..30cef1b
--- /dev/null
+++ b/licenses/AMD
@@ -0,0 +1,50 @@
+© 2005 Advanced Micro Devices, Inc. All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that existing copyright notices
+are retained in all copies, this notice is included verbatim in any
+distributions, and the terms and conditions hererin are met.
+
+Use of the this software manifests acceptance of the terms of this
+license by performance.
+
+The name of Advanced Micro Devices, Inc. may not be used to endorse or
+promote products derived from this software without specific prior
+written permission.
+
+THIS SOFTWARE IS PROVIDED BY ADVANCED MICRO DEVICES, INC. "AS IS" AND ANY
+EXPRESS, IMPLIED OR STATUTORY WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
+THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
+PURPOSE AND NON-INFRINGEMENT, OR THOSE ARISING FROM CUSTOM OF TRADE OR
+COURSE OF USAGE ARE DISCLAIMED.
+
+IN NO EVENT SHALL ADVANCED MICRO DEVICES, INC. BE LIABLE FOR ANY DIRECT,
+INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+CAUSED, AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+OUT OF THE USE OF THIS SOFTWARE ITS DOCUMENTATION OR ANY DERIVATIVES
+THEREOF, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. BY USING THIS
+SOFTWARE WITHOUT CHARGE, YOU ACCEPT THIS ALLOCATION OF RISK. THIS
+DISCLAIMER OF LIABILITY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE.
+ADVANCED MICRO DEVICES, INC. HAS NO OBLIGATION TO PROVIDE MAINTENANCE,
+SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS OF THIS SOFTWARE.
+
+In the redistribution and use of this software, each party shall at all
+times comply with all applicable governmental laws, statutes, ordinances,
+rules, regulations, orders, and other requirements, including without
+limitation such governmental requirements applicable to environmental
+protection, health, safety, wages, hours, equal employment opportunity,
+nondiscrimination, working conditions, import or export control, and
+transportation. Without limiting the foregoing, each party shall adhere
+to the U.S. Export Administration Regulations (EAR), currently found at
+15 C.F.R. Sections 730 through 744, and, unless properly authorized by
+the U.S. Government, shall not (1) export, re-export or release restricted
+technology, software, or source code to a national of a country in Country
+Groups D:1 or E:1, or (2) export to Country Groups D:1 or E:1 the direct
+product of such technology or software, if such foreign produced direct
+product is subject to national security controls as identified on the
+Commerce Control List (currently found in Supplement 1 to Section 774 of EAR).
+These export requirements shall survive any expiration or termination
+of this agreement.
diff --git a/licenses/CDS b/licenses/CDS
new file mode 100644
index 0000000..296de7f
--- /dev/null
+++ b/licenses/CDS
@@ -0,0 +1,83 @@
+This software is copyrighted by Cadence Design Systems, Inc., and other
+parties. The following terms apply to all files associated with the
+software unless explicitly disclaimed in individual files.
+
+The authors hereby grant permission to use, copy, modify, distribute,
+and license this software and its documentation for any purpose, provided
+that existing copyright notices are retained in all copies and that this
+notice is included verbatim in any distributions. No written agreement,
+license, or royalty fee is required for any of the authorized uses.
+Modifications to this software may be copyrighted by their authors
+and need not follow the licensing terms described here, provided that
+the new terms are clearly indicated on the first page of each file where
+they apply.
+
+IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY
+FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
+ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY
+DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE
+POSSIBILITY OF SUCH DAMAGE.
+
+THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES,
+INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE
+IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE
+NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR
+MODIFICATIONS.
+
+GOVERNMENT USE: If you are acquiring this software on behalf of the
+U.S. government, the Government shall have only "Restricted Rights"
+in the software and related documentation as defined in the Federal
+Acquisition Regulations (FARs) in Clause 52.227.19 (c) (2). If you
+are acquiring the software on behalf of the Department of Defense, the
+software shall be classified as "Commercial Computer Software" and the
+Government shall have only "Restricted Rights" as defined in Clause
+252.227-7013 (c) (1) of DFARs. Notwithstanding the foregoing, the
+authors grant the U.S. Government and others acting in its behalf
+permission to use and distribute the software in accordance with the
+terms specified in this license.
+
+-----------------------------------------------------------------------
+ Following is the original agreement for the Tcl/Tk software from
+ Sun Microsystems.
+-----------------------------------------------------------------------
+
+This software is copyrighted by the Regents of the University of
+California, Sun Microsystems, Inc., and other parties. The following
+terms apply to all files associated with the software unless explicitly
+disclaimed in individual files.
+
+The authors hereby grant permission to use, copy, modify, distribute,
+and license this software and its documentation for any purpose, provided
+that existing copyright notices are retained in all copies and that this
+notice is included verbatim in any distributions. No written agreement,
+license, or royalty fee is required for any of the authorized uses.
+Modifications to this software may be copyrighted by their authors
+and need not follow the licensing terms described here, provided that
+the new terms are clearly indicated on the first page of each file where
+they apply.
+
+IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY
+FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
+ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY
+DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE
+POSSIBILITY OF SUCH DAMAGE.
+
+THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES,
+INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE
+IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE
+NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR
+MODIFICATIONS.
+
+GOVERNMENT USE: If you are acquiring this software on behalf of the
+U.S. government, the Government shall have only "Restricted Rights"
+in the software and related documentation as defined in the Federal
+Acquisition Regulations (FARs) in Clause 52.227.19 (c) (2). If you
+are acquiring the software on behalf of the Department of Defense, the
+software shall be classified as "Commercial Computer Software" and the
+Government shall have only "Restricted Rights" as defined in Clause
+252.227-7013 (c) (1) of DFARs. Notwithstanding the foregoing, the
+authors grant the U.S. Government and others acting in its behalf
+permission to use and distribute the software in accordance with the
+terms specified in this license.
diff --git a/licenses/SUN b/licenses/SUN
new file mode 100644
index 0000000..a5e92b5
--- /dev/null
+++ b/licenses/SUN
@@ -0,0 +1,31 @@
+SUN MICROSYSTEMS, INC. THROUGH ITS SUN MICROSYSTEMS LABORATORIES
+DIVISION ("SUN") WILL LICENSE THIS SOFTWARE AND THE ACCOMPANYING
+DOCUMENTATION TO YOU (a "Licensee") ONLY ON YOUR ACCEPTANCE OF ALL
+THE TERMS SET FORTH BELOW.
+
+Sun grants Licensee a non-exclusive, royalty-free right to download,
+install, compile, use, copy and distribute the Software, modify or
+otherwise create derivative works from the Software (each, a
+"Modification") and distribute any Modification in source code and/or
+binary code form to its customers with a license agreement containing
+these terms and noting that the Software has been modified. The
+Software is copyrighted by Sun and other third parties and Licensee
+shall retain and reproduce all copyright and other notices presently
+on the Software. As between Sun and Licensee, Sun is the sole owner of
+all rights in and to the Software other than the limited rights
+granted to Licensee herein; Licensee will own its Modifications,
+expressly subject to Sun's continuing ownership of the
+Software. Licensee will, at its expense, defend and indemnify Sun and
+its licensors from and against any third party claims, including costs
+and reasonable attorneys' fees, and be wholly responsible for any
+liabilities arising out of or related to Licensee's development, use
+or distribution of the Software or Modifications. Any distribution of
+the Software and Modifications must comply with all applicable United
+States export control laws.
+
+THE SOFTWARE IS BEING PROVIDED TO LICENSEE "AS IS" AND ALL EXPRESS OR
+IMPLIED CONDITIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT,
+ARE DISCLAIMED. IN NO EVENT WILL SUN BE LIABLE HEREUNDER FOR ANY
+DIRECT DAMAGES OR ANY INDIRECT, PUNITIVE, SPECIAL, INCIDENTAL OR
+CONSEQUENTIAL DAMAGES OF ANY KIND.
diff --git a/recipes-core/jacl/jacl_1.4.1.bb b/recipes-core/jacl/jacl_1.4.1.bb
index b413719..4c6b7b1 100644
--- a/recipes-core/jacl/jacl_1.4.1.bb
+++ b/recipes-core/jacl/jacl_1.4.1.bb
@@ -1,9 +1,10 @@
DESCRIPTION = "Tcl interpreter for Java"
-# see this case study about JACL http://olex.openlogic.com/wazi/2008/jacl-license-case-study/
-LICENSE = "JACL"
+LICENSE = "UCB & SUN & AMD & CDS"
LIC_FILES_CHKSUM = " \
file://license.ucb;md5=997c6617d2f2a747e39945c0f2d1a264 \
file://license.terms;md5=ce3ac33515250b3a438b2633ccb29aac \
+ file://license.itcl;md5=52f12c6c2c239f3481edb3e52fc638b8 \
+ file://license.amd;md5=a286e569daafb1cf4c3f943d354badab \
"
HOMEPAGE = "http://sourceforge.net/projects/tcljava"
--
1.9.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [meta-java][PATCH 4/5] jlex: fix the license and add JLEX license file
2016-02-05 2:16 [meta-java][PATCH 0/5] Fix several license issues jackie.huang
` (2 preceding siblings ...)
2016-02-05 2:16 ` [meta-java][PATCH 3/5] jacl: fix license and add license files jackie.huang
@ 2016-02-05 2:17 ` jackie.huang
2016-02-05 2:17 ` [meta-java][PATCH 5/5] classpath: fix the license jackie.huang
2016-02-05 17:07 ` [meta-java][PATCH 0/5] Fix several license issues Maxin B. John
5 siblings, 0 replies; 7+ messages in thread
From: jackie.huang @ 2016-02-05 2:17 UTC (permalink / raw)
To: openembedded-devel
From: Jackie Huang <jackie.huang@windriver.com>
The license statement is in the middle of source file
Main.java, it's not correct to referrence the COREBASE
MIT license in LIC_FILES_CHKSUM.
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
---
licenses/JLEX | 19 +++++++++++++++++++
recipes-core/jlex/jlex_1.2.6.bb | 4 +---
2 files changed, 20 insertions(+), 3 deletions(-)
create mode 100644 licenses/JLEX
diff --git a/licenses/JLEX b/licenses/JLEX
new file mode 100644
index 0000000..df0648e
--- /dev/null
+++ b/licenses/JLEX
@@ -0,0 +1,19 @@
+ JLEX COPYRIGHT NOTICE, LICENSE, AND DISCLAIMER
+ Copyright 1996-2000 by Elliot Joel Berk and C. Scott Ananian
+
+ Permission to use, copy, modify, and distribute this software and its
+ documentation for any purpose and without fee is hereby granted,
+ provided that the above copyright notice appear in all copies and that
+ both the copyright notice and this permission notice and warranty
+ disclaimer appear in supporting documentation, and that the name of
+ the authors or their employers not be used in advertising or publicity
+ pertaining to distribution of the software without specific, written
+ prior permission.
+
+ The authors and their employers disclaim all warranties with regard to
+ this software, including all implied warranties of merchantability and
+ fitness. In no event shall the authors or their employers be liable
+ for any special, indirect or consequential damages or any damages
+ whatsoever resulting from loss of use, data or profits, whether in an
+ action of contract, negligence or other tortious action, arising out
+ of or in connection with the use or performance of this software.
diff --git a/recipes-core/jlex/jlex_1.2.6.bb b/recipes-core/jlex/jlex_1.2.6.bb
index 4dbe63e..bb67a46 100644
--- a/recipes-core/jlex/jlex_1.2.6.bb
+++ b/recipes-core/jlex/jlex_1.2.6.bb
@@ -1,9 +1,7 @@
DESCRIPTION = "Lexical analyzer generator for Java"
AUTHOR = "Elliot Berk, A. Appel, C. Scott Ananian"
LICENSE = "JLEX"
-LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=4d92cd373abda3937c2bc47fbc49d690 \
- file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420 \
- "
+LIC_FILES_CHKSUM = "file://Main.java;beginline=148;endline=166;md5=9bf4a6a951053991db64f9d7330d648a"
RDEPENDS_${PN} = "java2-runtime"
RDEPENDS_${PN}_virtclass-native = ""
--
1.9.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [meta-java][PATCH 5/5] classpath: fix the license
2016-02-05 2:16 [meta-java][PATCH 0/5] Fix several license issues jackie.huang
` (3 preceding siblings ...)
2016-02-05 2:17 ` [meta-java][PATCH 4/5] jlex: fix the license and add JLEX license file jackie.huang
@ 2016-02-05 2:17 ` jackie.huang
2016-02-05 17:07 ` [meta-java][PATCH 0/5] Fix several license issues Maxin B. John
5 siblings, 0 replies; 7+ messages in thread
From: jackie.huang @ 2016-02-05 2:17 UTC (permalink / raw)
To: openembedded-devel
From: Jackie Huang <jackie.huang@windriver.com>
There is no 'Classpath' license, set it as
the same with classpath-native.
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
---
recipes-core/classpath/classpath.inc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/recipes-core/classpath/classpath.inc b/recipes-core/classpath/classpath.inc
index 2be849b..01f7a4f 100644
--- a/recipes-core/classpath/classpath.inc
+++ b/recipes-core/classpath/classpath.inc
@@ -3,7 +3,7 @@ HOMEPAGE = "http://www.gnu.org/software/classpath/"
SECTION = "libs"
# GPLv2 + custom linking exception
-LICENSE = "Classpath"
+LICENSE = "GPL-2.0 & SAX-PD"
PBN = "classpath"
--
1.9.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [meta-java][PATCH 0/5] Fix several license issues
2016-02-05 2:16 [meta-java][PATCH 0/5] Fix several license issues jackie.huang
` (4 preceding siblings ...)
2016-02-05 2:17 ` [meta-java][PATCH 5/5] classpath: fix the license jackie.huang
@ 2016-02-05 17:07 ` Maxin B. John
5 siblings, 0 replies; 7+ messages in thread
From: Maxin B. John @ 2016-02-05 17:07 UTC (permalink / raw)
To: openembedded-devel
Hi,
On Fri, Feb 05, 2016 at 10:16:56AM +0800, jackie.huang@windriver.com wrote:
> From: Jackie Huang <jackie.huang@windriver.com>
>
> Fixed the following license issues:
> WARNING: jikes-native: No generic license file exists for: IBM in any provider
> WARNING: cup-native: No generic license file exists for: CUP in any provider
> WARNING: jacl-native: No generic license file exists for: JACL in any provider
> WARNING: jlex-native: No generic license file exists for: JLEX in any provider
> WARNING: classpath: No generic license file exists for: Classpath in any provider
>
> --
> The following changes since commit b7fe60a8e23664b3c637fa913ccdcfd0c122487e:
>
> cacao: remove invalid configure options (2016-01-29 11:37:51 +0200)
>
> are available in the git repository at:
>
> git://git.pokylinux.org/poky-contrib.git jhuang0/d_java-licenses_160205-0
> http://git.pokylinux.org/cgit.cgi//log/?h=jhuang0/d_java-licenses_160205-0
>
> Jackie Huang (5):
> jikes: fix the license name
> cup: add the license file
> jacl: fix license and add license files
> jlex: fix the license and add JLEX license file
> classpath: fix the license
>
> licenses/AMD | 50 ++++++++++++++++++++++
> licenses/CDS | 83 ++++++++++++++++++++++++++++++++++++
> licenses/CUP | 20 +++++++++
> licenses/JLEX | 19 +++++++++
> licenses/SUN | 31 ++++++++++++++
> recipes-core/classpath/classpath.inc | 2 +-
> recipes-core/jacl/jacl_1.4.1.bb | 5 ++-
> recipes-core/jikes/jikes_1.22.bb | 2 +-
> recipes-core/jlex/jlex_1.2.6.bb | 4 +-
> 9 files changed, 209 insertions(+), 7 deletions(-)
> create mode 100644 licenses/AMD
> create mode 100644 licenses/CDS
> create mode 100644 licenses/CUP
> create mode 100644 licenses/JLEX
> create mode 100644 licenses/SUN
>
Pushed these changes to the repo. Thank you!
Best Regards,
Maxin
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2016-02-05 17:05 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-05 2:16 [meta-java][PATCH 0/5] Fix several license issues jackie.huang
2016-02-05 2:16 ` [meta-java][PATCH 1/5] jikes: fix the license name jackie.huang
2016-02-05 2:16 ` [meta-java][PATCH 2/5] cup: add the license file jackie.huang
2016-02-05 2:16 ` [meta-java][PATCH 3/5] jacl: fix license and add license files jackie.huang
2016-02-05 2:17 ` [meta-java][PATCH 4/5] jlex: fix the license and add JLEX license file jackie.huang
2016-02-05 2:17 ` [meta-java][PATCH 5/5] classpath: fix the license jackie.huang
2016-02-05 17:07 ` [meta-java][PATCH 0/5] Fix several license issues Maxin B. John
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.