You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ah...@apache.org on 2016/03/25 06:39:00 UTC

svn commit: r12856 - in /dev/flex/falcon: 0.5.0/rc3/ 0.6.0/ 0.6.0/rc1/ 0.6.0/rc1/binaries/

Author: aharui
Date: Fri Mar 25 05:39:00 2016
New Revision: 12856

Log:
rc1 of Apache Flex Falcon 0.6.0

Added:
    dev/flex/falcon/0.6.0/
    dev/flex/falcon/0.6.0/rc1/
    dev/flex/falcon/0.6.0/rc1/ApproveFalcon.xml
    dev/flex/falcon/0.6.0/rc1/READme
    dev/flex/falcon/0.6.0/rc1/apache-flex-falconjx-0.6.0-src.tar.gz   (with props)
    dev/flex/falcon/0.6.0/rc1/apache-flex-falconjx-0.6.0-src.tar.gz.asc
    dev/flex/falcon/0.6.0/rc1/apache-flex-falconjx-0.6.0-src.tar.gz.md5
    dev/flex/falcon/0.6.0/rc1/apache-flex-falconjx-0.6.0-src.zip   (with props)
    dev/flex/falcon/0.6.0/rc1/apache-flex-falconjx-0.6.0-src.zip.asc
    dev/flex/falcon/0.6.0/rc1/apache-flex-falconjx-0.6.0-src.zip.md5
    dev/flex/falcon/0.6.0/rc1/binaries/
    dev/flex/falcon/0.6.0/rc1/binaries/apache-flex-falconjx-0.6.0-bin.tar.gz   (with props)
    dev/flex/falcon/0.6.0/rc1/binaries/apache-flex-falconjx-0.6.0-bin.tar.gz.asc
    dev/flex/falcon/0.6.0/rc1/binaries/apache-flex-falconjx-0.6.0-bin.tar.gz.md5
    dev/flex/falcon/0.6.0/rc1/binaries/apache-flex-falconjx-0.6.0-bin.zip   (with props)
    dev/flex/falcon/0.6.0/rc1/binaries/apache-flex-falconjx-0.6.0-bin.zip.asc
    dev/flex/falcon/0.6.0/rc1/binaries/apache-flex-falconjx-0.6.0-bin.zip.md5
    dev/flex/falcon/0.6.0/rc1/binaries/apache-flex-falconjx-installer-config.xml
Removed:
    dev/flex/falcon/0.5.0/rc3/

Added: dev/flex/falcon/0.6.0/rc1/ApproveFalcon.xml
==============================================================================
--- dev/flex/falcon/0.6.0/rc1/ApproveFalcon.xml (added)
+++ dev/flex/falcon/0.6.0/rc1/ApproveFalcon.xml Fri Mar 25 05:39:00 2016
@@ -0,0 +1,766 @@
+<?xml version="1.0"?>
+<!--
+
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+
+-->
+
+<project name="ApproveApacheFlexFalcon" default="main" basedir=".">
+
+
+    <!-- Required for OSX 10.6 / Snow Leopard Performance. -->
+    <!-- Java 7 on Mac requires OSX 10.7.3 or higher and is 64-bit only -->
+    <!-- local.d32 is set/used in build.properties so this needs to be done first. -->
+    <condition property="local.d32" value="-d32">
+        <and>
+            <os family="windows"/>
+            <equals arg1="${sun.arch.data.model}" arg2="64"/>
+            <equals arg1="${os.arch}" arg2="x86_64"/>
+            <equals arg1="${ant.java.version}" arg2="1.6"/>
+        </and>
+    </condition>
+
+    <condition property="isMac" value="mac">
+        <os family="mac" />
+    </condition>
+    <condition property="isWindows" value="windows">
+        <os family="windows" />
+    </condition>
+    <condition property="isLinux" value="linux">
+		<and>
+			<os family="unix" />
+			<not>
+				<isset property="isMac" />
+			</not>
+		</and>
+    </condition>
+    <condition property="package.suffix" value="zip">
+        <os family="windows" />
+    </condition>
+	<property name="package.suffix" value="tar.gz" />
+	
+	<property name="src.rat.report" value="${basedir}/rat-report-src.txt"/>
+    <property name="bin.rat.report" value="${basedir}/rat-report-bin.txt"/>
+	<property name="apache.rat.jar" value="apache-rat-0.8.jar" />
+	<property name="apache.rat.tasks.jar" value="apache-rat-tasks-0.8.jar" />
+	<property name="apache.rat.url" value="http://people.apache.org/~aharui/rat" />
+	   
+    <property file="${basedir}/approvefalcon.properties"/>
+    
+	<property name="mac.text.display" value="cat" />
+	<property name="win.text.display" value="type" />
+	<property name="linux.text.display" value="cat" />
+    <property environment="env"/>
+
+    <property name="build.target" value="main" />
+    
+	<condition property="do.copy.downloads" >
+		<isset property="download.cache.dir" /> 
+	</condition>
+	
+    <fail message="The ANT_HOME environment variable is not set."
+        unless="env.ANT_HOME"/>
+		
+	<available file="${env.AIR_HOME}"
+		type="dir" 
+		property="AIR_HOME" value="${env.AIR_HOME}" />
+
+    <fail message="The AIR_HOME property is not set in environment or command-line."
+        unless="AIR_HOME"/>
+		
+    <available file="${env.PLAYERGLOBAL_HOME}"
+        type="dir"
+        property="PLAYERGLOBAL_HOME" value="${env.PLAYERGLOBAL_HOME}" />
+    
+    <fail message="The PLAYERGLOBAL_HOME property is not set in environment or command-line."
+        unless="PLAYERGLOBAL_HOME"/>
+    
+    <available file="${env.FLASHPLAYER_DEBUGGER}"
+        type="dir"
+        property="FLASHPLAYER_DEBUGGER" value="${env.FLASHPLAYER_DEBUGGER}" />
+    
+    <available file="${env.FLASHPLAYER_DEBUGGER}"
+        type="file"
+        property="FLASHPLAYER_DEBUGGER" value="${env.FLASHPLAYER_DEBUGGER}" />
+    
+    <fail message="The FLASHPLAYER_DEBUGGER property is not set in environment or command-line."
+        unless="FLASHPLAYER_DEBUGGER"/>
+        
+    <available file="${env.ANT_HOME}/lib/${apache.rat.jar}"
+        type="file"
+        property="apache.rat.found"/>
+    <available file="${env.ANT_HOME}/lib/${apache.rat.tasks.jar}"
+        type="file"
+        property="apache.rat.tasks.found"/>
+		
+    <fail message="The release version is not set.  Specify -Drelease.version=&lt;release version (e.g. 3.1, 3.2, etc)&gt;"
+    unless="release.version"/>
+
+    <condition property="package.url.path"
+        value="http://apacheflexbuild.cloudapp.net:8080/job/flex-falcon/lastSuccessfulBuild/artifact/out">
+        <not>
+            <isset property="rc" />
+        </not>
+    </condition>
+    <condition property="bin.package.url.path"
+        value="${package.url.path}">
+        <not>
+            <isset property="rc" />
+        </not>
+    </condition>
+
+	<property name="package.url.path" value="https://dist.apache.org/repos/dist/dev/flex/falcon/${release.version}/rc${rc}" />
+	<property name="src.package.url.path" value="${package.url.path}" />
+    <property name="bin.package.url.path" value="${package.url.path}/binaries" />
+    <property name="src.package.url.name" value="apache-flex-falconjx-${release.version}-src" />
+    <property name="bin.package.url.name" value="apache-flex-falconjx-${release.version}-bin" />
+	
+    <condition property="zip.package">
+        <equals arg1="zip" arg2="${package.suffix}" />
+    </condition>
+    
+	<target name="display-text-mac" if="isMac">
+		<echo>========================= Begin ${file} ==============================</echo>
+		<exec executable="${mac.text.display}" >
+			<arg value="${file}" /> 
+		</exec>
+		<echo>========================= End ${file} ==============================</echo>
+	</target>
+	<target name="display-text-win" if="isWindows">
+		<pathconvert targetos="windows" property="winfile">
+			<path path="${file}" />
+		</pathconvert>
+		<echo>========================= Begin ${winfile} ==============================</echo>
+		<exec executable="cmd.exe" >
+			<arg value="/c" />
+			<arg value="${win.text.display}" />
+			<arg value="${winfile}" /> 
+		</exec>		
+		<echo>========================= End ${winfile} ==============================</echo>
+	</target>
+	<target name="display-text-linux" if="isLinux">
+		<echo>========================= Begin ${file} ==============================</echo>
+		<exec executable="${linux.text.display}" >
+			<arg value="${file}" /> 
+		</exec>
+		<echo>========================= End ${file} ==============================</echo>
+	</target>
+	
+	<target name="install-rat" depends="install-rat.jar,install-rat.tasks.jar" />
+	<target name="install-rat.jar" unless="apache.rat.found">
+		<get src="${apache.rat.url}/${apache.rat.jar}" dest="${env.ANT_HOME}/lib/${apache.rat.jar}" />
+	</target>
+	<target name="install-rat.tasks.jar" unless="apache.rat.tasks.found">
+		<get src="${apache.rat.url}/${apache.rat.tasks.jar}" dest="${env.ANT_HOME}/lib/${apache.rat.tasks.jar}" />
+	</target>
+	
+    <target name="rat-taskdef" description="Rat taskdef">
+        <typedef resource="org/apache/rat/anttasks/antlib.xml"
+        uri="antlib:org.apache.rat.anttasks"
+        classpathref="anttask.classpath"/>
+    </target>
+
+    <target name="main" depends="write-out-jars-list,install-rat,download,check-sigs,uncompress,rat-check,examine-jars,check-notices,build,approve" description="Perform required release approval steps">
+    </target>
+    
+    <target name="main-no-download" depends="write-out-jars-list,install-rat,check-sigs,uncompress,rat-check,examine-jars,check-notices,build,approve" description="Perform required release approval steps">
+    </target>
+	
+    <target name="test" >
+		<echo>${rat.report}.bin.txt</echo>
+		<replaceregexp file="${rat.report}.bin.txt" match="..AL.*" replace="" byline="true"/>
+    </target>
+    
+    <target name="write-out-jars-list" >
+        <delete file="jars.txt" />
+        <!-- this is a comma-delimited, no spaces, no-line-breaks list used to decide which jars
+         to skip in the rat-check of the binaries and which jars to examine before approval -->
+        <property name="jars-list" value="compiler/generated/dist/sdk/ant/lib/falcon-flexTasks.jar,compiler/generated/dist/sdk/lib/compc.jar,compiler/generated/dist/sdk/lib/compiler.jar,compiler/generated/dist/sdk/lib/falcon-asc.jar,compiler/generated/dist/sdk/lib/falcon-compc.jar,compiler/generated/dist/sdk/lib/falcon-flexTasks.jar,compiler/generated/dist/sdk/lib/falcon-mxmlc.jar,compiler/generated/dist/sdk/lib/falcon-optimizer.jar,compiler/generated/dist/sdk/lib/falcon-swfdump.jar,compiler/generated/dist/sdk/lib/fdb.jar,compiler/generated/dist/sdk/lib/flex-compiler-oem.jar,compiler/generated/dist/sdk/lib/swfutils.jar,js/lib/compc.jar,js/lib/externc.jar,js/lib/jsc.jar,js/lib/mxmlc.jar"/>
+        <echo file="${basedir}/jars.txt" message="${jars-list}"/>
+        <echo file="${basedir}/jarexcludes.txt" message="${jars-list}"/>
+        <replaceregexp file="${basedir}/jarexcludes.txt" match="," flags="g" replace="${line.separator}" />
+    </target>
+
+	<target name="display-text" >
+		<antcall target="display-text-mac" />
+		<antcall target="display-text-win" />
+		<antcall target="display-text-linux" />
+	</target>
+
+	<target name="display-text-test" >
+		<antcall target="display-text" >
+			<param name="file" value="${basedir}/rat-report.txt" />
+		</antcall>
+	</target>
+	
+    <target name="download" description="download the release package">
+        <get src="${src.package.url.path}/${src.package.url.name}.${package.suffix}"
+            dest="${basedir}/${src.package.url.name}.${package.suffix}" />
+        <get src="${src.package.url.path}/${src.package.url.name}.${package.suffix}.md5"
+            dest="${basedir}/${src.package.url.name}.${package.suffix}.md5" />
+        <get src="${bin.package.url.path}/${bin.package.url.name}.${package.suffix}"
+            dest="${basedir}/${bin.package.url.name}.${package.suffix}" />
+        <get src="${bin.package.url.path}/${bin.package.url.name}.${package.suffix}.md5"
+            dest="${basedir}/${bin.package.url.name}.${package.suffix}.md5" />
+        <antcall target="asc_get" />
+    </target>
+    
+    <target name="asc_get" if="rc" >
+        <get src="${src.package.url.path}/${src.package.url.name}.${package.suffix}.asc"
+            dest="${basedir}/${src.package.url.name}.${package.suffix}.asc" />
+        <get src="${bin.package.url.path}/${bin.package.url.name}.${package.suffix}.asc"
+            dest="${basedir}/${bin.package.url.name}.${package.suffix}.asc" />
+    </target>
+    
+    <target name="check-sigs" description="check md5 and gpg sigs">
+		<replace file="${basedir}/${src.package.url.name}.${package.suffix}.md5"
+			token=" " />
+		<checksum file="${basedir}/${src.package.url.name}.${package.suffix}" algorithm="md5" verifyproperty="src.md5.ok" />
+        <condition property="SourceMD5Invalid">
+			<not>
+				<equals arg1="${src.md5.ok}" arg2="true" />
+			</not>
+        </condition>
+        <fail message="Source Package MD5 checksum did not match" if="SourceMD5Invalid" />
+        <replace file="${basedir}/${bin.package.url.name}.${package.suffix}.md5"
+            token=" " />
+        <checksum file="${basedir}/${bin.package.url.name}.${package.suffix}" algorithm="md5" verifyproperty="bin.md5.ok" />
+        <condition property="BinaryMD5Invalid">
+            <not>
+                <equals arg1="${bin.md5.ok}" arg2="true" />
+            </not>
+        </condition>
+        <fail message="Binary Package MD5 checksum did not match" if="BinaryMD5Invalid" />
+        <echo>rc is ${rc}</echo>
+        <antcall target="gpg_check" />
+    </target>
+
+    <target name="gpg_check" if="rc">
+        <exec executable="gpg" failonerror="true">
+            <arg value="--verify" />
+            <arg value="${basedir}/${src.package.url.name}.${package.suffix}.asc" />
+            <arg value="${basedir}/${src.package.url.name}.${package.suffix}" />
+        </exec>
+        <exec executable="gpg" failonerror="true">
+            <arg value="--verify" />
+            <arg value="${basedir}/${bin.package.url.name}.${package.suffix}.asc" />
+            <arg value="${basedir}/${bin.package.url.name}.${package.suffix}" />
+        </exec>
+    </target>
+    
+    <target name="uncompress" depends="pre-clean, untar-file, unzip-file" />
+
+    <target name="pre-clean" description="remove old uncompressed package" >
+		<delete dir="${basedir}/${src.package.url.name}" failonerror="false" />
+        <delete dir="${basedir}/${bin.package.url.name}" failonerror="false" />
+	</target>
+	
+    <target name="untar-file" unless="zip.package" description="Untars zipFile">
+        <untar src="${basedir}/${src.package.url.name}.${package.suffix}"
+                dest="${basedir}" compression="gzip"/>
+        <untar src="${basedir}/${bin.package.url.name}.${package.suffix}"
+                dest="${basedir}" compression="gzip"/>
+    </target>
+
+    <target name="unzip-file" if="zip.package" description="Unzips zipFile">
+        <unzip src="${basedir}/${src.package.url.name}.${package.suffix}"
+                dest="${basedir}/${src.package.url.name}"/>
+        <unzip src="${basedir}/${bin.package.url.name}.${package.suffix}"
+                dest="${basedir}/${bin.package.url.name}"/>
+    </target>
+
+    <target name="rat-check" >
+
+        <echo message="Checking files at ${basedir}/${src.package.url.name}, report is ${src.rat.report}"/>
+
+        <rat:report xmlns:rat="antlib:org.apache.rat.anttasks"
+            reportFile="${src.rat.report}">
+            <fileset dir="${basedir}/${src.package.url.name}">
+                <!-- exclude media (png, gif, jpg, mp3, flv) -->
+                <exclude name="**/*.png"/>
+                <exclude name="**/*.gif"/>
+                <exclude name="**/*.jpg"/>
+                <exclude name="**/*.mp3"/>
+                <exclude name="**/*.flv"/>
+                <exclude name="**/org.apache.flex.tools.FlexToolGroup"/>
+                <exclude name="debugger/META-INF/MANIFEST.MF"/>
+                <exclude name="RELEASE_NOTES_JX"/>
+                <exclude name="LICENSE.jx.bin"/>
+                <exclude name="NOTICE.jx"/>
+                <exclude name="README_JX"/>
+                <exclude name="NOTICE.base"/>
+                <exclude name="NOTICE.fdb"/>
+                <exclude name="NOTICE.oem"/>
+                <exclude name="NOTICE.swfutils"/>
+            </fileset>
+        </rat:report>
+		<antcall target="display-text" >
+            <param name="file" value="${src.rat.report}" />
+        </antcall>
+        <input
+			message="Check that there are no unknown or unapproved licenses or archives. Is it ok?"
+            validargs="y,n"
+        defaultvalue="y"
+        addproperty="rat.src.license.ok"/>
+		<echo>filtering out AL files to make it easier to see binary files</echo>
+		<copy file="${src.rat.report}" tofile="${src.rat.report}.bin.txt" />
+		<replaceregexp file="${src.rat.report}.bin.txt" match="..AL.*" replace="__AL" byline="true"/>
+        <replaceregexp file="${src.rat.report}.bin.txt" flags="gs" match="__AL." replace="" byline="false"/>
+		<antcall target="display-text" >
+            <param name="file" value="${src.rat.report}.bin.txt" />
+        </antcall>
+        <input
+			message="Check that there are no unexpected binaries.  Is it ok?"
+            validargs="y,n"
+        defaultvalue="n"
+        addproperty="rat.src.binaries.ok"/>
+        
+        <echo message="Checking files at ${basedir}/${bin.package.url.name}, report is ${bin.rat.report}"/>
+        
+        <antcall target="binary-rat" />
+        <antcall target="display-text" >
+            <param name="file" value="${bin.rat.report}" />
+        </antcall>
+        <input
+        message="Check that there are no unknown or unapproved licenses or archives. Is it ok?"
+        validargs="y,n"
+        defaultvalue="y"
+        addproperty="rat.bin.license.ok"/>
+        <echo>filtering out AL files to make it easier to see binary files</echo>
+        <copy file="${bin.rat.report}" tofile="${bin.rat.report}.bin.txt" />
+        <replaceregexp file="${bin.rat.report}.bin.txt" match="..AL.*" replace="__AL" byline="true"/>
+        <replaceregexp file="${bin.rat.report}.bin.txt" flags="gs" match="__AL." replace="" byline="false"/>
+        <antcall target="display-text" >
+            <param name="file" value="${bin.rat.report}.bin.txt" />
+        </antcall>
+        <input
+        message="Check that there are no unexpected binaries.  Is it ok?"
+        validargs="y,n"
+        defaultvalue="n"
+        addproperty="rat.bin.binaries.ok"/>
+    </target>
+
+    <target name="binary-rat" >
+        <echo>${jars-list}</echo>
+        <rat:report xmlns:rat="antlib:org.apache.rat.anttasks"
+            reportFile="${bin.rat.report}">
+            <fileset dir="${basedir}/${bin.package.url.name}">
+                <!-- exclude media (png, gif, jpg, mp3, flv) -->
+                <exclude name="**/*.png"/>
+                <exclude name="**/*.gif"/>
+                <exclude name="**/*.jpg"/>
+                <exclude name="**/*.mp3"/>
+                <exclude name="**/*.flv"/>
+                <exclude name="**/org.apache.flex.tools.FlexToolGroup"/>
+                <exclude name="debugger/META-INF/MANIFEST.MF"/>
+                <exclude name="LICENSE.jx.bin"/>
+                <exclude name="RELEASE_NOTES_JX"/>
+                <exclude name="NOTICE.jx"/>
+                <exclude name="README_JX"/>
+                <exclude name="NOTICE.base"/>
+                <exclude name="NOTICE.fdb"/>
+                <exclude name="NOTICE.oem"/>
+                <exclude name="NOTICE.swfutils"/>
+                <exclude name="externs/js/externs/svg.js" />
+                <exclude name="externs/createjs/externs/**/*.js" />
+                <exclude name="js/libs/cordova.swc"/>
+                <exclude name="js/libs/createjs.swc"/>
+                <exclude name="js/libs/GCL.swc"/>
+                <exclude name="js/libs/google_maps.swc"/>
+                <exclude name="js/libs/jasmine.swc"/>
+                <exclude name="js/libs/jquery.swc"/>
+                <exclude name="js/libs/js.swc"/>
+                <exclude name="js/libs/node.swc"/>
+                <excludesfile name="${basedir}/jarexcludes.txt" />
+            </fileset>
+        </rat:report>
+    </target>
+    
+    <!-- someday figure out how to use 
+        find . -name "*.jar" -exec tar ft {} \; | sort -u > paths.txt -->
+    
+    <!-- how to do tar and sort on Windows? -->
+    <target name="examine-jars" if="isMac">
+        <!-- comma delimited list, no spaces, not one file per line -->
+        <copy file="jars.txt" tofile="loop.txt" />
+        <ant antfile="ApproveFalcon.xml" target="loopOnce" inheritAll="false" />
+    </target>
+    <target name="loopOnce" >
+        <!-- make a copy of the list so we can munge it to
+             get the first item in the list -->
+        <delete file="loop1.txt" />
+        <copy file="loop.txt" tofile="loop1.txt" />
+        <loadfile srcFile="loop.txt" property="checkiflast" />
+        <condition property="islast" value="true">
+            <not>
+                <contains string="${checkiflast}" substring="," />
+            </not>
+        </condition>
+        <antcall target="notlast" />
+        <antcall target="lastone" />
+    </target>
+    <target name="notlast" unless="islast">
+        <loadfile srcFile="loop1.txt" property="echoFile" />
+        <replaceregexp file="loop1.txt" match="^(.*),(.*)" replace="\2" />
+        <loadfile srcFile="loop1.txt" property="thisFile" />
+        <antcall target="jar-check" />
+        <replaceregexp file="loop.txt" match="^(.*),(.*)" replace="\1" />
+        <ant antfile="ApproveFalcon.xml" target="loopOnce" inheritAll="false"/>
+    </target>
+    <target name="lastone" if="islast">
+        <loadfile srcFile="loop1.txt" property="thisFile" />
+        <antcall target="jar-check" />
+        <delete file="loop.txt" />
+        <delete file="loop1.txt" />
+    </target>
+
+    <target name="jar-check" >
+        <delete dir="${basedir}/jar" failonerror="false" />
+        <mkdir dir="${basedir}/jar" />
+        <unjar src="${basedir}/${bin.package.url.name}/${thisFile}" dest="${basedir}/jar" />
+        <exec executable="tar" output="${basedir}/jarclasses.txt">
+            <arg value="tf" />
+            <arg value="${basedir}/${bin.package.url.name}/${thisFile}" />
+        </exec>
+        <replaceregexp file="${basedir}/jarclasses.txt" match="(.*)/(.*)" replace="\1" flags="m" byline="true"/>
+        <exec executable="sort" output="${basedir}/jarpaths.txt">
+            <arg value="-u" />
+            <arg value="${basedir}/jarclasses.txt" />
+        </exec>
+        <antcall target="display-text" >
+            <param name="file" value="${basedir}/jarpaths.txt" />
+        </antcall>
+        <input
+            message="Above is the list of folders in this ${thisFile}.&#xA;Folder names can sometimes indicate presence of third-party content that needs to be in LICENSE and/or NOTICE files.&#xA;Press the Enter key to see the LICENSE for this jar."/>
+        
+        <fail message="LICENSE not in ${basedir}/${bin.package.url.name}/${thisFile}">
+            <condition>
+                <not>
+                    <available file="${basedir}/jar/META-INF/LICENSE" />
+                </not>
+            </condition>
+        </fail>
+        <fail message="NOTICE not in ${basedir}/${bin.package.url.name}/${thisFile}">
+            <condition>
+                <not>
+                    <available file="${basedir}/jar/META-INF/NOTICE" />
+                </not>
+            </condition>
+        </fail>
+        <antcall target="display-text" >
+            <param name="file" value="${basedir}/jar/META-INF/LICENSE" />
+        </antcall>
+        <input
+            message="Check the LICENSE for the Apache License and third-party licenses. Is it ok?"
+            validargs="y,n"
+            defaultvalue="y"
+            addproperty="jar.license.ok"/>
+        <fail message="LICENSE for ${basedir}/${bin.package.url.name}/${thisFile} not correct">
+            <condition>
+                <not>
+                    <equals arg1="${jar.license.ok}" arg2="y" />
+                </not>
+            </condition>
+        </fail>
+        <antcall target="display-text" >
+            <param name="file" value="${basedir}/jar/META-INF/NOTICE" />
+        </antcall>
+        <input
+            message="Check the NOTICE for required notices from third-parties. Is it ok?"
+            validargs="y,n"
+            defaultvalue="y"
+            addproperty="jar.notice.ok"/>
+        <fail message="NOTICE for ${basedir}/${bin.package.url.name}/${thisFile} not correct">
+            <condition>
+                <not>
+                    <equals arg1="${jar.notice.ok}" arg2="y" />
+                </not>
+            </condition>
+        </fail>
+        
+    </target>
+    
+    <target name="check-notices" description="open each notice file for review, grep for a few things" >
+        <fail message="README not in source package">
+			<condition>
+	            <not>
+    	            <available file="${basedir}/${src.package.url.name}/README" />
+        	    </not>
+			</condition>
+        </fail>
+        <fail message="README_JX not in source package">
+			<condition>
+	            <not>
+    	            <available file="${basedir}/${src.package.url.name}/README_JX" />
+        	    </not>
+			</condition>
+        </fail>
+        <fail message="RELEASE_NOTES not in source package">
+			<condition>
+				<not>
+					<available file="${basedir}/${src.package.url.name}/RELEASE_NOTES" />
+				</not>
+			</condition>
+        </fail>
+        <fail message="RELEASE_NOTES_JX not in source package">
+			<condition>
+				<not>
+					<available file="${basedir}/${src.package.url.name}/RELEASE_NOTES_JX" />
+				</not>
+			</condition>
+        </fail>
+        <fail message="NOTICE not in source package">
+			<condition>
+				<not>
+					<available file="${basedir}/${src.package.url.name}/NOTICE" />
+				</not>
+			</condition>
+        </fail>
+        <fail message="NOTICE.JX not in source package">
+			<condition>
+				<not>
+					<available file="${basedir}/${src.package.url.name}/NOTICE.JX" />
+				</not>
+			</condition>
+        </fail>
+        <fail message="LICENSE not in source package">
+			<condition>
+				<not>
+					<available file="${basedir}/${src.package.url.name}/LICENSE" />
+				</not>
+			</condition>
+        </fail>
+        <fail message="README not in binary package">
+            <condition>
+                <not>
+                    <available file="${basedir}/${bin.package.url.name}/README" />
+                </not>
+            </condition>
+        </fail>
+        <fail message="README_JX not in binary package">
+            <condition>
+                <not>
+                    <available file="${basedir}/${bin.package.url.name}/README_JX" />
+                </not>
+            </condition>
+        </fail>
+        <fail message="RELEASE_NOTES not in binary package">
+            <condition>
+                <not>
+                    <available file="${basedir}/${bin.package.url.name}/RELEASE_NOTES" />
+                </not>
+            </condition>
+        </fail>
+        <fail message="RELEASE_NOTES_JX not in binary package">
+            <condition>
+                <not>
+                    <available file="${basedir}/${bin.package.url.name}/RELEASE_NOTES_JX" />
+                </not>
+            </condition>
+        </fail>
+        <fail message="NOTICE not in binary package">
+            <condition>
+                <not>
+                    <available file="${basedir}/${bin.package.url.name}/NOTICE" />
+                </not>
+            </condition>
+        </fail>
+        <fail message="NOTICE.JX not in binary package">
+            <condition>
+                <not>
+                    <available file="${basedir}/${bin.package.url.name}/NOTICE.JX" />
+                </not>
+            </condition>
+        </fail>
+        <fail message="LICENSE not in binary package">
+            <condition>
+                <not>
+                    <available file="${basedir}/${bin.package.url.name}/LICENSE" />
+                </not>
+            </condition>
+        </fail>
+        <checksum file="${basedir}/${src.package.url.name}/RELEASE_NOTES_JX" property="src.rnjxmd5" />
+        <checksum file="${basedir}/${bin.package.url.name}/RELEASE_NOTES_JX" property="bin.rnjxmd5" />
+        <fail message="RELEASE_NOTES_JX in binary package does not match source package">
+            <condition>
+                <not>
+                    <equals arg1="${src.rnjxmd5}" arg2="${bin.rnjxmd5}" />
+                </not>
+            </condition>
+        </fail>
+        <checksum file="${basedir}/${src.package.url.name}/RELEASE_NOTES" property="src.rnmd5" />
+        <checksum file="${basedir}/${bin.package.url.name}/RELEASE_NOTES" property="bin.rnmd5" />
+        <fail message="RELEASE_NOTES in binary package does not match source package">
+            <condition>
+                <not>
+                    <equals arg1="${src.rnmd5}" arg2="${bin.rnmd5}" />
+                </not>
+            </condition>
+        </fail>
+        <checksum file="${basedir}/${src.package.url.name}/README_JX" property="src.rjxmd5" />
+        <checksum file="${basedir}/${bin.package.url.name}/README_JX" property="bin.rjxmd5" />
+        <fail message="README_JX in binary package does not match source package">
+            <condition>
+                <not>
+                    <equals arg1="${src.rjxmd5}" arg2="${bin.rjxmd5}" />
+                </not>
+            </condition>
+        </fail>
+        <checksum file="${basedir}/${src.package.url.name}/README" property="src.rmd5" />
+        <checksum file="${basedir}/${bin.package.url.name}/README" property="bin.rmd5" />
+        <fail message="README in binary package does not match source package">
+            <condition>
+                <not>
+                    <equals arg1="${src.rmd5}" arg2="${bin.rmd5}" />
+                </not>
+            </condition>
+        </fail>
+		<antcall target="display-text" >
+            <param name="file" value="${basedir}/${src.package.url.name}/README" />
+        </antcall>
+		<input
+			message="Check the README for version numbers, spelling, grammar, accuracy.  Is it ok?"
+            validargs="y,n"
+        defaultvalue="y"
+        addproperty="readme.ok"/>
+		<antcall target="display-text" >
+            <param name="file" value="${basedir}/${src.package.url.name}/README_JX" />
+        </antcall>
+		<input
+            message="Check the README_JX for version numbers, spelling, grammar, accuracy.  Is it ok?"
+            validargs="y,n"
+            defaultvalue="y"
+            addproperty="readmejx.ok"/>
+		
+		<antcall target="display-text" >
+            <param name="file" value="${basedir}/${src.package.url.name}/RELEASE_NOTES" />
+        </antcall>
+		<input
+			message="Check the RELEASE_NOTES for copyright years, spelling, grammar, accuracy. Is it ok?"
+            validargs="y,n"
+        defaultvalue="y"
+        addproperty="releasenotes.ok"/>
+		
+		<antcall target="display-text" >
+            <param name="file" value="${basedir}/${src.package.url.name}/RELEASE_NOTES_JX" />
+        </antcall>
+		<input
+        message="Check the RELEASE_NOTES_JX for copyright years, spelling, grammar, accuracy. Is it ok?"
+        validargs="y,n"
+        defaultvalue="y"
+        addproperty="releasenotesjx.ok"/>
+        
+		<antcall target="display-text" >
+            <param name="file" value="${basedir}/${src.package.url.name}/NOTICE" />
+        </antcall>
+		<input
+			message="Check the source package NOTICE for required notices from third-parties. Is it ok?"
+            validargs="y,n"
+        defaultvalue="y"
+        addproperty="src.notice.ok"/>
+
+		<antcall target="display-text" >
+            <param name="file" value="${basedir}/${src.package.url.name}/LICENSE" />
+        </antcall>
+		<input
+			message="Check the source package LICENSE for the Apache License and third-party licenses. Is it ok?"
+            validargs="y,n"
+        defaultvalue="y"
+        addproperty="src.license.ok"/>
+        
+        <antcall target="display-text" >
+            <param name="file" value="${basedir}/${bin.package.url.name}/NOTICE" />
+        </antcall>
+        <input
+        message="Check the binary package NOTICE for required notices from third-parties. Is it ok?"
+        validargs="y,n"
+        defaultvalue="y"
+        addproperty="bin.notice.ok"/>
+        
+        <antcall target="display-text" >
+            <param name="file" value="${basedir}/${bin.package.url.name}/LICENSE" />
+        </antcall>
+        <input
+        message="Check the binary package LICENSE for the Apache License and third-party licenses. Is it ok?"
+        validargs="y,n"
+        defaultvalue="y"
+        addproperty="bin.license.ok"/>
+    </target>
+
+    <target name="build" depends="copy.downloads">
+		<input
+			message="The final step is to run the build and any tests the build script runs.  This can take several minutes.  Press y to start the build."
+            validargs="y"
+        defaultvalue="y" />
+        <ant dir="${basedir}/${src.package.url.name}" target="all" />
+    </target>
+
+    <target name="copy.downloads" if="${do.copy.downloads}" description="instead of actually downloading all of the dependencies, you can save lots of time by just copying from some other folder in some other SDK.">
+		<echo>Copying downloads</echo>
+        <copy todir="${basedir}/${src.package.url.name}/in" >
+			<fileset dir="${download.cache.dir}" />
+		</copy>
+    </target>
+    	
+	<target name="approve" >
+		<condition property="vote" value="+1">
+			<and>
+				<equals arg1="${rat.src.license.ok}" arg2="y" />
+				<equals arg1="${rat.src.binaries.ok}" arg2="y" />
+                <equals arg1="${rat.bin.license.ok}" arg2="y" />
+                <equals arg1="${rat.bin.binaries.ok}" arg2="y" />
+				<equals arg1="${readme.ok}" arg2="y" />
+				<equals arg1="${releasenotes.ok}" arg2="y" />
+				<equals arg1="${src.notice.ok}" arg2="y" />
+                <equals arg1="${bin.notice.ok}" arg2="y" />
+				<equals arg1="${readmejx.ok}" arg2="y" />
+				<equals arg1="${releasenotesjx.ok}" arg2="y" />
+				<equals arg1="${src.license.ok}" arg2="y" />
+                <equals arg1="${bin.license.ok}" arg2="y" />
+			</and>
+		</condition>
+		<property name="vote" value="-1" />
+		<echo>
+${vote}
+Package ${src.package.url.path}/${src.package.url.name}.${package.suffix}
+Java ${ant.java.version}
+OS: ${os.name} ${os.arch} ${os.version}
+Source kit signatures match: y
+Source kit builds: y
+README is ok: ${readme.ok}
+README_JX is ok: ${readmejx.ok}
+RELEASE_NOTES is ok: ${releasenotes.ok}
+RELEASE_NOTES_JX is ok: ${releasenotesjx.ok}
+NOTICE is ok: ${src.notice.ok}
+LICENSE is ok: ${src.license.ok}
+No unapproved licenses or archives in source package: ${rat.src.license.ok}
+No unapproved binaries in source package: ${rat.src.binaries.ok}
+
+Package ${bin.package.url.path}/${bin.package.url.name}.${package.suffix}
+Binary kit signatures match: y
+NOTICE is ok: ${bin.notice.ok}
+LICENSE is ok: ${bin.license.ok}
+No unapproved licenses or files in jars: y
+No unapproved licenses or archives in binary package: ${rat.bin.license.ok}
+No unapproved binaries in binary package: ${rat.bin.binaries.ok}
+		</echo>
+		<fail>
+			<condition>
+	            <equals arg1="-1" arg2="${vote}"/>
+			</condition>
+		</fail>
+	</target>
+</project>

Added: dev/flex/falcon/0.6.0/rc1/READme
==============================================================================
--- dev/flex/falcon/0.6.0/rc1/READme (added)
+++ dev/flex/falcon/0.6.0/rc1/READme Fri Mar 25 05:39:00 2016
@@ -0,0 +1,270 @@
+Apache Flex Compiler
+====================
+
+    This Apache Flex Compiler is also known as the 'Falcon' compiler.  It is 
+    the next-generation replacement to the MXMLC compiler that is currently 
+    bundled with the Apache Flex SDK and is based on the Adobe ASC2.0 code base
+    donated to Apache by Adobe Systems Inc.
+
+    This Compiler may also be packaged with the Apache Flex Cross-Compiler which
+    has additional information in the README_JX file.
+
+    For detailed information about Apache Flex please visit
+    http://flex.apache.org/
+
+    This compiler may eventually replace MXMLC in the Apache Flex SDK, but is
+    also being used as the compiler for the Apache FlexJS SDK.  FlexJS is a
+    next-generation SDK that allows the developer to leverage MXML and ActionScript
+    to build applications that not only run as a SWF, but can also be cross-compiled
+    to JavaScript and run natively in a browser or anywhere JavaScript runs.
+
+Getting the latest sources via git
+==================================
+
+    Getting the source code is the recommended way to get the Apache Flex Compiler.  
+    We also offer an automated installer along with binary distributions on our 
+    website at http://flex.apache.org/.
+
+    You can always checkout the latest source via git using the following
+    command:
+
+	 git clone https://git-wip-us.apache.org/repos/asf/flex-falcon.git flex-falcon
+	 cd flex-falcon
+	 git checkout develop
+
+    The Apache Flex Compiler also requires code from other Apache Flex git
+    repositories or an Apache Flex SDK.  To get the latest source via git 
+    for the Apache Flex SDK use the following command:
+
+	 git clone https://git-wip-us.apache.org/repos/asf/flex-sdk.git flex-sdk
+	 cd flex-sdk
+	 git checkout develop
+
+    The Apache Flex SDK requires the Text Layout Framework repository which
+    you can get as follows:
+
+	 git clone https://git-wip-us.apache.org/repos/asf/flex-tlf.git flex-tlf
+	 cd flex-tlf
+	 git checkout develop
+
+    To use an Apache Flex SDK, install an Apache Flex SDK on your computer and
+    follow the instructions in 'Install Prerequisites'.
+
+Building the Apache Flex Compiler
+=================================
+
+    The Apache Flex Compiler is a large project. It requires some build tools 
+    which must be installed prior to building the compiler and it depends on 
+    some external software which are downloaded as part of the build process.  
+    Some of these have different licenses.  See the Software Dependencies section 
+    for more information on the external software dependencies.
+
+    Linux support is currently experimental and while it is possible to compile
+    the SDK it has not been fully tested so you may run into issues.
+
+Install Prerequisites
+---------------------
+
+    Before building the Apache Flex Compiler you must install the following software 
+    and set the corresponding environment variables using absolute file paths.  
+    Relative file paths will result in build errors.
+
+    ==================================================================================
+    SOFTWARE                                     ENVIRONMENT VARIABLE (absolute paths)
+    ==================================================================================
+
+    Java SDK 1.6 or greater (*1)                 JAVA_HOME
+        (for Java 1.7 see note at (*2))
+
+    Ant 1.7.1 or greater (*1)                    ANT_HOME
+        (for Java 1.7 see note at (*2))
+
+    Adobe AIR Integration Kit (*3)               AIR_HOME
+
+    Adobe Flash Player Content Debugger (*4)     FLASHPLAYER_DEBUGGER
+
+    Adobe Flash Player playerglobal swcs (*5)    PLAYERGLOBAL_HOME
+
+    Optional: Apache Flex SDK or repository (*6) FLEX_HOME
+
+    Optional: Apache Flex TLF source (*7)        TLF_HOME
+
+    Optional: Flex Messaging Common (*8)        BLAZEDS_HOME
+
+    ==================================================================================
+
+    *1) The bin directories for ANT_HOME and JAVA_HOME should be added to your
+        PATH.
+
+        On Windows, set PATH to
+
+            PATH=%PATH%;%ANT_HOME%\bin;%JAVA_HOME%\bin
+
+        On the Mac (bash), set PATH to
+
+            export PATH="$PATH:$ANT_HOME/bin:$JAVA_HOME/bin"
+
+         On Linux make sure you path include ANT_HOME and JAVA_HOME.
+
+    *2)  If you are using Java SDK 1.7 or greater on a Mac you must use Ant 1.8
+         or greater. If you use Java 1.7 with Ant 1.7, ant reports the java
+         version as 1.6 so the JVM args for the data model (-d32/-d64) will not
+         be set correctly and you will get compile errors.
+
+    *3) The Adobe AIR integration kit for Windows can be downloaded from:
+           http://airdownload.adobe.com/air/win/download/4.0/AdobeAIRSDK.zip
+
+         The Adobe AIR integration kit for Mac can be downloaded from:
+            http://airdownload.adobe.com/air/mac/download/4.0/AdobeAIRSDK.tbz2
+
+          The Adobe AIR integration kit for Linux can be downloaded from:
+            http://airdownload.adobe.com/air/lin/download/2.6/AdobeAIRSDK.tbz2
+
+        Download the AIR SDK for your platform and unzip it. Set AIR_HOME to the
+        absolute path of the AIR SDK directory.
+
+    *4) The Adobe Flash Player content debuggers can be found here:
+            http://www.adobe.com/support/flashplayer/downloads.html
+
+        On Windows, set FLASHPLAYER_DEBUGGER to the absolute path including the
+        filename of the FlashPlayerDebugger.exe. Note the filename of flash
+        player debugger maybe different.
+           e.g. C:\MyPath\FlashPlayerDebugger.exe
+
+        On the Mac, set FLASHPLAYER_DEBUGGER to the absolute path of
+        Flash Player Debugger.app/Contents/MacOS/Flash Player Debugger
+
+        On Linux, set FLASHPLAYER_DEBUGGER to the absolute path of
+        flashplayerdebugger
+
+    *5) The Adobe Flash Player playerglobal.swc for 11.1 can be downloaded from:
+            http://download.macromedia.com/get/flashplayer/updaters/11/playerglobal11_1.swc
+
+        Use URL above to download playerglobal11_1.swc.
+
+        Set PLAYERGLOBAL_HOME to the absolute path of the player directory (not
+        including the version subdirectory). The target-player option controls
+        which PLAYERGLOBAL_HOME subdirectory is used.
+
+        Other more recent versions of Adobe Flash Player playerglobal.swc can be
+        downloaded from:
+            http://download.macromedia.com/get/flashplayer/updaters/<version.major>/playerglobal<version.major>_<version.minor>.swc
+
+        (e.g. http://download.macromedia.com/get/flashplayer/updaters/11/playerglobal11_1.swc)
+
+        Copy the target playerglobal.swc to the directory:
+
+           frameworks/libs/player/<version.major>.<version.minor>/playerglobal.swc
+    
+        These can be used with the Apache Flex Compiler but not all have not been fully
+        tested.
+
+    *6) The FLEX_HOME variable should point to a folder containing a folder
+        named textLayout that contains a src folder of the flex-sdk sources.
+        If you don’t provide this variable (and TLF_HOME and BLAZEDS_HOME), 
+        you may not be able to run all of the tests in the compiler.tests 
+        and compiler.jx.tests folders.
+
+    *7) The TLF_HOME variable should point to a folder containing a folder
+        named textLayout that contains a src folder of the TLF sources.
+        This should be the root of the flex-tlf repository, or can be
+        the frameworks/projects folder of an IDE compatible Flex SDK.
+
+    *8) The build scripts assume that the root folder containing the source code 
+        for Apache Flex BlazeDS ('flex-blazeds') is at the same level as the 
+        SDK root folder ('flex-sdk'). See 'Getting the source code', below. If this 
+        is not the case on your system, then you must set the BLAZEDS_HOME environment
+        variable to point to your BLAZEDS root folder. If you are using a released
+        artifact, the source should be included in the artifact, so setting 
+        BLAZEDS_HOME is not required.
+
+Software Dependencies
+---------------------
+
+    The Apache Flex Compiler uses third-party code that will be downloaded as 
+    part of the build.
+
+    The Apache Version 2.0 license is in the LICENSE file.
+
+    The following dependencies have licenses which are, or are compatible with,
+    the Apache Version 2.0 license.  You will not be prompted to acknowledge the
+    download.  Most of the jars are installed in lib/external when installed
+    into an Apache Flex SDK and the lib folder in the repository working copy.
+
+        antlr - http://search.maven.org/remotecontent?filepath=org/antlr/antlr-complete/3.5.2/antlr-3.5.2-complete.jar
+        commons-cli - http://archive.apache.org/dist/commons/cli/binaries/commons-cli-2.4-bin.tar.gz
+        commons-io - http://archive.apache.org/dist/commons/io/binaries/commons-io-2.0.1.tar.gz
+        guava - http://search.maven.org/remotecontent?filepath=com/google/guava/guava/17.0/guava-17.0.jar
+        jburg - http://search.maven.org/remotecontent?filepath=net/sourceforge/jburg/jburg/1.10.2/jburg-1.10.2.jar
+        jflex - http://jflex.de/jflex-1.6.0.tar.gz
+        lzma - http://www.java2s.com/Code/JarDownload/lzma/lzma-9.20.jar.zip
+
+
+Using the Binary Distribution
+-----------------------------
+
+    The binary distribution is intended to be installed into an existing Apache Flex
+    SDK or Apache FlexJS SDK.
+
+    There is an Apache Ant script in the binary distribution that will copy the 
+    files into the right places.
+
+    To run it, use:
+        ant -f installer.xml -DFLEX_HOME=<path to Flex or FlexJS SDK
+
+    The script does not check the FLEX_HOME environment variable as that often
+    points to your primary Flex SDK.
+
+    If you expand the binary distribution into the "in" folder of an Apache Flex or
+    FlexJS SDK, the installer.xml script should find FLEX_HOME automatically.
+
+    Another option is to use the InstallApacheFlex (version 3.0 or higher).
+
+Building the Source in the Source Distribution
+----------------------------------------------
+
+    When you have all the prerequisites in place and the environment variables
+    set (see Install Prerequisites above), one final thing to check is whether
+    the folder contain the source code is in your Flash Player Trust files as
+    the build script runs the Flash Player Debugger as part of its automated
+    tests.  Once you've done that, use
+
+        cd <falcon.dir>
+        ant main        (or just ant since the default target is main)
+
+    to download the thirdparty dependencies and build the source.  Since the
+    third-party dependencies take a little while to download and they don't
+    change very often, they are not cleaned with the regular clean target.
+
+    To clean the build, of everything other than the downloaded third-party
+    dependencies use
+
+        ant clean
+
+    To clean the build, of everything, including the downloaded third-party
+    dependencies use
+
+        ant wipe (which is just thirdparty-clean followed by clean)
+
+    To generate a source distribution package and a binary distribution package
+    use
+
+        ant -Dbuild.number=<YYYYMMDD> -Dbuild.noprompt= release
+
+    The packages can be found in the "out" subdirectory.
+
+    To get a brief listing of all the targets type
+
+        ant -projecthelp
+
+Running Tests
+-------------
+
+Before running unit-, functional- or feature-tests you need to create a unittest.properties file ( template is found here compiler.tests/template-unittest.properties ). 
+
+
+
+Thanks for using Apache Flex.  Enjoy!
+
+                                          The Apache Flex Project
+                                          <http://flex.apache.org>

Added: dev/flex/falcon/0.6.0/rc1/apache-flex-falconjx-0.6.0-src.tar.gz
==============================================================================
Binary file - no diff available.

Propchange: dev/flex/falcon/0.6.0/rc1/apache-flex-falconjx-0.6.0-src.tar.gz
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/flex/falcon/0.6.0/rc1/apache-flex-falconjx-0.6.0-src.tar.gz.asc
==============================================================================
--- dev/flex/falcon/0.6.0/rc1/apache-flex-falconjx-0.6.0-src.tar.gz.asc (added)
+++ dev/flex/falcon/0.6.0/rc1/apache-flex-falconjx-0.6.0-src.tar.gz.asc Fri Mar 25 05:39:00 2016
@@ -0,0 +1,18 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2
+Comment: GPGTools - http://gpgtools.org
+
+iQIcBAABCAAGBQJW9M7bAAoJEIPgQxzanM/yY2AQAJbhcIrhlpBh882z2cuZDN0d
+jDypAFoj6MsrxkslyrcP0wKJ2DCFFCqmTerSmqpDjrlZa2IDNE2+zuoqRgzQ3wK1
+RtEwEonaVMuZO+suwsImnU5fWuzLZknbX6TMK0mbDNAB3TWggQWbE2Eggy91sxPL
+qhjRa6rvcA/uHhg720CL9/x1jdoJ8Q48OfvMtPaiSPRZaMAYQsfRhmIaGXYFmFDA
+RvsxUSLYrJeqXCa3ddepsuGlFoYSWgMLOK399JwNLxzthljzKqHGGyZWWzhcsAwz
+9qzIJ83wL3IdXAtgIV3VHZgMBLVBUt6O9tHf1FqP0iKqwSW2CwDjwX0a1mSmjlPa
+lxIHqPao8+kQO0/rw+nSEkshUjFUjlFrdWWFgc+bSzUO/srhftS6Zhh53TycM0rH
+a9tgkoGKKUwTGFRTQbZD5KS44P4omby42GisJHj3zCZggLzMZKD2mpJWiOGqozWs
+ckAvcfkezGmI84hBgLe8bNbwmXPOGUiSYk/+UpOI56dgIfGF1xgzuOb9gfD+dOXx
+2xazHmeqJXaTDVd95BHanD0BGQ4rk+mRSyiZMICDmv+xG0MXE6dLmr9OjSLMfWkK
+kQ6x/xs/Y7QXtCxitzx38Mp2DsFLAb+IowQKcAAyiBNkc5uFhTpHVaCa2LhDu7S1
+/86bPBIr0zoCjH4RmGDc
+=qLsI
+-----END PGP SIGNATURE-----

Added: dev/flex/falcon/0.6.0/rc1/apache-flex-falconjx-0.6.0-src.tar.gz.md5
==============================================================================
--- dev/flex/falcon/0.6.0/rc1/apache-flex-falconjx-0.6.0-src.tar.gz.md5 (added)
+++ dev/flex/falcon/0.6.0/rc1/apache-flex-falconjx-0.6.0-src.tar.gz.md5 Fri Mar 25 05:39:00 2016
@@ -0,0 +1 @@
+d2d839e4441b570168b0f94f8c227f1e

Added: dev/flex/falcon/0.6.0/rc1/apache-flex-falconjx-0.6.0-src.zip
==============================================================================
Binary file - no diff available.

Propchange: dev/flex/falcon/0.6.0/rc1/apache-flex-falconjx-0.6.0-src.zip
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/flex/falcon/0.6.0/rc1/apache-flex-falconjx-0.6.0-src.zip.asc
==============================================================================
--- dev/flex/falcon/0.6.0/rc1/apache-flex-falconjx-0.6.0-src.zip.asc (added)
+++ dev/flex/falcon/0.6.0/rc1/apache-flex-falconjx-0.6.0-src.zip.asc Fri Mar 25 05:39:00 2016
@@ -0,0 +1,18 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2
+Comment: GPGTools - http://gpgtools.org
+
+iQIcBAABCAAGBQJW9M7bAAoJEIPgQxzanM/y+msQAIIDz5+uZNz1Se+bkRel5Y7b
+m+MyTUW1372+lrjHeFktDvkV8OQdlH3U94mevkAVlZBk26QiB1tEFxonpRZLY1Fj
+lyrHVNH/sQlwf1WgCHWbUCj4rqgrs9ETfAa2uY/fG390XwofuIubWZ1qbSkXYeq6
+nob0L86HCVegUO0z9kcZlJaA64lxh3jnfVhBAMU56ZLc5s7ODY8KjcW3tEHGBiyS
+M42AMX3awlkyXpXsAi+QHDC67K9CvED/cwFLf93+Aov0md7BZopmHw9pKWGyvYrM
+w2futq6WIHPMsxEafaxvDRqYjD2kK0516JuCzjJQS/rI5wDGxzHIxLqzI+Kn6RgC
+rDYO0E1/IrjUKmKnQYDhP3HIQ2mnP1lIPZkkFVDep3w8tsReld7/NLPvg8uviiyp
+sJuXsIkvyILNOQBOICGUEBcbdUsZBw7fR4ACJYJvKCHz4fdDviLrjxg74d9FjBXv
+f9Ijjih0Q5lvgshyKsgNPPGEd2fBnYLYpgNT/AKKuXR65siADdtLkVFHEEN1yER2
+IwBXn5jhRqvg9wCFUnKfVJkm22frfGaXU0oU87+sAhVeqL8ZOi1jl6RFZqzBCq3s
+YfTtZKc2kyKFvlNOg+bxHKGwPRDJxcscI7ik8gpJddo8oyFlQvyIQWCP2k/AR368
+r0kUDZckUqcnRNsGF2Rf
+=uRkd
+-----END PGP SIGNATURE-----

Added: dev/flex/falcon/0.6.0/rc1/apache-flex-falconjx-0.6.0-src.zip.md5
==============================================================================
--- dev/flex/falcon/0.6.0/rc1/apache-flex-falconjx-0.6.0-src.zip.md5 (added)
+++ dev/flex/falcon/0.6.0/rc1/apache-flex-falconjx-0.6.0-src.zip.md5 Fri Mar 25 05:39:00 2016
@@ -0,0 +1 @@
+a0128f7d1300f0acd2f1cf948406a234

Added: dev/flex/falcon/0.6.0/rc1/binaries/apache-flex-falconjx-0.6.0-bin.tar.gz
==============================================================================
Binary file - no diff available.

Propchange: dev/flex/falcon/0.6.0/rc1/binaries/apache-flex-falconjx-0.6.0-bin.tar.gz
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/flex/falcon/0.6.0/rc1/binaries/apache-flex-falconjx-0.6.0-bin.tar.gz.asc
==============================================================================
--- dev/flex/falcon/0.6.0/rc1/binaries/apache-flex-falconjx-0.6.0-bin.tar.gz.asc (added)
+++ dev/flex/falcon/0.6.0/rc1/binaries/apache-flex-falconjx-0.6.0-bin.tar.gz.asc Fri Mar 25 05:39:00 2016
@@ -0,0 +1,18 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2
+Comment: GPGTools - http://gpgtools.org
+
+iQIcBAABCAAGBQJW9M7bAAoJEIPgQxzanM/y/2UQAL/153fjuCrpNQCl+sgJUjAj
+bcYstWwEaOHUAIGf+uuUIPNHrbrKyva8wJ0pQ8ICOMSqT0dNGm/qs4U79kIPKB4z
+udfD6X1+jyCfNHbvHchMZvPAban5Ymw5xwXo2ecFBlxY8YNDUwxh3ic+v630RuCZ
+Ev6zvvKoJ2O28tn+27tAMBdgzxm4sNckaQeYwunSDxs4L9YhhC+6dNj7xIMcYtcV
+lgoESupBr2K+DuopSbdq8bWWtFQ0UClOpI8DRAkwIbuHMUmajTR15mlx5VeZp6zT
++xgXAN4XFX1EcwS7aywZPTBVdA9avDnYEv6nWXJ+QeMR0qw2ogqXRPiPIaNl84Th
+6HgqAIke/dp3j6WHV9r6jR2lNvw2UgIy88N95aa4T3N2RG3hf0hcOsSHf/tAeAOd
+UaKueSz/Q9IMeEpYE98UoO5mUS0alfeVFGaEBvzed2UNlECXPokc61y7aeJxb/fx
+Z9xKI5MJOrRF63Cg6TFIw8vlrXy0oGxJ2OuihWYl+TdQ/Hbp+xNsve/vbbTzfU/9
+y1rteJydNQcUMPfXtxsKqljjCXFqoeZz8gbo06e+aZYNaHvvuuSvsjMsbBXgkxsA
+HGuOzRY2i1cYn/MBUxz3xvPakg21YNi3FVWwoOW2M7nSGnMNWdpwuUs4Nq8yuBE6
+HDjCrdIvSYPqCRuomOG5
+=F/Fj
+-----END PGP SIGNATURE-----

Added: dev/flex/falcon/0.6.0/rc1/binaries/apache-flex-falconjx-0.6.0-bin.tar.gz.md5
==============================================================================
--- dev/flex/falcon/0.6.0/rc1/binaries/apache-flex-falconjx-0.6.0-bin.tar.gz.md5 (added)
+++ dev/flex/falcon/0.6.0/rc1/binaries/apache-flex-falconjx-0.6.0-bin.tar.gz.md5 Fri Mar 25 05:39:00 2016
@@ -0,0 +1 @@
+c380eab4efcaa34b5e97160a92f802f7

Added: dev/flex/falcon/0.6.0/rc1/binaries/apache-flex-falconjx-0.6.0-bin.zip
==============================================================================
Binary file - no diff available.

Propchange: dev/flex/falcon/0.6.0/rc1/binaries/apache-flex-falconjx-0.6.0-bin.zip
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/flex/falcon/0.6.0/rc1/binaries/apache-flex-falconjx-0.6.0-bin.zip.asc
==============================================================================
--- dev/flex/falcon/0.6.0/rc1/binaries/apache-flex-falconjx-0.6.0-bin.zip.asc (added)
+++ dev/flex/falcon/0.6.0/rc1/binaries/apache-flex-falconjx-0.6.0-bin.zip.asc Fri Mar 25 05:39:00 2016
@@ -0,0 +1,18 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2
+Comment: GPGTools - http://gpgtools.org
+
+iQIcBAABCAAGBQJW9M7bAAoJEIPgQxzanM/y9fcP/j/t2x49u9OrzVqNtgjFruTi
+WXrbL1W3CrzNwIphdbrlt0v/s64ZWiZtx5ZTgP9VDRf+37R8lJn8wrHElo6FIIzj
+O9CUu6z9GhYrmZ8iPrHvF4CuPm/YOGtFSRAYDmpz5BPeWHWcgwiTwUuAvElDdmRw
+KP7rvBizVUTPKjL1s2vQJU7ON3gl4tXIH5aoSsaXWVNdyalUTZrn1FR4FXi+4wF9
+8jS3A9srXOVIqi1rPd5eDksUH3hSSpAcqlcE+Qm0KYw67IzR1+dtTYS5khG/x1/V
+DJCvAjM+lay5epRqkqCl1u0mfllv64UukJt/pmPRJChsMPhs5gp6Q8KOe3otIkrz
+6uC+2pwinPy/6xc97qsDzu3paIj4zuWxLiYW2qTx1TjDnFQznnRQivqFyrvQCbAE
+l/8YulZmo172FY0NstJNiI683X2OJvR3oPMMPV8FhsSf1zmiOp7hKgV+IKJJkn1K
+6KJFgBrRuDubLaqhjeh91ZIfh+FVYcIpBTf/dfCvl7mS8MVrgZsAmHfMPecZ+7v6
+N19k7zOaXQThbT795m3cfjkcg62tL2tmek7o9se0NWWmmnI/M8EbQeCDOxhUtsZ9
+F3vHbZeEcwLGn2C9QzQevAAa2l/PFqsW1OwDShnx+XYV+IEDwXifqNFenwjsgbRz
+9+Z3BH/atEFCXZ0tYVOy
+=cwk0
+-----END PGP SIGNATURE-----

Added: dev/flex/falcon/0.6.0/rc1/binaries/apache-flex-falconjx-0.6.0-bin.zip.md5
==============================================================================
--- dev/flex/falcon/0.6.0/rc1/binaries/apache-flex-falconjx-0.6.0-bin.zip.md5 (added)
+++ dev/flex/falcon/0.6.0/rc1/binaries/apache-flex-falconjx-0.6.0-bin.zip.md5 Fri Mar 25 05:39:00 2016
@@ -0,0 +1 @@
+a59e2ff9991b0bb7aa9b01ef43b34fd0

Added: dev/flex/falcon/0.6.0/rc1/binaries/apache-flex-falconjx-installer-config.xml
==============================================================================
--- dev/flex/falcon/0.6.0/rc1/binaries/apache-flex-falconjx-installer-config.xml (added)
+++ dev/flex/falcon/0.6.0/rc1/binaries/apache-flex-falconjx-installer-config.xml Fri Mar 25 05:39:00 2016
@@ -0,0 +1,101 @@
+<?xml version="1.0"?>
+<!--
+
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+
+-->
+
+<config>
+    <!--<progressLabels>
+        <en_US>
+            <Copy>Copying %1 of %2</Copy>
+            <Get>Downloading bytes %1 of %2</Get>
+            <Checksum>Computing checksum: bytes %1 of %2</Checksum>
+        </en_US>
+    </progressLabels>
+     -->
+    <strings description="override default installer strings here">
+        <string id="INFO_DOWNLOADING_FLEX_SDK">
+            <el_GR>Γίνεται λήψη του Apache Flex FalconJX από:</el_GR>
+            <en_US>Downloading Apache Flex FalconJX Compiler from: </en_US>
+        </string>
+        <string id="INFO_ENTER_VALID_FLEX_SDK_PATH">
+            <el_GR>Παρακαλώ εισάγετε μια έγκυρη διαδρομή καταλόγου για το Flex SDK</el_GR>
+            <en_US>Please enter valid directory path for a Flex or FlexJS SDK</en_US>
+        </string>
+        <string id="INFO_SELECT_DIRECTORY">
+            <el_GR>Επιλέξτε τον κατάλογο στον οποίο θέλετε να εγκαταστήσετε το Flex Falcon</el_GR>
+            <en_US>Select the directory where you want to install the Flex FalconJX Compiler</en_US>
+        </string>
+        <string id="INFO_VERIFY_FLEX_SDK_DONE">
+            <el_GR>Η επαλήθευση των ληφθέντων αρχείων είναι επιτυχής.</el_GR>
+            <en_US>The Apache Flex Falcon MD5 Signature of the downloaded files matches the reference. The file is valid.</en_US>
+        </string>
+        <string id="SELECT_PATH_PROMPT">
+            <el_GR>Πληκτρολογήστε η επιλέξτε μια έγκυρη διαδρομή για το Flex Falcon Compiler</el_GR>
+            <en_US>Where do you want to install the Apache Flex Falcon Compiler?</en_US>
+        </string>
+        <string id="ERROR_VERIFY_FLEX_SDK">
+            <el_GR>Η επαλήθευση των ληφθέντων αρχείων απέτυχε. Η εγκατάσταση σταμάτησε.</el_GR>
+            <en_US>The Apache Flex Falcon MD5 Signature of the downloaded files does not match the reference value. The file is invalid, installation is aborted.</en_US>
+        </string>
+        <string id="BTN_LABEL_OPEN_APACHE_FLEX_FOLDER">
+            <el_GR>ΑΝΟΙΓΜΑ ΦΑΚΕΛΟΥ APACHE FLEX FALCONJX</el_GR>
+            <en_US>OPEN APACHE FLEX FALCONJX FOLDER</en_US>
+        </string>
+        <string id="STEP_REQUIRED_INSTALL_APACHE_FLEX_SDK">
+            <el_GR>Λήψη Apache Flex Falcon Compiler</el_GR>
+            <en_US>Apache Flex Falcon Compiler (Required)</en_US>
+        </string>
+        <string id="STEP_VERIFY_FLEX_SDK">
+            <el_GR>Γίνεται επαλήθευση του Apache Flex Falcon MD5 Signature</el_GR>
+            <en_US>Verifying Apache Flex Falcon MD5 Signature</en_US>
+        </string>
+        <string id="STEP_UNZIP_FLEX_SDK">
+            <el_GR>Αποσυμπίεση του Apache Flex Falcon Compiler</el_GR>
+            <en_US>Uncompress Apache Flex Falcon Compiler</en_US>
+        </string>
+    </strings>
+    <steps description="targets that should have a 'step' in the GUI progress indicator, in order of appearance.">
+        <step id="download">
+            <el_GR></el_GR>
+            <en_US>Download Falcon dependencies</en_US>
+        </step>
+        <step id="copyfiles">
+            <el_GR></el_GR>
+            <en_US>Copy Falcon SDK files</en_US>
+        </step>
+        <step id="download.jx">
+            <en_US>Download FalconJX Dependencies</en_US>
+        </step>
+        <step id="copyfiles.jx">
+            <el_GR></el_GR>
+            <en_US>Copy FalconJX SDK files</en_US>
+        </step>
+    </steps>
+    <component id="STEP_REQUIRED_INSTALL_APACHE_FLEX_FALCON" required="true" property="do.flexjs.install">
+        <el_GR>
+            <label>Apache Flex Falcon (Απαιτούμενο)</label>
+            <message>Για το Apache Flex FalconJX ισχύει η συμφωνία χρήσης του Apache License V2. Θέλετε να εγκαταστήσετε το Apache Flex FalconJX;</message>
+        </el_GR>
+        <en_US>
+            <label>Apache Flex FalconJX (Required)</label>
+            <message>The Apache License V2 applies to the Apache Flex FalconJX Compiler.  Do you want to install the Apache Flex FalconJX Compiler?</message>
+            <license>Apache V2 License</license>
+            <licenseURL>http://www.apache.org/licenses/LICENSE-2.0.html</licenseURL>
+        </en_US>
+    </component>
+</config>