You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@avro.apache.org by bl...@apache.org on 2015/12/08 18:06:20 UTC

svn commit: r1718650 - in /avro/trunk: NOTICE.txt build.sh lang/ruby/test/case_finder.rb

Author: blue
Date: Tue Dec  8 17:06:20 2015
New Revision: 1718650

URL: http://svn.apache.org/viewvc?rev=1718650&view=rev
Log:
AVRO-1722 ADDENDUM: Add last license doc changes, rat helper.

Modified:
    avro/trunk/NOTICE.txt
    avro/trunk/build.sh
    avro/trunk/lang/ruby/test/case_finder.rb

Modified: avro/trunk/NOTICE.txt
URL: http://svn.apache.org/viewvc/avro/trunk/NOTICE.txt?rev=1718650&r1=1718649&r2=1718650&view=diff
==============================================================================
--- avro/trunk/NOTICE.txt (original)
+++ avro/trunk/NOTICE.txt Tue Dec  8 17:06:20 2015
@@ -10,9 +10,12 @@ NUnit license acknowledgement:
 | W. Newkirk, Michael C. Two, Alexei A. Vorontsov or Copyright © 2000-2002
 | Philip A. Craig 
 
-Portions of the mapreduce API included in the Java implementation are licensed
-to Odiago, Inc. and were contributed by Odiago to Apache Avro. The original
-file header text is:
+Based upon the representations of upstream licensors, it is understood that
+portions of the mapreduce API included in the Java implementation are licensed
+from various contributors under one or more contributor license agreements to
+Odiago, Inc. and were then contributed by Odiago to Apache Avro, which has now
+made them available under the Apache 2.0 license. The original file header text
+is:
 
 | Licensed to Odiago, Inc. under one or more contributor license
 | agreements.  See the NOTICE file distributed with this work for
@@ -36,6 +39,12 @@ The Odiago NOTICE at the time of the con
 
 Apache Ivy includes the following in its NOTICE file:
 
+| Apache Ivy
+| Copyright 2007-2010 The Apache Software Foundation
+|
+| This product includes software developed by
+| The Apache Software Foundation (http://www.apache.org/).
+|
 | Portions of Ivy were originally developed by
 | Jayasoft SARL (http://www.jayasoft.fr/)
 | and are licensed to the Apache Software Foundation under the
@@ -46,3 +55,11 @@ Apache Ivy includes the following in its
 | the terms of a BSD style license.  
 | The original software and related information is available
 | at http://www.jcraft.com/jsch/. 
+
+Apache Log4Net includes the following in its NOTICE file:
+
+| Apache log4net
+| Copyright 2004-2015 The Apache Software Foundation
+|
+| This product includes software developed at
+| The Apache Software Foundation (http://www.apache.org/).

Modified: avro/trunk/build.sh
URL: http://svn.apache.org/viewvc/avro/trunk/build.sh?rev=1718650&r1=1718649&r2=1718650&view=diff
==============================================================================
--- avro/trunk/build.sh (original)
+++ avro/trunk/build.sh Tue Dec  8 17:06:20 2015
@@ -22,7 +22,7 @@ cd `dirname "$0"`				  # connect to root
 VERSION=`cat share/VERSION.txt`
 
 function usage {
-  echo "Usage: $0 {test|dist|sign|clean|docker}"
+  echo "Usage: $0 {test|dist|sign|clean|docker|rat}"
   exit 1
 }
 
@@ -204,6 +204,10 @@ UserSpecificDocker
           avro-build-${USER_NAME}
         ;;
 
+    rat)
+        mvn test -Dmaven.main.skip=true -Dmaven.test.skip=true -DskipTests=true -P rat -pl :avro-toplevel
+        ;;
+
     *)
         usage
         ;;

Modified: avro/trunk/lang/ruby/test/case_finder.rb
URL: http://svn.apache.org/viewvc/avro/trunk/lang/ruby/test/case_finder.rb?rev=1718650&r1=1718649&r2=1718650&view=diff
==============================================================================
--- avro/trunk/lang/ruby/test/case_finder.rb (original)
+++ avro/trunk/lang/ruby/test/case_finder.rb Tue Dec  8 17:06:20 2015
@@ -1,3 +1,21 @@
+#
+# 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.
+#
 class CaseFinder
   PATH = File.expand_path("../../../../share/test/data/schema-tests.txt", __FILE__)