summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2018-09-16 17:54:00 +0900
committerTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2018-09-16 17:54:00 +0900
commit662d22a9067eec47da1a5f37985e510a2c8ec792 (patch)
tree2e416c0daeaed588b7e96140e11c05f54094021b
parentc285f24489b073013373b4eb1978516112e3281d (diff)
downloadbuildstream-662d22a9067eec47da1a5f37985e510a2c8ec792.tar.gz
buildstream/_frontend/complete.py: Added missing click license compliance
Somehow I missed this when originally forking the file from the click library, now noticing that we should have followed what was written in: https://github.com/pallets/click/blob/master/LICENSE
-rw-r--r--buildstream/_frontend/complete.py19
1 files changed, 17 insertions, 2 deletions
diff --git a/buildstream/_frontend/complete.py b/buildstream/_frontend/complete.py
index 97d6d45ec..5606f13e5 100644
--- a/buildstream/_frontend/complete.py
+++ b/buildstream/_frontend/complete.py
@@ -1,4 +1,5 @@
#
+# Copyright (c) 2014 by Armin Ronacher.
# Copyright (C) 2016 Codethink Limited
#
# This program is free software; you can redistribute it and/or
@@ -14,8 +15,22 @@
# You should have received a copy of the GNU Lesser General Public
# License along with this library. If not, see <http://www.gnu.org/licenses/>.
#
-# This module was forked from the python click library.
-
+# This module was forked from the python click library, Included
+# original copyright notice from the Click library and following disclaimer
+# as per their LICENSE requirements.
+#
+# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+# OWNER OR CONTRIBUTORS 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, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+#
import collections
import copy
import os