Author: eevans Date: Mon Sep 26 21:26:47 2011 New Revision: 1176070 URL: http://svn.apache.org/viewvc?rev=1176070&view=rev Log: relocate Python driver
Moved to: http://code.google.com/a/apache-extras.org/p/cassandra-dbapi2/ Patch by eevans; reviewed by paul cannon for CASSANDRA-3180 Removed: cassandra/trunk/drivers/py/ cassandra/trunk/test/system/test_cql.py Modified: cassandra/trunk/build.xml Modified: cassandra/trunk/build.xml URL: http://svn.apache.org/viewvc/cassandra/trunk/build.xml?rev=1176070&r1=1176069&r2=1176070&view=diff ============================================================================== --- cassandra/trunk/build.xml (original) +++ cassandra/trunk/build.xml Mon Sep 26 21:26:47 2011 @@ -873,7 +873,7 @@ url=${svn.entry.url}?pathrev=${svn.entry </target> <!-- creates release tarballs --> - <target name="artifacts" depends="jar,javadoc,py-cql-driver" + <target name="artifacts" depends="jar,javadoc" description="Create Cassandra release artifacts"> <mkdir dir="${dist.dir}"/> <copy todir="${dist.dir}/lib"> @@ -1319,17 +1319,6 @@ url=${svn.entry.url}?pathrev=${svn.entry <delete dir="build/eclipse-classes" /> </target> - <target name="py-cql-driver" - description="Generate Python CQL driver artifact"> - <echo>Creating Python CQL driver artifact...</echo> - <exec executable="python" dir="${basedir}/drivers/py" failonerror="true"> - <arg line="setup.py" /> - <arg line="sdist" /> - <arg line="--dist-dir" /> - <arg line="${build.dir}" /> - </exec> - </target> - <!-- Publish artifacts to Maven repositories --> <target name="mvn-install" depends="maven-declare-dependencies,artifacts,jar,sources-jar,javadoc-jar"
