You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@madlib.apache.org by ri...@apache.org on 2016/03/07 21:22:52 UTC

incubator-madlib git commit: Release 1.9alpha: Add MIT license header

Repository: incubator-madlib
Updated Branches:
  refs/heads/master 34520e059 -> c9cb10cda


Release 1.9alpha: Add MIT license header

JIRA: MADLIB-972

- Modified LICENSE file for PyYAML license (MIT)
- Modified pom.xml to reflect name change: linear_svm.sql_in -> svm.sql_in
- Added Apache header for kernel_approximation.py_in

Closes #27


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

Branch: refs/heads/master
Commit: c9cb10cda6c42839d367ca635c8621d8a0b374a1
Parents: 34520e0
Author: Orhan Kislal <ok...@pivotal.io>
Authored: Mon Feb 29 17:00:58 2016 -0800
Committer: Rahul Iyer <ri...@pivotal.io>
Committed: Mon Mar 7 12:22:03 2016 -0800

----------------------------------------------------------------------
 LICENSE                                         | 26 ++++++++++++++++++++
 pom.xml                                         |  2 +-
 .../modules/svm/kernel_approximation.py_in      | 17 +++++++++++++
 3 files changed, 44 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-madlib/blob/c9cb10cd/LICENSE
----------------------------------------------------------------------
diff --git a/LICENSE b/LICENSE
index d7954c9..ddd25d1 100644
--- a/LICENSE
+++ b/LICENSE
@@ -245,6 +245,32 @@ ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 POSSIBILITY OF SUCH DAMAGE.
 
 ***********************************************************************
+
+Source code under src/madpack/yaml is taken from PyYAML project and is 
+available under the MIT license:
+
+Copyright (c) 2006 Kirill Simonov
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of
+this software and associated documentation files (the "Software"), to deal in
+the Software without restriction, including without limitation the rights to
+use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
+of the Software, and to permit persons to whom the Software is furnished to do
+so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+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 OR COPYRIGHT HOLDERS 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.
+
+***********************************************************************
+
 The rest of the source code, unless explicitly marked with an Apache License
 header, should be assumed to be coming from previous life of MADlib as a 
 BSD licensed project and is available under the following license:

http://git-wip-us.apache.org/repos/asf/incubator-madlib/blob/c9cb10cd/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 712c0d0..1fee8a1 100644
--- a/pom.xml
+++ b/pom.xml
@@ -657,7 +657,7 @@
               <exclude>src/ports/postgres/modules/svm/__init__.py_in</exclude>
               <exclude>src/ports/postgres/modules/svm/svm.py_in</exclude>
               <exclude>src/ports/postgres/modules/svm/svm.sql_in</exclude>
-              <exclude>src/ports/postgres/modules/svm/test/linear_svm.sql_in</exclude>
+              <exclude>src/ports/postgres/modules/svm/test/svm.sql_in</exclude>
               <exclude>src/ports/postgres/modules/tsa/__init__.py_in</exclude>
               <exclude>src/ports/postgres/modules/tsa/arima.py_in</exclude>
               <exclude>src/ports/postgres/modules/tsa/arima.sql_in</exclude>

http://git-wip-us.apache.org/repos/asf/incubator-madlib/blob/c9cb10cd/src/ports/postgres/modules/svm/kernel_approximation.py_in
----------------------------------------------------------------------
diff --git a/src/ports/postgres/modules/svm/kernel_approximation.py_in b/src/ports/postgres/modules/svm/kernel_approximation.py_in
index 1d4c982..190692e 100644
--- a/src/ports/postgres/modules/svm/kernel_approximation.py_in
+++ b/src/ports/postgres/modules/svm/kernel_approximation.py_in
@@ -1,3 +1,20 @@
+# 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
+# regarding copyright ownership.  The ASF licenses this file
+# to you 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.
+
 from __future__ import division
 
 import plpy