You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by hi...@apache.org on 2009/06/23 15:17:03 UTC

svn commit: r787666 - in /ant/ivy/ivyde/trunk: CHANGES.txt build.xml org.apache.ivyde.eclipse/CHANGES.txt signArtifacts.sh verifyArtifacts.sh

Author: hibou
Date: Tue Jun 23 13:17:03 2009
New Revision: 787666

URL: http://svn.apache.org/viewvc?rev=787666&view=rev
Log:
- move CHANGES.txt next to the other text files
- fix the checksum and sign scripts

Added:
    ant/ivy/ivyde/trunk/CHANGES.txt   (props changed)
      - copied unchanged from r787240, ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/CHANGES.txt
Removed:
    ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/CHANGES.txt
Modified:
    ant/ivy/ivyde/trunk/build.xml
    ant/ivy/ivyde/trunk/signArtifacts.sh
    ant/ivy/ivyde/trunk/verifyArtifacts.sh

Propchange: ant/ivy/ivyde/trunk/CHANGES.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ant/ivy/ivyde/trunk/CHANGES.txt
------------------------------------------------------------------------------
    svn:mergeinfo = 

Modified: ant/ivy/ivyde/trunk/build.xml
URL: http://svn.apache.org/viewvc/ant/ivy/ivyde/trunk/build.xml?rev=787666&r1=787665&r2=787666&view=diff
==============================================================================
--- ant/ivy/ivyde/trunk/build.xml (original)
+++ ant/ivy/ivyde/trunk/build.xml Tue Jun 23 13:17:03 2009
@@ -177,9 +177,10 @@
         <copy todir="${dist.work.dir}">
             <fileset dir="${basedir}">
                 <include name="LICENCE" />
+                <include name="NOTICE" />
+                <include name="CHANGES.txt" />
                 <include name="README.txt" />
                 <include name="RELEASE_NOTES.txt" />
-                <include name="NOTICE" />
             </fileset>
         </copy>
         <mkdir dir="${dist.dir}" />
@@ -300,14 +301,14 @@
     <target name="checksum" description="Compute the checksum for every artifact to distribute">
         <checksum algorithm="MD5" fileext=".md5" format="MD5SUM">
             <fileset dir="${dist.dir}">
-                <include name="org.apache.ivyde.feature-*.zip" />
-                <include name="apache-ivyde-sources-*.zip" />
+                <include name="apache-ivyde-*.zip" />
+                <include name="apache-ivyde-*.tgz" />
             </fileset>
         </checksum>
         <checksum algorithm="SHA" fileext=".sha" format="MD5SUM">
             <fileset dir="${dist.dir}">
-                <include name="org.apache.ivyde.feature-*.zip" />
-                <include name="apache-ivyde-sources-*.zip" />
+                <include name="apache-ivyde-*.zip" />
+                <include name="apache-ivyde-*.tgz" />
             </fileset>
         </checksum>
     </target>
@@ -315,8 +316,8 @@
     <target name="verify-checksum" description="Verify the checksums of the artifacts to publish">
         <checksum algorithm="MD5" fileext=".md5" format="MD5SUM" verifyproperty="checksum.md5.ok">
             <fileset dir="${dist.dir}">
-                <include name="org.apache.ivyde.feature-*.zip" />
-                <include name="apache-ivyde-sources-*.zip" />
+                <include name="apache-ivyde-*.zip" />
+                <include name="apache-ivyde-*.tgz" />
             </fileset>
         </checksum>
         <fail message="MD5 Checksum verify failed !">
@@ -327,8 +328,8 @@
         <echo message="MD5 Checksum verify passed successfully" />
         <checksum algorithm="SHA" fileext=".sha" format="MD5SUM" verifyproperty="checksum.sha.ok">
             <fileset dir="${dist.dir}">
-                <include name="org.apache.ivyde.feature-*.zip" />
-                <include name="apache-ivyde-sources-*.zip" />
+                <include name="apache-ivyde-*.zip" />
+                <include name="apache-ivyde-*.tgz" />
             </fileset>
         </checksum>
         <fail message="SHA Checksum verify failed !">
@@ -498,7 +499,7 @@
                 out.close();
             ]]>
         </scriptdef>
-        <generate-eclipse-toc jsontocfile="${src.doc.dir}/toc.json" destFile="${eclipse-doc.dir}/toc.xml" />
-    </target>
+    <generate-eclipse-toc jsontocfile="${src.doc.dir}/toc.json" destFile="${eclipse-doc.dir}/toc.xml" />
+</target>
 
 </project>

Modified: ant/ivy/ivyde/trunk/signArtifacts.sh
URL: http://svn.apache.org/viewvc/ant/ivy/ivyde/trunk/signArtifacts.sh?rev=787666&r1=787665&r2=787666&view=diff
==============================================================================
--- ant/ivy/ivyde/trunk/signArtifacts.sh (original)
+++ ant/ivy/ivyde/trunk/signArtifacts.sh Tue Jun 23 13:17:03 2009
@@ -19,5 +19,5 @@
 
 read -s -p "Key passphrase: " passphrase
 
-for i in dist/apache-ivyde-sources-*.zip; do gpg --passphrase "$passphrase" --output $i.asc --detach-sig --armor $i; done
-for i in dist/org.apache.ivyde.feature-*.zip; do gpg --passphrase "$passphrase" --output $i.asc --detach-sig --armor $i; done
+for i in dist/apache-ivyde-*.zip; do gpg --passphrase "$passphrase" --output $i.asc --detach-sig --armor $i; done
+for i in dist/apache-ivyde-*.tgz; do gpg --passphrase "$passphrase" --output $i.asc --detach-sig --armor $i; done

Modified: ant/ivy/ivyde/trunk/verifyArtifacts.sh
URL: http://svn.apache.org/viewvc/ant/ivy/ivyde/trunk/verifyArtifacts.sh?rev=787666&r1=787665&r2=787666&view=diff
==============================================================================
--- ant/ivy/ivyde/trunk/verifyArtifacts.sh (original)
+++ ant/ivy/ivyde/trunk/verifyArtifacts.sh Tue Jun 23 13:17:03 2009
@@ -17,5 +17,5 @@
 #   specific language governing permissions and limitations
 #   under the License.
 
-for i in dist/apache-ivyde-sources-*.zip; do gpg --verify $i.asc; done
-for i in dist/org.apache.ivyde.feature-*.zip; do gpg --verify $i.asc; done
+for i in dist/apache-ivyde-*.zip; do gpg --verify $i.asc; done
+for i in dist/apache-ivyde-*.tgz; do gpg --verify $i.asc; done