You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kudu.apache.org by to...@apache.org on 2016/03/03 00:40:38 UTC

incubator-kudu git commit: KUDU-1347. Improve licensing documentation

Repository: incubator-kudu
Updated Branches:
  refs/heads/branch-0.7.x 8a5133649 -> 75b096e62


KUDU-1347. Improve licensing documentation

This addresses a few issues and suggestions raised on our
0.7.0 release candidate vote:

- Many of the licenses previously mentioned in LICENSE.txt do not actually
  require that they be reproduced in binary distributions. Since we already
  include the license text in the source headers themselves, we can just
  refer the reader to the source.

  For those licenses which require some form of notice or attribution in
  binary distributions, we continue to copy-paste the license text into
  the LICENSE.txt file.

- Copy the CMake BSD license notice into the FindProtobuf.cmake file.
  Even though we substantially rewrote it, it could be considered a
  derived work.

- Relocate the copyright notices for Slice.java and Slices.java into the
  source header for those files, so that we can remove the extra copy of the
  Apache license from LICENSE.txt.

  Similarly, relocate the authorship information for HdrHistogram into the
  source code. Since it's a public domain library, it doesn't require
  any attribution.

- Remove a stray Cloudera copyright notice from python/Makefile

- Add a copy of the Boost license to the thirdparty/boost_uuid/ directory
  and reference it from the top-level LICENSE instead of copying it. This
  license does not require attribution in binary distributions.

- Fix the reference to the WebRTC code to include random.h (not just
  random-util.cc)

Change-Id: I95e5a86128e677839c84e209ba4f7c910c33517d
Reviewed-on: http://gerrit.cloudera.org:8080/2417
Reviewed-by: Jean-Daniel Cryans
Tested-by: Todd Lipcon <to...@apache.org>
(cherry picked from commit cd3aa0ee636ce7008750922d5b55620aab03a97e)
Reviewed-on: http://gerrit.cloudera.org:8080/2419
Reviewed-by: Todd Lipcon <to...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/incubator-kudu/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-kudu/commit/75b096e6
Tree: http://git-wip-us.apache.org/repos/asf/incubator-kudu/tree/75b096e6
Diff: http://git-wip-us.apache.org/repos/asf/incubator-kudu/diff/75b096e6

Branch: refs/heads/branch-0.7.x
Commit: 75b096e625fae8e3adbbc11af9d36cac8d0446f2
Parents: 8a51336
Author: Todd Lipcon <to...@apache.org>
Authored: Tue Mar 1 18:36:31 2016 -0800
Committer: Todd Lipcon <to...@apache.org>
Committed: Wed Mar 2 23:34:52 2016 +0000

----------------------------------------------------------------------
 LICENSE.txt                                     | 176 +++----------------
 cmake_modules/FindProtobuf.cmake                |  61 +++++--
 .../src/main/java/org/kududb/util/Slice.java    |   3 +
 .../src/main/java/org/kududb/util/Slices.java   |   8 +-
 python/Makefile                                 |   2 -
 src/kudu/util/hdr_histogram.cc                  |   7 +
 src/kudu/util/hdr_histogram.h                   |   9 +-
 src/kudu/util/url-coding.cc                     |  11 --
 thirdparty/boost_uuid/LICENSE.txt               |  23 +++
 9 files changed, 118 insertions(+), 182 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-kudu/blob/75b096e6/LICENSE.txt
----------------------------------------------------------------------
diff --git a/LICENSE.txt b/LICENSE.txt
index 9a41fdf..5116c0c 100644
--- a/LICENSE.txt
+++ b/LICENSE.txt
@@ -201,10 +201,11 @@
    limitations under the License.
 
 --------------------------------------------------------------------------------
+
 src/kudu/gutil (some portions): Apache 2.0, and 3-clause BSD
 
-This module is derived from code in the Chromium project, copyright
-(c) Google inc and (c) The Chromium Authors and licensed under the
+Some portions of this module are derived from code in the Chromium project,
+copyright (c) Google inc and (c) The Chromium Authors and licensed under the
 Apache 2.0 License or the under the 3-clause BSD license:
 
   Copyright (c) 2013 The Chromium Authors. All rights reserved.
@@ -253,48 +254,8 @@ src/kudu/gutil/utf: licensed under the following terms:
   REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE MERCHANTABILITY
   OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR PURPOSE.
 
-
 --------------------------------------------------------------------------------
 
-src/kudu/gutil/valgrind.h: Hybrid BSD (half BSD, half zlib)
-
-   This file is part of Valgrind, a dynamic binary instrumentation
-   framework.
-
-   Copyright (C) 2000-2008 Julian Seward.  All rights reserved.
-
-   Redistribution and use in source and binary forms, with or without
-   modification, are permitted provided that the following conditions
-   are met:
-
-   1. Redistributions of source code must retain the above copyright
-      notice, this list of conditions and the following disclaimer.
-
-   2. The origin of this software must not be misrepresented; you must
-      not claim that you wrote the original software.  If you use this
-      software in a product, an acknowledgment in the product
-      documentation would be appreciated but is not required.
-
-   3. Altered source versions must be plainly marked as such, and must
-      not be misrepresented as being the original software.
-
-   4. The name of the author may not be used to endorse or promote
-      products derived from this software without specific prior written
-      permission.
-
-   THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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.
-
---------------------------------------------------------------------------------
 src/kudu/util (some portions): 3-clause BSD license
 
 Some portions of this module are derived from code from LevelDB
@@ -329,19 +290,9 @@ Some portions of this module are derived from code from LevelDB
   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
 --------------------------------------------------------------------------------
-src/kudu/util (HdrHistogram-related classes): public domain
-
-Portions of these classes were ported from Java to C++ from the sources
-available at https://github.com/HdrHistogram/HdrHistogram .
-
-  The code in this repository code was Written by Gil Tene, Michael Barker,
-  and Matt Warren, and released to the public domain, as explained at
-  http://creativecommons.org/publicdomain/zero/1.0/
-
---------------------------------------------------------------------------------
-
-src/kudu/util/random-util.cc: some portions adapted from WebRTC project
-(modules/video_coding/main/test/test_util.cc) under a 3-clause BSD license.
+src/kudu/util/{random-util.cc},{random.h}: some portions adapted from WebRTC
+project (modules/video_coding/main/test/test_util.cc) under a 3-clause BSD
+license.
 
   Copyright (c) 2011, The WebRTC project authors. All rights reserved.
 
@@ -445,53 +396,6 @@ BSD license with an additional grant of patent rights:
 
 --------------------------------------------------------------------------------
 
-src/kudu/server/url-coding.cc: some portions adapted from the Boost project
-thirdparty/boost_uuid/:
-
-  Boost Software License - Version 1.0 - August 17th, 2003
-
-  Permission is hereby granted, free of charge, to any person or organization
-  obtaining a copy of the software and accompanying documentation covered by
-  this license (the "Software") to use, reproduce, display, distribute,
-  execute, and transmit the Software, and to prepare derivative works of the
-  Software, and to permit third-parties to whom the Software is furnished to
-  do so, all subject to the following:
-
-  The copyright notices in the Software and this entire statement, including
-  the above license grant, this restriction and the following disclaimer,
-  must be included in all copies of the Software, in whole or in part, and
-  all derivative works of the Software, unless such copies or derivative
-  works are solely in the form of machine-executable object code generated by
-  a source language processor.
-
-  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-  FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
-  SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
-  FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
-  ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
-  DEALINGS IN THE SOFTWARE.
-
---------------------------------------------------------------------------------
-
-www/bootstrap: Apache 2.0 license
-
-   Copyright 2012 Twitter, Inc
-
-   Licensed under the Apache License, Version 2.0 (the "License");
-   you may not use this file except in compliance with the License.
-   You may obtain a copy of the License at
-
-       http://www.apache.org/licenses/LICENSE-2.0
-
-   Unless required by applicable law or agreed to in writing, software
-   distributed under the License is distributed on an "AS IS" BASIS,
-   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-   See the License for the specific language governing permissions and
-   limitations under the License.
-
---------------------------------------------------------------------------------
-
 www/d3.v2.js: BSD 3-clause license
 
    Copyright (c) 2012, Michael Bostock
@@ -520,6 +424,7 @@ www/d3.v2.js: BSD 3-clause license
    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.
+
 --------------------------------------------------------------------------------
 
 www/epoch.*: MIT license
@@ -576,28 +481,6 @@ www/jquery*.js: MIT license
 
 --------------------------------------------------------------------------------
 
-java/kudu-client/src/main/java/org/kududb/util/: Slice.java and Slices.java
-
-  Derived from the LevelDB Java project at https://github.com/dain/leveldb/
-  Licensed under the Apache 2.0 license with the following copyrights:
-
-  Copyright 2011 Dain Sundstrom <da...@iq80.com>
-  Copyright 2011 FuseSource Corp. http://fusesource.com
-
-  Licensed under the Apache License, Version 2.0 (the "License");
-  you may not use this file except in compliance with the License.
-  You may obtain a copy of the License at
-
-      http://www.apache.org/licenses/LICENSE-2.0
-
-  Unless required by applicable law or agreed to in writing, software
-  distributed under the License is distributed on an "AS IS" BASIS,
-  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  See the License for the specific language governing permissions and
-  limitations under the License.
-
---------------------------------------------------------------------------------
-
 java/kudu-client/: Some classes are derived from the AsyncHBase project
 under the following 3-clause BSD license:
 
@@ -626,34 +509,33 @@ under the following 3-clause BSD license:
   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   POSSIBILITY OF SUCH DAMAGE.
 
---------------------------------------------------------------------------------
-
-.ycm_extra_conf.py: public domain
+================================================================================
 
-  This is free and unencumbered software released into the public domain.
+The following dependencies or pieces of incorporated source code have licenses
+such that either:
+  (a) do not require their license text to be re-distributed with binary
+      distributions, or
+  (b) have no requirements about re-distributing their license text in either
+      source or binary distributions, or
+  (c) are the same Apache 2.0 license reproduced in its entirety above.
 
-  Anyone is free to copy, modify, publish, use, compile, sell, or
-  distribute this software, either in source code form or as a compiled
-  binary, for any purpose, commercial or non-commercial, and by any
-  means.
+Therefore, we do not reproduce their licenses in their entirety in this file.
+--------------------------------------------------------------------------------
 
-  In jurisdictions that recognize copyright laws, the author or authors
-  of this software dedicate any and all copyright interest in the
-  software to the public domain. We make this dedication for the benefit
-  of the public at large and to the detriment of our heirs and
-  successors. We intend this dedication to be an overt act of
-  relinquishment in perpetuity of all present and future rights to this
-  software under copyright law.
+.ycm_extra_conf.py: public domain
+cmake_modules/FindGMock.cmake: MIT license
+cmake_modules/FindProtobuf.cmake: BSD 3-clause license
+src/kudu/util (HdrHistogram-related classes): public domain
+src/kudu/gutil/valgrind.h: Hybrid BSD (half BSD, half zlib)
+  - See the file headers for full license text.
 
-  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
-  IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
-  OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
-  ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
-  OTHER DEALINGS IN THE SOFTWARE.
+src/kudu/server/url-coding.cc (some portions): Boost software license
+thirdparty/boost_uuid/: Boost software license
+  - See thirdparty/boost_uuid/LICENSE.txt
 
-  For more information, please refer to <http://unlicense.org/>
+www/bootstrap: Apache 2.0 license
+java/kudu-client/src/main/java/org/kududb/util/{Slice,Slices}.java: Apache 2.0 license
+  - See above for full text.
 
 ================================================================================
 

http://git-wip-us.apache.org/repos/asf/incubator-kudu/blob/75b096e6/cmake_modules/FindProtobuf.cmake
----------------------------------------------------------------------
diff --git a/cmake_modules/FindProtobuf.cmake b/cmake_modules/FindProtobuf.cmake
index 128bbf2..ab393c7 100644
--- a/cmake_modules/FindProtobuf.cmake
+++ b/cmake_modules/FindProtobuf.cmake
@@ -14,6 +14,51 @@
 # KIND, either express or implied.  See the License for the
 # specific language governing permissions and limitations
 # under the License.
+#
+#=============================================================================
+# This file is heavily modified/rewritten from FindProtobuf.cmake from the
+# CMake project:
+#
+#   Copyright 2011 Kirill A. Korinskiy <ca...@catap.ru>
+#   Copyright 2009 Kitware, Inc.
+#   Copyright 2009 Philip Lowman <ph...@yhbt.com>
+#   Copyright 2008 Esben Mose Hansen, Ange Optimization ApS
+#
+#   Distributed under the OSI-approved BSD License (the "License"):
+#
+#   CMake - Cross Platform Makefile Generator
+#   Copyright 2000-2015 Kitware, Inc.
+#   Copyright 2000-2011 Insight Software Consortium
+#   All rights reserved.
+#
+#   Redistribution and use in source and binary forms, with or without
+#   modification, are permitted provided that the following conditions
+#   are met:
+#
+#   * Redistributions of source code must retain the above copyright
+#     notice, this list of conditions and the following disclaimer.
+#
+#   * Redistributions in binary form must reproduce the above copyright
+#     notice, this list of conditions and the following disclaimer in the
+#     documentation and/or other materials provided with the distribution.
+#
+#   * Neither the names of Kitware, Inc., the Insight Software Consortium,
+#     nor the names of their contributors may be used to endorse or promote
+#     products derived from this software without specific prior written
+#     permission.
+#
+#   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
+#   HOLDER 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.
+#=============================================================================
 
 #########
 # Local rewrite of the protobuf support in cmake.
@@ -62,22 +107,6 @@
 #          in order to "serialize" the protoc invocations
 #  ====================================================================
 
-#=============================================================================
-# Copyright 2011 Kirill A. Korinskiy <ca...@catap.ru>
-# Copyright 2009 Kitware, Inc.
-# Copyright 2009 Philip Lowman <ph...@yhbt.com>
-# Copyright 2008 Esben Mose Hansen, Ange Optimization ApS
-#
-# Distributed under the OSI-approved BSD License (the "License");
-# see accompanying file Copyright.txt for details.
-#
-# This software is distributed WITHOUT ANY WARRANTY; without even the
-# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-# See the License for more information.
-#=============================================================================
-# (To distributed this file outside of CMake, substitute the full
-#  License text for the above reference.)
-
 function(PROTOBUF_GENERATE_CPP SRCS HDRS TGTS)
   if(NOT ARGN)
     message(SEND_ERROR "Error: PROTOBUF_GENERATE_CPP() called without any proto files")

http://git-wip-us.apache.org/repos/asf/incubator-kudu/blob/75b096e6/java/kudu-client/src/main/java/org/kududb/util/Slice.java
----------------------------------------------------------------------
diff --git a/java/kudu-client/src/main/java/org/kududb/util/Slice.java b/java/kudu-client/src/main/java/org/kududb/util/Slice.java
index a2d5ad1..c9d2719 100644
--- a/java/kudu-client/src/main/java/org/kududb/util/Slice.java
+++ b/java/kudu-client/src/main/java/org/kududb/util/Slice.java
@@ -12,6 +12,9 @@
  * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the
  * License for the specific language governing permissions and limitations
  * under the License.
+ *
+ * Copyright 2011 Dain Sundstrom <da...@iq80.com>
+ * Copyright 2011 FuseSource Corp. http://fusesource.com
  */
 package org.kududb.util;
 

http://git-wip-us.apache.org/repos/asf/incubator-kudu/blob/75b096e6/java/kudu-client/src/main/java/org/kududb/util/Slices.java
----------------------------------------------------------------------
diff --git a/java/kudu-client/src/main/java/org/kududb/util/Slices.java b/java/kudu-client/src/main/java/org/kududb/util/Slices.java
index 7fb9f17..c2cdbde 100644
--- a/java/kudu-client/src/main/java/org/kududb/util/Slices.java
+++ b/java/kudu-client/src/main/java/org/kududb/util/Slices.java
@@ -1,9 +1,4 @@
 /**
- * Copyright (C) 2011 the original author or authors.
- *
- * See the LICENSE.txt file distributed with this work for additional
- * information regarding copyright ownership.
- *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
@@ -20,6 +15,9 @@
  * KIND, either express or implied.  See the License for the
  * specific language governing permissions and limitations
  * under the License.
+ *
+ * Copyright 2011 Dain Sundstrom <da...@iq80.com>
+ * Copyright 2011 FuseSource Corp. http://fusesource.com
  */
 package org.kududb.util;
 

http://git-wip-us.apache.org/repos/asf/incubator-kudu/blob/75b096e6/python/Makefile
----------------------------------------------------------------------
diff --git a/python/Makefile b/python/Makefile
index 3fdd0b6..f8df953 100644
--- a/python/Makefile
+++ b/python/Makefile
@@ -1,5 +1,3 @@
-# Copyright 2016 Cloudera, Inc.
-#
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
 # You may obtain a copy of the License at

http://git-wip-us.apache.org/repos/asf/incubator-kudu/blob/75b096e6/src/kudu/util/hdr_histogram.cc
----------------------------------------------------------------------
diff --git a/src/kudu/util/hdr_histogram.cc b/src/kudu/util/hdr_histogram.cc
index 43bd2a9..e510df3 100644
--- a/src/kudu/util/hdr_histogram.cc
+++ b/src/kudu/util/hdr_histogram.cc
@@ -14,6 +14,13 @@
 // KIND, either express or implied.  See the License for the
 // specific language governing permissions and limitations
 // under the License.
+//
+// Portions of these classes were ported from Java to C++ from the sources
+// available at https://github.com/HdrHistogram/HdrHistogram .
+//
+//   The code in this repository code was Written by Gil Tene, Michael Barker,
+//   and Matt Warren, and released to the public domain, as explained at
+//   http://creativecommons.org/publicdomain/zero/1.0/
 #include "kudu/util/hdr_histogram.h"
 
 #include <algorithm>

http://git-wip-us.apache.org/repos/asf/incubator-kudu/blob/75b096e6/src/kudu/util/hdr_histogram.h
----------------------------------------------------------------------
diff --git a/src/kudu/util/hdr_histogram.h b/src/kudu/util/hdr_histogram.h
index bbfedd1..19e31cc 100644
--- a/src/kudu/util/hdr_histogram.h
+++ b/src/kudu/util/hdr_histogram.h
@@ -18,7 +18,14 @@
 #define KUDU_UTIL_HDRHISTOGRAM_H_
 
 // C++ (TR1) port of HdrHistogram.
-// Original java implementation: http://giltene.github.io/HdrHistogram/
+//
+// Portions of these classes were ported from Java to C++ from the sources
+// available at https://github.com/HdrHistogram/HdrHistogram .
+//
+//   The code in this repository code was Written by Gil Tene, Michael Barker,
+//   and Matt Warren, and released to the public domain, as explained at
+//   http://creativecommons.org/publicdomain/zero/1.0/
+// ---------------------------------------------------------------------------
 //
 // A High Dynamic Range (HDR) Histogram
 //

http://git-wip-us.apache.org/repos/asf/incubator-kudu/blob/75b096e6/src/kudu/util/url-coding.cc
----------------------------------------------------------------------
diff --git a/src/kudu/util/url-coding.cc b/src/kudu/util/url-coding.cc
index 4aae48e..6c3f26c 100644
--- a/src/kudu/util/url-coding.cc
+++ b/src/kudu/util/url-coding.cc
@@ -15,17 +15,6 @@
 // specific language governing permissions and limitations
 // under the License.
 //
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
 
 #include "kudu/util/url-coding.h"
 

http://git-wip-us.apache.org/repos/asf/incubator-kudu/blob/75b096e6/thirdparty/boost_uuid/LICENSE.txt
----------------------------------------------------------------------
diff --git a/thirdparty/boost_uuid/LICENSE.txt b/thirdparty/boost_uuid/LICENSE.txt
new file mode 100644
index 0000000..0076b2d
--- /dev/null
+++ b/thirdparty/boost_uuid/LICENSE.txt
@@ -0,0 +1,23 @@
+  Boost Software License - Version 1.0 - August 17th, 2003
+
+  Permission is hereby granted, free of charge, to any person or organization
+  obtaining a copy of the software and accompanying documentation covered by
+  this license (the "Software") to use, reproduce, display, distribute,
+  execute, and transmit the Software, and to prepare derivative works of the
+  Software, and to permit third-parties to whom the Software is furnished to
+  do so, all subject to the following:
+
+  The copyright notices in the Software and this entire statement, including
+  the above license grant, this restriction and the following disclaimer,
+  must be included in all copies of the Software, in whole or in part, and
+  all derivative works of the Software, unless such copies or derivative
+  works are solely in the form of machine-executable object code generated by
+  a source language processor.
+
+  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+  FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
+  SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
+  FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
+  ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+  DEALINGS IN THE SOFTWARE.