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 2014/06/06 20:24:10 UTC

[1/3] git commit: [flex-falcon] [refs/heads/develop] - make sure you can override most download urls

Repository: flex-falcon
Updated Branches:
  refs/heads/develop 3353e2c0c -> c9ca41eaa


make sure you can override most download urls


Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/702851c2
Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/702851c2
Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/702851c2

Branch: refs/heads/develop
Commit: 702851c249ec599d1b66e152b1500b1508d61b40
Parents: 3353e2c
Author: Alex Harui <ah...@apache.org>
Authored: Fri Jun 6 11:17:01 2014 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Fri Jun 6 11:17:01 2014 -0700

----------------------------------------------------------------------
 compiler.jx/downloads.xml | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/702851c2/compiler.jx/downloads.xml
----------------------------------------------------------------------
diff --git a/compiler.jx/downloads.xml b/compiler.jx/downloads.xml
index 034d2e5..ff73c61 100644
--- a/compiler.jx/downloads.xml
+++ b/compiler.jx/downloads.xml
@@ -31,6 +31,8 @@
     <property name="lib.dir" value="${FALCONJX_HOME}/lib"/>    
 	<property name="download.dir" value="${FALCONJX_HOME}/in"/>
     <property file="${basedir}/local.properties"/>
+    <property name="closure.download.server" value="http://dl.google.com" />
+    <property name="closure.download.folder" value="closure-compiler" />
     <property name="closure.download.filename" value="compiler-20140303.zip" />
     <property name="closure.download.checksum" value="072349ef05a6d909c9e8a97edac1f580" />
     
@@ -221,8 +223,8 @@
 	    description="Copies the closure build jars.">
 		<mkdir dir="${lib.dir}/google/closure-compiler" />
         <antcall target="echo-closure-jar">
-            <param name="srcDomain" value="http://dl.google.com"/>
-            <param name="srcFolder" value="closure-compiler"/>
+            <param name="srcDomain" value="${closure.download.server}"/>
+            <param name="srcFolder" value="${closure.download.folder}"/>
             <!--
              erikdebruin: because of a dependency Falcon has on an old version of Guava,
              any versions of the Closure compiler after sept. 17, 2012 cause exceptions
@@ -233,8 +235,8 @@
             <param name="srcFile" value="${closure.download.filename}"/>
         </antcall>
 	    <antcall target="download-zip">
-            <param name="srcDomain" value="http://dl.google.com"/>
-            <param name="srcFolder" value="closure-compiler"/>
+            <param name="srcDomain" value="${closure.download.server}"/>
+            <param name="srcFolder" value="${closure.download.folder}"/>
 	      <!-- 
 				erikdebruin: because of a dependency Falcon has on an old version of Guava, 
 				any versions of the Closure compiler after sept. 17, 2012 cause exceptions 


[3/3] git commit: [flex-falcon] [refs/heads/develop] - update release notes

Posted by ah...@apache.org.
update release notes


Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/c9ca41ea
Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/c9ca41ea
Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/c9ca41ea

Branch: refs/heads/develop
Commit: c9ca41eaa302f0a989f985fd0005f7a901a35267
Parents: d9ef6ce
Author: Alex Harui <ah...@apache.org>
Authored: Fri Jun 6 11:23:59 2014 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Fri Jun 6 11:23:59 2014 -0700

----------------------------------------------------------------------
 RELEASE_NOTES    |  8 ++++++++
 RELEASE_NOTES_JX | 10 ++++++++++
 2 files changed, 18 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/c9ca41ea/RELEASE_NOTES
----------------------------------------------------------------------
diff --git a/RELEASE_NOTES b/RELEASE_NOTES
index b48b05b..3bd5227 100644
--- a/RELEASE_NOTES
+++ b/RELEASE_NOTES
@@ -1,3 +1,11 @@
+Apache Flex 'Falcon' Compiler 0.0.2
+=================
+Apache Flex 'Falcon' Compiler 0.0.2 is the second release of a next-generation
+compiler intended to someday replace the MXMLC in Apache Flex SDKs, and is the
+compiler for Apache FlexJS SDKs.
+
+The only changes in this release are for build script dependencies.
+
 Apache Flex 'Falcon' Compiler 0.0.1
 =================
 

http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/c9ca41ea/RELEASE_NOTES_JX
----------------------------------------------------------------------
diff --git a/RELEASE_NOTES_JX b/RELEASE_NOTES_JX
index dbf606e..f294673 100644
--- a/RELEASE_NOTES_JX
+++ b/RELEASE_NOTES_JX
@@ -1,3 +1,13 @@
+Apache Flex 'FalconJX' Cross-Compiler 0.0.2
+=================
+
+Apache Flex 'FalconJX' Compiler 0.0.2 is the second release of a next-generation
+compiler that, instead of creating a SWF or SWC, cross compiles MXML and ActionScript
+to JavaScript.  It is intended for use as the cross-compiler for Apache FlexJS SDKs.  
+
+The only major change in this release is to speed up cross-compilation by only copying a subset of the Google Closure Library files to the output folder.
+
+
 Apache Flex 'FalconJX' Cross-Compiler 0.0.1
 =================
 


[2/3] git commit: [flex-falcon] [refs/heads/develop] - update readme with current dependency versions

Posted by ah...@apache.org.
update readme with current dependency versions


Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/d9ef6cec
Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/d9ef6cec
Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/d9ef6cec

Branch: refs/heads/develop
Commit: d9ef6cec954e3268ea4db18864ced73acc762195
Parents: 702851c
Author: Alex Harui <ah...@apache.org>
Authored: Fri Jun 6 11:17:28 2014 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Fri Jun 6 11:17:28 2014 -0700

----------------------------------------------------------------------
 README    | 2 +-
 README_JX | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/d9ef6cec/README
----------------------------------------------------------------------
diff --git a/README b/README
index 1139ec1..4958d43 100644
--- a/README
+++ b/README
@@ -179,7 +179,7 @@ Software Dependencies
     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.
 
-        antler - http://antlr3.org/download/antlr-3.3-complete.jar
+        antler - 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-1.2-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/15.0/guava-15.0.jar

http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/d9ef6cec/README_JX
----------------------------------------------------------------------
diff --git a/README_JX b/README_JX
index e82459c..dafd949 100644
--- a/README_JX
+++ b/README_JX
@@ -68,7 +68,7 @@ Software Dependencies
     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.
 
-        Google Closure Compiler - http://dl.google.com/closure-compiler/compiler-latest.zip
+        Google Closure Compiler - http://dl.google.com/closure-compiler/compiler-20140303.zip
         commons-io - http://archive.apache.org/dist/commons/io/binaries/commons-io-2.0.1.tar.gz