You are viewing a plain text version of this content. The canonical link for it is here.
Posted to hcatalog-commits@incubator.apache.org by ga...@apache.org on 2011/06/15 22:34:22 UTC

svn commit: r1136227 - in /incubator/hcatalog/trunk: CHANGES.txt NOTICE.txt build.xml

Author: gates
Date: Wed Jun 15 22:34:22 2011
New Revision: 1136227

URL: http://svn.apache.org/viewvc?rev=1136227&view=rev
Log:
HCATALOG-45 HCatalog release tar ball source code has problems.  Snuck in some updates to the NOTICE file too.

Modified:
    incubator/hcatalog/trunk/CHANGES.txt
    incubator/hcatalog/trunk/NOTICE.txt
    incubator/hcatalog/trunk/build.xml

Modified: incubator/hcatalog/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/incubator/hcatalog/trunk/CHANGES.txt?rev=1136227&r1=1136226&r2=1136227&view=diff
==============================================================================
--- incubator/hcatalog/trunk/CHANGES.txt (original)
+++ incubator/hcatalog/trunk/CHANGES.txt Wed Jun 15 22:34:22 2011
@@ -39,6 +39,7 @@ Trunk (unreleased changes)
   OPTIMIZATIONS
 
   BUG FIXES
+    HCAT-45. HCatalog release tar ball source code has problems (gates)
 
     HCAT-41. Changes to hcat.sh in HCATALOG-20 broke the -e option (gates)
 

Modified: incubator/hcatalog/trunk/NOTICE.txt
URL: http://svn.apache.org/viewvc/incubator/hcatalog/trunk/NOTICE.txt?rev=1136227&r1=1136226&r2=1136227&view=diff
==============================================================================
--- incubator/hcatalog/trunk/NOTICE.txt (original)
+++ incubator/hcatalog/trunk/NOTICE.txt Wed Jun 15 22:34:22 2011
@@ -3,8 +3,27 @@ Copyright 2011 The Apache Software Found
 
 This product includes/uses software developed by The Apache Software
 Foundation (http://www.apache.org/).
-Apache HCatalog
-Copyright 2011 The Apache Software Foundation
 
-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 <mw...@cornell.edu>
+All rights reserved.
+
+This product includes/uses JavaEWAH (http://code.google.com/p/javaewah/)
+Copyright 2009-2011, Daniel Lemire
+
+This product includes/uses ASM (http://asm.ow2.org/)
+Copyright (c) 2000-2005 INRIA, France Telecom
+All rights reserved.
+
+This product includes/uses JSON (http://www.json.org/)
+Copyright (c) 2002 JSON.org
+
+This product includes/uses ANTLR (http://www.antlr.org/)
+Copyright (c) 2003-2006 Terence Parr
+All rights reserved.
+
+This product includes/uses DataNucleus (http://www.datanucleus.org/)
+Copyright 2008-2008 DataNucleus
+
+This product includes/uses Guava (http://code.google.com/p/guava-libraries/)
+Copyright (C) 2006 Google Inc.

Modified: incubator/hcatalog/trunk/build.xml
URL: http://svn.apache.org/viewvc/incubator/hcatalog/trunk/build.xml?rev=1136227&r1=1136226&r2=1136227&view=diff
==============================================================================
--- incubator/hcatalog/trunk/build.xml (original)
+++ incubator/hcatalog/trunk/build.xml Wed Jun 15 22:34:22 2011
@@ -396,6 +396,8 @@
     <mkdir dir="${dist.dir}/docs/api" />
     <mkdir dir="${dist.dir}/docs/jdiff"/>
     <mkdir dir="${dist.dir}/license" />
+    <mkdir dir="${dist.dir}/hive" />
+    <mkdir dir="${dist.dir}/hive/external" />
 
     <copy todir="${dist.dir}/lib" includeEmptyDirs="false">
       <fileset dir="${lib.dir}"/>
@@ -465,7 +467,9 @@
     </copy>
 
     <copy todir="${dist.dir}/bin">
-      <fileset file="bin/hcat.sh"/>
+      <fileset dir="bin/">
+	  	<include name="*.sh"/>
+	  </fileset>
       <fileset file="hive/external/bin/hive"/>
       <fileset file="hive/external/bin/hive-config.sh"/>
     </copy>
@@ -494,17 +498,29 @@
       </fileset>
     </copy>
 
-    <copy todir="${dist.dir}/src" includeEmptyDirs="true">
+	<!-- Copy source files so the tar ball can build -->
+    <copy todir="${dist.dir}/src/java" includeEmptyDirs="true">
       <fileset dir="${src.dir}" />
     </copy>
 
-    <copy todir="${dist.dir}/test" includeEmptyDirs="true">
+    <copy todir="${dist.dir}/src/test" includeEmptyDirs="true">
       <fileset dir="${test.src.dir}" />
     </copy>
 
+    <copy todir="${dist.dir}/src/docs" includeEmptyDirs="true">
+      <fileset dir="${docs.src}" />
+    </copy>
+
     <copy todir="${dist.dir}/" file="build.xml" />
     <copy todir="${dist.dir}/" file="ivy.xml" />
 
+	<copy todir="${dist.dir}/hive/external" includeEmptyDirs="true">
+		<fileset dir="${hive.root}">
+			<exclude name="build/**"/>
+		</fileset>
+	</copy>
+
+	<!-- Copy the licenses and such -->
     <copy todir="${dist.dir}">
       <fileset dir=".">
         <include name="*.txt" />