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 tr...@apache.org on 2012/10/01 21:40:48 UTC

svn commit: r1392641 - in /incubator/hcatalog/trunk: ./ ant/ bin/ build-support/ build-support/checkstyle/ build-support/scripts/ hive/ lib/

Author: travis
Date: Mon Oct  1 21:40:47 2012
New Revision: 1392641

URL: http://svn.apache.org/viewvc?rev=1392641&view=rev
Log:
HCATALOG-517 Misc. build cleanup

Added:
    incubator/hcatalog/trunk/build-support/
    incubator/hcatalog/trunk/build-support/checkstyle/
    incubator/hcatalog/trunk/build-support/checkstyle/apache_header_java.txt
      - copied unchanged from r1392632, incubator/hcatalog/trunk/apache_header_java.txt
    incubator/hcatalog/trunk/build-support/checkstyle/coding_style.xml
      - copied, changed from r1392632, incubator/hcatalog/trunk/coding_style.xml
    incubator/hcatalog/trunk/build-support/scripts/
    incubator/hcatalog/trunk/build-support/scripts/umaskcheck.sh
      - copied unchanged from r1392632, incubator/hcatalog/trunk/bin/umaskcheck.sh
Removed:
    incubator/hcatalog/trunk/apache_header_java.txt
    incubator/hcatalog/trunk/bin/umaskcheck.sh
    incubator/hcatalog/trunk/coding_style.xml
    incubator/hcatalog/trunk/hive/
    incubator/hcatalog/trunk/lib/
Modified:
    incubator/hcatalog/trunk/CHANGES.txt
    incubator/hcatalog/trunk/ant/checkstyle.xml
    incubator/hcatalog/trunk/ant/test.xml

Modified: incubator/hcatalog/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/incubator/hcatalog/trunk/CHANGES.txt?rev=1392641&r1=1392640&r2=1392641&view=diff
==============================================================================
--- incubator/hcatalog/trunk/CHANGES.txt (original)
+++ incubator/hcatalog/trunk/CHANGES.txt Mon Oct  1 21:40:47 2012
@@ -42,6 +42,8 @@ Trunk (unreleased changes)
   HCAT-427 Document storage-based authorization (lefty via gates)
 
   IMPROVEMENTS
+  HCAT-517 Misc. build cleanup (traviscrawford)
+
   HCAT-506 desired number of input splits for large files (gmalewicz via traviscrawford)
 
   HCAT-461 Refactor server-extensions as a subproject (traviscrawford)

Modified: incubator/hcatalog/trunk/ant/checkstyle.xml
URL: http://svn.apache.org/viewvc/incubator/hcatalog/trunk/ant/checkstyle.xml?rev=1392641&r1=1392640&r2=1392641&view=diff
==============================================================================
--- incubator/hcatalog/trunk/ant/checkstyle.xml (original)
+++ incubator/hcatalog/trunk/ant/checkstyle.xml Mon Oct  1 21:40:47 2012
@@ -25,7 +25,8 @@
   </target>
 
   <target name="checkstyle" depends="checkstyle-init" description="run checkstyle">
-    <checkstyle classpathref="test.class.path" config="coding_style.xml">
+    <checkstyle classpathref="test.class.path"
+                config="${basedir}/build-support/checkstyle/coding_style.xml">
       <fileset dir="${basedir}" includes="**/*.java"/>
       <formatter type="plain"/>
       <formatter type="xml" toFile="${build.dir}/checkstyle/checkstyle_result.xml"/>

Modified: incubator/hcatalog/trunk/ant/test.xml
URL: http://svn.apache.org/viewvc/incubator/hcatalog/trunk/ant/test.xml?rev=1392641&r1=1392640&r2=1392641&view=diff
==============================================================================
--- incubator/hcatalog/trunk/ant/test.xml (original)
+++ incubator/hcatalog/trunk/ant/test.xml Mon Oct  1 21:40:47 2012
@@ -24,7 +24,8 @@
     <attribute name="srcDir"/>
     <sequential>
       <!-- If anyone knows how to set umask inside ant please do so -->
-      <exec executable="${path.to.basedir}/bin/umaskcheck.sh" failonerror="true"/>
+      <exec executable="${path.to.basedir}/build-support/scripts/umaskcheck.sh"
+            failonerror="true"/>
 
       <delete dir="${test.logs}"/>
       <delete dir="${test.warehouse.dir}"/>

Copied: incubator/hcatalog/trunk/build-support/checkstyle/coding_style.xml (from r1392632, incubator/hcatalog/trunk/coding_style.xml)
URL: http://svn.apache.org/viewvc/incubator/hcatalog/trunk/build-support/checkstyle/coding_style.xml?p2=incubator/hcatalog/trunk/build-support/checkstyle/coding_style.xml&p1=incubator/hcatalog/trunk/coding_style.xml&r1=1392632&r2=1392641&rev=1392641&view=diff
==============================================================================
--- incubator/hcatalog/trunk/coding_style.xml (original)
+++ incubator/hcatalog/trunk/build-support/checkstyle/coding_style.xml Mon Oct  1 21:40:47 2012
@@ -21,7 +21,7 @@ imposed on others.
     <module name="FileLength"/>
 
     <module name="Header">
-        <property name="headerFile" value="apache_header_java.txt"/>
+        <property name="headerFile" value="build-support/checkstyle/apache_header_java.txt"/>
         <property name="fileExtensions" value="java"/>
     </module>