blob: 057b3a23f5611585c72da16c1311cd252980d2d7 [file] [log] [blame]
<!--
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="Avro" default="dist">
<!-- Load user's default properties. -->
<property file="${user.home}/build.properties" />
<property name="share.dir" value="${basedir}/../../share"/>
<property name="dist.dir" value="${basedir}/../../dist/py"/>
<property name="top.build" value="${basedir}/../../build"/>
<loadresource property="version">
<file file="${share.dir}/VERSION.txt"/>
</loadresource>
<path id="java.classpath">
<fileset dir="lib">
<include name="**/*.jar" />
</fileset>
</path>
<path id="test.path">
<pathelement location="${basedir}/src"/>
<pathelement location="${basedir}/test"/>
<pathelement location="${basedir}/lib"/>
</path>
<target name="init">
<copy todir="${basedir}/src/avro">
<fileset dir="${share.dir}/schemas/org/apache/avro/ipc">
<include name="**/*.avsc"/>
</fileset>
</copy>
</target>
<target name="test" depends="init" description="Run python unit tests">
<taskdef name="py-test" classname="org.pyant.tasks.PythonTestTask"
classpathref="java.classpath"/>
<py-test python="python" pythonpathref="test.path" >
<fileset dir="${basedir}/test">
<include name="test_*.py"/>
<exclude name="test_datafile_interop.py"/>
</fileset>
</py-test>
</target>
<target name="interop-data-test" description="Run python interop data tests">
<taskdef name="py-test" classname="org.pyant.tasks.PythonTestTask"
classpathref="java.classpath"/>
<py-test python="python" pythonpathref="test.path" >
<fileset dir="${basedir}/test">
<include name="test_datafile_interop.py"/>
</fileset>
</py-test>
</target>
<target name="interop-data-generate"
description="Generate Python interop data files.">
<mkdir dir="${top.build}/interop/data"/>
<exec executable="python">
<env key="PYTHONPATH" value="$PYTHONPATH:${basedir}/src"/>
<arg value="${basedir}/test/gen_interop_data.py"/>
<arg value="${share.dir}/test/schemas/interop.avsc"/>
<arg value="${top.build}/interop/data/py.avro"/>
</exec>
</target>
<target name="dist" description="Build egg">
<mkdir dir="${dist.dir}"/>
<exec executable="python" failonerror="true">
<arg value="setup.py"/>
<arg value="bdist_egg"/>
<arg value="--dist-dir=${dist.dir}"/>
</exec>
</target>
<target name="clean" description="Delete build files, and their directories">
<delete>
<fileset dir="src" includes="**/*.pyc" />
<fileset dir="${basedir}/src/avro" includes="**/*.avsc"/>
</delete>
</target>
</project>