Index: DISCLAIMER.txt =================================================================== --- DISCLAIMER.txt (revision 0) +++ DISCLAIMER.txt (revision 0) @@ -0,0 +1,15 @@ +Apache HCatalog is an effort undergoing incubation at the Apache Software +Foundation (ASF), sponsored by the Apache Incubator PMC. + +Incubation is required of all newly accepted projects until a further review +indicates that the infrastructure, communications, and decision making process +have stabilized in a manner consistent with other successful ASF projects. + +While incubation status is not necessarily a reflection of the completeness +or stability of the code, it does indicate that the project has yet to be +fully endorsed by the ASF. + +For more information about the incubation status of the HCatalog project you +can go to the following page: + +http://incubator.apache.org/hcatalog/ Index: NOTICE.txt =================================================================== --- NOTICE.txt (revision 1155454) +++ NOTICE.txt (working copy) @@ -4,22 +4,26 @@ This product includes/uses software developed by The Apache Software Foundation (http://www.apache.org/). -This product includes/uses Jline (http://jline.sourceforge.net/) -Copyright (c) 2002-2006, Marc Prud'hommeaux -All rights reserved. +This product includes software developed by The JDBM Project +(http://jdbm.sourceforge.net/). -This product includes/uses JavaEWAH (http://code.google.com/p/javaewah/) -Copyright 2009-2011, Daniel Lemire +This product includes/uses ANTLR (http://www.antlr.org/), +Copyright (c) 2003-2008, Terrence Parr. -This product includes/uses ASM (http://asm.ow2.org/) -Copyright (c) 2000-2005 INRIA, France Telecom -All rights reserved. +This product includes/uses StringTemplate (http://www.stringtemplate.org/), +Copyright (c) 2008, Terrence Parr. -This product includes/uses JSON (http://www.json.org/) +This product includes/uses ASM (http://asm.ow2.org/), +Copyright (c) 2000-2005 INRIA, France Telecom. + +This product includes/uses org.json (http://www.json.org/java/index.html), Copyright (c) 2002 JSON.org -This product includes/uses ANTLR (http://www.antlr.org/) -Copyright (c) 2003-2006 Terence Parr +This product includes/uses SLF4J (http://www.slf4j.org/), +Copyright (c) 2004-2008 QOS.ch + +This product includes/uses Jline (http://jline.sourceforge.net/) +Copyright (c) 2002-2006, Marc Prud'hommeaux All rights reserved. This product includes/uses DataNucleus (http://www.datanucleus.org/) Index: bin/umaskcheck.sh =================================================================== --- bin/umaskcheck.sh (revision 1155454) +++ bin/umaskcheck.sh (working copy) @@ -1,5 +1,21 @@ #!/bin/sh +# 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. + if [ `umask` != '0022' ] then echo "Umask must be set to 0022 to run hcatalog unit tests."