You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by ah...@apache.org on 2018/09/12 03:50:45 UTC

[royale-asjs] branch develop updated: change checksum suffixes

This is an automated email from the ASF dual-hosted git repository.

aharui pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git


The following commit(s) were added to refs/heads/develop by this push:
     new 2134b35  change checksum suffixes
2134b35 is described below

commit 2134b35abc4908ce2c5a83a5c471c9343b0ea951
Author: Alex Harui <ah...@apache.org>
AuthorDate: Tue Sep 11 20:50:25 2018 -0700

    change checksum suffixes
---
 ApproveRoyale.xml | 14 +++++++-------
 build.xml         | 14 +++++++-------
 2 files changed, 14 insertions(+), 14 deletions(-)

diff --git a/ApproveRoyale.xml b/ApproveRoyale.xml
index 396f859..9234803 100644
--- a/ApproveRoyale.xml
+++ b/ApproveRoyale.xml
@@ -266,7 +266,7 @@
     <target name="check-sigs" description="check SHA-512 and gpg sigs">
 		<replace file="${basedir}/${package.url.name}.${package.suffix}.SHA-512"
 			token=" " />
-		<checksum file="${basedir}/${package.url.name}.${package.suffix}" algorithm="SHA-512" verifyproperty="SHA-512.ok" />
+		<checksum file="${basedir}/${package.url.name}.${package.suffix}" algorithm="SHA-512" verifyproperty="SHA-512.ok" fileext="sha512"/>
         <condition property="SHA-512Invalid">
 			<not>
 				<equals arg1="${SHA-512.ok}" arg2="true" />
@@ -275,7 +275,7 @@
         <fail message="SHA-512 checksum did not match" if="SHA-512Invalid" />
         <replace file="${basedir}/${bin.package.url.name}.${package.suffix}.SHA-512"
         token=" " />
-        <checksum file="${basedir}/${bin.package.url.name}.${package.suffix}" algorithm="SHA-512" verifyproperty="bin.SHA-512.ok" />
+        <checksum file="${basedir}/${bin.package.url.name}.${package.suffix}" algorithm="SHA-512" verifyproperty="bin.SHA-512.ok" fileext="sha512"/>
         <condition property="BinarySHA-512Invalid">
             <not>
                 <equals arg1="${bin.SHA-512.ok}" arg2="true" />
@@ -285,7 +285,7 @@
         <!-- no doc packages in 0.8.0
         <replace file="${basedir}/${doc.package.url.name}.zip.SHA-512"
         token=" " />
-        <checksum file="${basedir}/${doc.package.url.name}.zip" algorithm="SHA-512" verifyproperty="doc.SHA-512.ok" />
+        <checksum file="${basedir}/${doc.package.url.name}.zip" algorithm="SHA-512" verifyproperty="doc.SHA-512.ok" fileext="sha512"/>
         <condition property="DocSHA-512Invalid">
             <not>
                 <equals arg1="${doc.SHA-512.ok}" arg2="true" />
@@ -845,7 +845,7 @@
              dest="${basedir}/${binary.jx.kit}.zip" verbose="true" skipexisting="true"/>
         <get src="http://apacheflexbuild.cloudapp.net:8080/job/royale-compiler%20release%20branch/lastSuccessfulBuild/artifact/out/${binary.jx.kit}.zip.SHA-512"
              dest="${basedir}/${binary.jx.kit}.zip.SHA-512" verbose="true" skipexisting="true"/>
-        <checksum file="${basedir}/${binary.jx.kit}.zip" algorithm="SHA-512" verifyproperty="compiler.SHA-512.ok" />
+        <checksum file="${basedir}/${binary.jx.kit}.zip" algorithm="SHA-512" verifyproperty="compiler.SHA-512.ok" fileext="sha512"/>
         <condition property="CompilerSHA-512Invalid">
             <not>
                 <equals arg1="${compiler.SHA-512.ok}" arg2="true" />
@@ -864,7 +864,7 @@
         dest="${basedir}/${binary.jx.kit}.zip" verbose="true" skipexisting="true"/>
         <get src="https://dist.apache.org/repos/dist/dev/royale/compiler/${release.version}/rc1/binaries/${binary.jx.kit}.zip.SHA-512"
         dest="${basedir}/${binary.jx.kit}.zip.SHA-512" verbose="true" skipexisting="true"/>
-        <checksum file="${basedir}/${binary.jx.kit}.zip" algorithm="SHA-512" verifyproperty="compiler.SHA-512.ok" />
+        <checksum file="${basedir}/${binary.jx.kit}.zip" algorithm="SHA-512" verifyproperty="compiler.SHA-512.ok" fileext="sha512"/>
         <condition property="CompilerSHA-512Invalid">
             <not>
                 <equals arg1="${compiler.SHA-512.ok}" arg2="true" />
@@ -882,7 +882,7 @@
         dest="${basedir}/${binary.flexunit.kit}.zip" verbose="true" skipexisting="true"/>
         <get src="https://archive.apache.org/dist/royale/flexunit/4.2.0/binaries/${binary.flexunit.kit}.zip.SHA-512"
         dest="${basedir}/${binary.flexunit.kit}.zip.SHA-512" verbose="true" skipexisting="true"/>
-        <checksum file="${basedir}/${binary.flexunit.kit}.zip" algorithm="SHA-512" verifyproperty="flexunit.SHA-512.ok" />
+        <checksum file="${basedir}/${binary.flexunit.kit}.zip" algorithm="SHA-512" verifyproperty="flexunit.SHA-512.ok" fileext="sha512"/>
         <condition property="FlexUnitSHA-512Invalid">
             <not>
                 <equals arg1="${flexunit.SHA-512.ok}" arg2="true" />
@@ -900,7 +900,7 @@
         dest="${basedir}/${binary.sdk.kit}.zip" verbose="true" skipexisting="true"/>
         <get src="https://archive.apache.org/dist/royale/4.15.0/binaries/${binary.sdk.kit}.zip.SHA-512"
         dest="${basedir}/${binary.sdk.kit}.zip.SHA-512" verbose="true" skipexisting="true"/>
-        <checksum file="${basedir}/${binary.sdk.kit}.zip" algorithm="SHA-512" verifyproperty="sdk.SHA-512.ok" />
+        <checksum file="${basedir}/${binary.sdk.kit}.zip" algorithm="SHA-512" verifyproperty="sdk.SHA-512.ok" fileext="sha512"/>
         <condition property="SDKSHA-512Invalid">
             <not>
                 <equals arg1="${sdk.SHA-512.ok}" arg2="true" />
diff --git a/build.xml b/build.xml
index 2217e92..c5e0182 100644
--- a/build.xml
+++ b/build.xml
@@ -1809,16 +1809,16 @@ limitations under the License.
 	
 	<target name="create-SHA-512" >
 		<echo message="Generating SHA-512 hashes for release artifacts"/>
-		<checksum algorithm="SHA-512" file="${basedir}/out/${binary.kit}.tar.gz" forceOverwrite="yes"/>
-		<checksum algorithm="SHA-512" file="${basedir}/out/${binary.kit}.zip" forceOverwrite="yes"/>
-		<checksum algorithm="SHA-512" file="${basedir}/out/${source.kit}.tar.gz" forceOverwrite="yes"/>
-		<checksum algorithm="SHA-512" file="${basedir}/out/${source.kit}.zip" forceOverwrite="yes"/>
+		<checksum algorithm="SHA-512" file="${basedir}/out/${binary.kit}.tar.gz" forceOverwrite="yes" fileext="sha512"/>
+		<checksum algorithm="SHA-512" file="${basedir}/out/${binary.kit}.zip" forceOverwrite="yes" fileext="sha512"/>
+		<checksum algorithm="SHA-512" file="${basedir}/out/${source.kit}.tar.gz" forceOverwrite="yes" fileext="sha512"/>
+		<checksum algorithm="SHA-512" file="${basedir}/out/${source.kit}.zip" forceOverwrite="yes" fileext="sha512"/>
 	</target>
 
     <target name="create-SHA-512-jsonly" if="env.AIR_HOME" >
         <echo message="Generating SHA-512 hashes for release artifacts"/>
-        <checksum algorithm="SHA-512" file="${basedir}/out/${binary-js.kit}.tar.gz" forceOverwrite="yes"/>
-        <checksum algorithm="SHA-512" file="${basedir}/out/${binary-js.kit}.zip" forceOverwrite="yes"/>
+        <checksum algorithm="SHA-512" file="${basedir}/out/${binary-js.kit}.tar.gz" forceOverwrite="yes" fileext="sha512"/>
+        <checksum algorithm="SHA-512" file="${basedir}/out/${binary-js.kit}.zip" forceOverwrite="yes" fileext="sha512"/>
     </target>
 
     <target name="sign-jsonly" if="env.AIR_HOME" >
@@ -1875,7 +1875,7 @@ limitations under the License.
         
 	<target name="doc-create-SHA-512" >
 		<echo message="Generating SHA-512 hashes for doc artifacts"/>
-		<checksum algorithm="SHA-512" file="${basedir}/out/${kit.prefix}-asdocs.zip" forceOverwrite="yes"/>
+		<checksum algorithm="SHA-512" file="${basedir}/out/${kit.prefix}-asdocs.zip" forceOverwrite="yes" fileext="sha512"/>
 	</target>
 	
     <target name="doc-sign" >