diff options
author | Klaus Weidenbach <Klaus.Weidenbach@gmx.net> | 2014-06-28 22:28:08 +0200 |
---|---|---|
committer | Klaus Weidenbach <Klaus.Weidenbach@gmx.net> | 2014-06-29 01:17:07 +0200 |
commit | 03b31d113ea316c8384a4cbf3d27ca22bb528eac (patch) | |
tree | 92ed87436b09ab806f9effff08145408044d77f4 /vendor/sabre/dav/build.xml | |
parent | f49b74c5f6ebe57937fb6dfea7d2e917f4680ce9 (diff) | |
download | volse-hubzilla-03b31d113ea316c8384a4cbf3d27ca22bb528eac.tar.gz volse-hubzilla-03b31d113ea316c8384a4cbf3d27ca22bb528eac.tar.bz2 volse-hubzilla-03b31d113ea316c8384a4cbf3d27ca22bb528eac.zip |
Update SabreDAV from 1.8.9 to 1.8.10.
Diffstat (limited to 'vendor/sabre/dav/build.xml')
-rw-r--r-- | vendor/sabre/dav/build.xml | 72 |
1 files changed, 0 insertions, 72 deletions
diff --git a/vendor/sabre/dav/build.xml b/vendor/sabre/dav/build.xml deleted file mode 100644 index 0f70f8199..000000000 --- a/vendor/sabre/dav/build.xml +++ /dev/null @@ -1,72 +0,0 @@ -<?xml version="1.0"?> -<project name="SabreDAV" default="buildzip" basedir="."> - - <!-- Any default properties --> - <property file="build.properties" /> - - <!-- Where to write api documentation --> - <property name="sabredav.apidocspath" value="docs/api" /> - - <target name="buildzip" depends="init, test, clean"> - <mkdir dir="build" /> - <echo>Running composer</echo> - <exec command="composer create-project --no-dev sabre/dav build/SabreDAV ${sabredav.version}" checkreturn="false" passthru="1" /> - <zip destfile="build/SabreDAV-${sabredav.version}.zip" basedir="build/SabreDAV" prefix="SabreDAV/" /> - </target> - - <target name="clean" depends="init"> - <echo msg="Removing build files (cleaning up distribution)" /> - <delete dir="docs/api" /> - <delete dir="build" /> - </target> - - <target name="markrelease" depends="init,clean,test"> - <echo>Creating Git release tag</echo> - <exec command="git tag ${sabredav.version}" checkreturn="false" passthru="1" /> - </target> - - <target name="test"> - <phpunit haltonfailure="1" haltonerror="1" bootstrap="tests/bootstrap.php" haltonskipped="1" printsummary="1"> - <batchtest> - <fileset dir="tests"> - <include name="**/*.php"/> - </fileset> - </batchtest> - </phpunit> - </target> - - <target name="apidocs" depends="init"> - - <echo>Creating api documentation using PHP documentor</echo> - <echo>Writing to ${sabredav.apidocspath}</echo> - <exec command="phpdoc parse -t ${sabredav.apidocspath} -d lib/" passthru="1" /> - <exec command="bin/phpdocmd ${sabredav.apidocspath}/structure.xml ${sabredav.apidocspath} --lt %c" passthru="1" /> - <!--<delete file="${sabredav.apidocspath}/structure.xml" />--> - - </target> - - <target name="init"> - - <!-- This sets SabreDAV version information --> - <adhoc-task name="sabredav-version"><![CDATA[ - - class SabreDAV_VersionTask extends Task { - - public function main() { - - include_once 'lib/Sabre/DAV/Version.php'; - $this->getProject()->setNewProperty('sabredav.version',\Sabre\DAV\Version::VERSION); - $this->getProject()->setNewProperty('sabredav.stability',\Sabre\DAV\Version::STABILITY); - $this->getProject()->setNewProperty('sabredav.ucstability',ucwords(Sabre\DAV\Version::STABILITY)); - - } - - } - - ]]></adhoc-task> - <sabredav-version /> - <echo>SabreDAV version ${sabredav.version}</echo> - - </target> - -</project> |