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 23:02:07 UTC

svn commit: r1136239 - in /incubator/hcatalog/branches/branch-0.1: CHANGES.txt NOTICE.txt build.xml

Author: gates
Date: Wed Jun 15 23:02:06 2011
New Revision: 1136239

URL: http://svn.apache.org/viewvc?rev=1136239&view=rev
Log:
HCATALOG-45 HCatalog release tar ball source code has problems

Modified:
    incubator/hcatalog/branches/branch-0.1/CHANGES.txt
    incubator/hcatalog/branches/branch-0.1/NOTICE.txt
    incubator/hcatalog/branches/branch-0.1/build.xml

Modified: incubator/hcatalog/branches/branch-0.1/CHANGES.txt
URL: http://svn.apache.org/viewvc/incubator/hcatalog/branches/branch-0.1/CHANGES.txt?rev=1136239&r1=1136238&r2=1136239&view=diff
==============================================================================
--- incubator/hcatalog/branches/branch-0.1/CHANGES.txt (original)
+++ incubator/hcatalog/branches/branch-0.1/CHANGES.txt Wed Jun 15 23:02:06 2011
@@ -37,6 +37,8 @@ Release 0.1.0
   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)
 
     HCAT-7. Ivy fetch of CDH Hadoop versions does not work properly. (gates)

Modified: incubator/hcatalog/branches/branch-0.1/NOTICE.txt
URL: http://svn.apache.org/viewvc/incubator/hcatalog/branches/branch-0.1/NOTICE.txt?rev=1136239&r1=1136238&r2=1136239&view=diff
==============================================================================
--- incubator/hcatalog/branches/branch-0.1/NOTICE.txt (original)
+++ incubator/hcatalog/branches/branch-0.1/NOTICE.txt Wed Jun 15 23:02:06 2011
@@ -3,3 +3,27 @@ Copyright 2011 The Apache Software Found
 
 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/branches/branch-0.1/build.xml
URL: http://svn.apache.org/viewvc/incubator/hcatalog/branches/branch-0.1/build.xml?rev=1136239&r1=1136238&r2=1136239&view=diff
==============================================================================
--- incubator/hcatalog/branches/branch-0.1/build.xml (original)
+++ incubator/hcatalog/branches/branch-0.1/build.xml Wed Jun 15 23:02:06 2011
@@ -347,6 +347,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}"/>
@@ -416,7 +418,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>
@@ -445,17 +449,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" />