Skip to content

Commit a737552

Browse files
authored
Improve LICENSE/NOTICE treatment of bundled non-ASF files. (#341)
Restructure declaration of the licenses of the two bundled files fakengx.lua and fakeredis.lua following the guidance at http://www.apache.org/dev/licensing-howto.html#bundled-vs-non-bundled.
1 parent 4071f82 commit a737552

File tree

7 files changed

+51
-62
lines changed

7 files changed

+51
-62
lines changed

DEPENDENCIES.md

-27
This file was deleted.

LICENSE.txt

+10
Original file line numberDiff line numberDiff line change
@@ -200,3 +200,13 @@
200200
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
201201
See the License for the specific language governing permissions and
202202
limitations under the License.
203+
204+
========================================================================
205+
MIT License
206+
========================================================================
207+
208+
This project bundles the file fakengx.lua which is distributed
209+
under the MIT license. For details, see tests/fakengx.lua.
210+
211+
This project bundles the file fakeredis.lua which is distributed
212+
under the MIT license. For details, see tests/fakeredis.lua.

NOTICE.txt

-9
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,3 @@ Copyright 2016-2019 The Apache Software Foundation
33

44
This product includes software developed at
55
The Apache Software Foundation (http://www.apache.org/).
6-
7-
========================================================================
8-
MIT License
9-
========================================================================
10-
11-
The following components are provided under the MIT License. See project link for details.
12-
13-
(MIT License) fakengx (bsm/fakengx - https://github.com/bsm/fakengx)
14-
(MIT License) fakeredis (catwell/fakeredis - https://github.com/catwell/fakeredis)

tests/fakengx.lua

+18-13
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,24 @@
1+
-- Copyright (c) 2012 Dimitrij Denissenko
12
--
2-
-- Licensed to the Apache Software Foundation (ASF) under one or more
3-
-- contributor license agreements. See the NOTICE file distributed with
4-
-- this work for additional information regarding copyright ownership.
5-
-- The ASF licenses this file to You under the Apache License, Version 2.0
6-
-- (the "License"); you may not use this file except in compliance with
7-
-- the License. You may obtain a copy of the License at
3+
-- Permission is hereby granted, free of charge, to any person obtaining a copy of
4+
-- this software and associated documentation files (the "Software"), to deal in
5+
-- the Software without restriction, including without limitation the rights to
6+
-- use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
7+
-- of the Software, and to permit persons to whom the Software is furnished to do
8+
-- so, subject to the following conditions:
89
--
9-
-- http://www.apache.org/licenses/LICENSE-2.0
10-
--
11-
-- Unless required by applicable law or agreed to in writing, software
12-
-- distributed under the License is distributed on an "AS IS" BASIS,
13-
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14-
-- See the License for the specific language governing permissions and
15-
-- limitations under the License.
10+
-- The above copyright notice and this permission notice shall be included in all
11+
-- copies or substantial portions of the Software.
1612
--
13+
-- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14+
-- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15+
-- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16+
-- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17+
-- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18+
-- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19+
-- SOFTWARE.
20+
21+
-- fakengx.lua was copied from https://github.com/bsm/fakengx
1722

1823
local bit = require 'bit'
1924
local socket = require 'socket'

tests/fakeredis.lua

+18-12
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,26 @@
1+
-- Copyright (C) 2012-2016 by Pierre Chapuis
12
--
2-
-- Licensed to the Apache Software Foundation (ASF) under one or more
3-
-- contributor license agreements. See the NOTICE file distributed with
4-
-- this work for additional information regarding copyright ownership.
5-
-- The ASF licenses this file to You under the Apache License, Version 2.0
6-
-- (the "License"); you may not use this file except in compliance with
7-
-- the License. You may obtain a copy of the License at
3+
-- Permission is hereby granted, free of charge, to any person obtaining a copy
4+
-- of this software and associated documentation files (the "Software"), to deal
5+
-- in the Software without restriction, including without limitation the rights
6+
-- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7+
-- copies of the Software, and to permit persons to whom the Software is
8+
-- furnished to do so, subject to the following conditions:
89
--
9-
-- http://www.apache.org/licenses/LICENSE-2.0
10+
-- The above copyright notice and this permission notice shall be included in
11+
-- all copies or substantial portions of the Software.
1012
--
11-
-- Unless required by applicable law or agreed to in writing, software
12-
-- distributed under the License is distributed on an "AS IS" BASIS,
13-
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14-
-- See the License for the specific language governing permissions and
15-
-- limitations under the License.
13+
-- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14+
-- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15+
-- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16+
-- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17+
-- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18+
-- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19+
-- THE SOFTWARE.
1620
--
1721

22+
-- fakeredis.lua was copied from https://github.com/catwell/fakeredis
23+
1824
local unpack = table.unpack or unpack
1925
local cjson = require 'cjson'
2026
--- Bit operations

tools/travis/build.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,9 @@ UTILDIR="$HOMEDIR/incubator-openwhisk-utilities"
2828
export OPENWHISK_HOME=$WHISKDIR
2929

3030
# run scancode util. against project source using the ASF strict configuration
31+
# exclude two bundled files from other open source projects that are MIT licensed
3132
cd $UTILDIR
32-
scancode/scanCode.py --config scancode/ASF-Release.cfg $ROOTDIR
33+
scancode/scanCode.py --config scancode/ASF-Release.cfg --gitignore $SCRIPTDIR/scancodeExclusions $ROOTDIR
3334

3435
# Install OpenWhisk
3536
cd $OPENWHISK_HOME/ansible

tools/travis/scancodeExclusions

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# bundled files under MIT license; exclude from scan
2+
tests/fakengx.lua
3+
tests/fakeredis.lua

0 commit comments

Comments
 (0)