aboutsummaryrefslogtreecommitdiff
path: root/build.xml
diff options
context:
space:
mode:
authorcweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f>2009-11-13 23:15:30 +0000
committercweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f>2009-11-13 23:15:30 +0000
commit7ce215405d07cf1c413fb93b9729a4d8c26b3ba1 (patch)
tree4912f9a277e915baaa0970457d2ab65e75ca991b /build.xml
parenta1cbabbdcba287b563aa717f8cb5fdac40a84439 (diff)
downloadsemanticscuttle-7ce215405d07cf1c413fb93b9729a4d8c26b3ba1.tar.gz
semanticscuttle-7ce215405d07cf1c413fb93b9729a4d8c26b3ba1.tar.bz2
move version into build.xml
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@542 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml48
1 files changed, 44 insertions, 4 deletions
diff --git a/build.xml b/build.xml
index 3fe2799..f878eae 100644
--- a/build.xml
+++ b/build.xml
@@ -6,18 +6,26 @@
tasks around SemanticScuttle, like creating a release version,
tagging a release, running unit tests etc.
-->
- <property name="version" value="0.95.0"/>
+ <property file="build.properties" />
- <target name="dist"><!-- depends="build">-->
+ <property name="version" value="0.95" />
+ <property name="distfile" value="dist/${phing.project.name}-${version}.zip" />
+ <property name="sfproject" value="SemanticScuttle" />
+ <property name="sffilepath" value="s/se/semanticscuttle/" />
+
+ <target name="dist" depends="check"
+ description="Create zip file for release"
+ >
<!--
The release file is for end users, so it is safe to
remove anything developer-related.
Test your zip with: unzip -l SemanticScuttle-0.95.0.zip
-->
+ <mkdir dir="dist" />
<echo msg="Creating distribution zip for SemanticScuttle ${version}"/>
- <delete file="SemanticScuttle-${version}.zip" failonerror="false"/>
- <zip destfile="SemanticScuttle-${version}.zip" prefix="SemanticScuttle-${version}/">
+ <delete file="${distfile}" failonerror="false"/>
+ <zip destfile="${distfile}" prefix="${phing.project.name}-${version}/">
<fileset dir=".">
<include name="**"/>
<exclude name="**/.gitignore"/>
@@ -38,4 +46,36 @@
</zip>
</target>
+
+ <!--
+ /home/frs/project/s/se/semanticscuttle/SemanticScuttle/v0.94/
+ /home/frs/project/s/se/semanticscuttle/SemanticScuttle/v0.94/SemanticScuttle-v0.94.zip
+ /home/frs/project/s/se/semanticscuttle/SemanticScuttle/v0.94/SemanticScuttle-v0.94.1.zip
+ -->
+ <target name="deploy-sf" depends="check,dist"
+ description="Upload release to sourceforge"
+ >
+ <delete dir="dist/deploy-sf" /><!-- make empty -->
+ <mkdir dir="dist/deploy-sf" />
+ <mkdir dir="dist/deploy-sf/v${version}" />
+ <copy file="${distfile}" tofile="dist/deploy-sf/v${version}/${distfile}"/>
+ <!-- test
+ <exec command="rsync -av dist/deploy-sf/ /tmp/test/" escape="false" />
+ -->
+ <exec
+ command="rsync -av -e ssh dist/deploy-sf/ ${sfuser},${sfproject}@frs.sourceforge.net:/home/frs/project/${sffilepath}/${sfproject}/"
+ escape="false" checkreturn="true"
+ />
+ </target>
+
+
+ <target name="check"
+ description="Check variables"
+ >
+ <fail unless="version" message="Version not defined!" />
+ <fail unless="sfuser" message="Sourceforge username not defined!" />
+ <fail unless="sfproject" message="Sourceforge project name not defined!" />
+ <fail unless="sffilepath" message="Sourceforge project file path not defined!" />
+ </target>
+
</project> \ No newline at end of file