From: <th...@us...> - 2009-09-13 16:26:37
|
Revision: 6794 http://jython.svn.sourceforge.net/jython/?rev=6794&view=rev Author: thobes Date: 2009-09-13 16:26:28 +0000 (Sun, 13 Sep 2009) Log Message: ----------- Preparing SoC code submission. Modified Paths: -------------- trunk/sandbox/tobias/README.txt trunk/sandbox/tobias/build.xml Property Changed: ---------------- trunk/sandbox/tobias/ Property changes on: trunk/sandbox/tobias ___________________________________________________________________ Modified: svn:externals - jython https://jython.svn.sourceforge.net/svnroot/jython/trunk/jython frame https://kenai.com/svn/jvm-frame-introspect~svn/frame ssa https://kenai.com/svn/ssa-compiler~svn-temprep/trunk + jython https://jython.svn.sourceforge.net/svnroot/jython/trunk/jython frame https://kenai.com/svn/jvm-frame-introspect~svn/frame ssa https://kenai.com/svn/ssa-compiler~svn-temprep/trunk mlvm https://kenai.com/svn/jvm-frame-introspect~svn/mlvm/ Modified: trunk/sandbox/tobias/README.txt =================================================================== --- trunk/sandbox/tobias/README.txt 2009-09-13 10:00:14 UTC (rev 6793) +++ trunk/sandbox/tobias/README.txt 2009-09-13 16:26:28 UTC (rev 6794) @@ -1,5 +1,8 @@ This sandbox contains Tobias projects. Most notably the "advanced" compiler. +The most recent version can be found at: + https://jython.svn.sourceforge.net/svnroot/jython/trunk/sandbox/tobias + Here double version control systems are used. Subversion is used at the base. All sub projects are managed in subversion. The main Jython code is linked using svn:externals. Modified: trunk/sandbox/tobias/build.xml =================================================================== --- trunk/sandbox/tobias/build.xml 2009-09-13 10:00:14 UTC (rev 6793) +++ trunk/sandbox/tobias/build.xml 2009-09-13 16:26:28 UTC (rev 6794) @@ -1,8 +1,5 @@ <project name="advanced" default="all" basedir="."> <target name="all" depends="jython,compiler,frame,util,bytecode,agent"/> - <target name="version"> - <echo message="${ant.version.minor}"/> - </target> <property name="target.dir" location="${basedir}/target"/> @@ -54,6 +51,32 @@ </target> <target name="source dist"> + <tar destfile="${target.dir}/Tobias_Ivarsson.tar.gz" compression="gzip"> + <tarfileset dir="${basedir}"> + <not> + <filename name="**/.svn/**" /> + </not> + <or> + <!-- files --> + <filename name="README.txt" /> + <filename name="bootstrap" /> + <filename name="build.xml" /> + <!-- subdirectories --> + <filename name="agent/**" /> + <filename name="bytecode/**" /> + <filename name="compiler/**" /> + <filename name="frame/**" /> + <filename name="lib/**" /> + <filename name="mlvm/**" /> + <filename name="ssa/**" /> + <filename name="tests/**" /> + <filename name="util/**" /> + </or> + </tarfileset> + <tarfileset dir="${basedir}/.hg/patches" prefix="patches/"> + <filename name="*.patch" /> + </tarfileset> + </tar> </target> <target name="setup target"> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |