1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
Description: Remove WebDAV sync from build.xml
build.xml includes a task used by the upstream author to copy the source
somewhere else using WebDAV. This is obviously not appropriate for anything
other than the upstream author's development environment.
Author: Tristan Seligmann <mithrandi@debian.org>
Last-Update: 2014-01-19
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- css2xslfo-1.6.2.orig/build.xml
+++ css2xslfo-1.6.2/build.xml
@@ -4,8 +4,6 @@
<property name="version" value="1_6_2" />
<property name="view" value="csstoxslfo_release" />
- <taskdef name="webdav-sync" classname="be.re.webdav.cmd.SyncAntTask" classpath="${user.home}/bin/webdav_sync.jar" />
-
<fileset id="compile-classpath" dir="lib">
<include name="flute.jar" />
<include name="sac.jar" />
@@ -174,12 +172,6 @@
<tstamp />
<mkdir dir="classes" />
<mkdir dir="bin" />
- <webdav-sync url="https://werner@re.pincette.net/view/${view}/java/src/" directory="src" direction="down" />
- <webdav-sync url="https://werner@re.pincette.net/view/${view}/java/lib/" directory="lib" direction="down" />
- <webdav-sync url="https://werner@re.pincette.net/view/${view}/java/applications/css2xslfo/doc/" directory="doc" direction="down" />
- <webdav-sync url="https://werner@re.pincette.net/view/${view}/java/applications/css2xslfo/res/" directory="res" direction="down" />
- <webdav-sync url="https://werner@re.pincette.net/view/${view}/java/applications/css2xslfo/lib_src/" directory="lib_src" direction="down" />
- <webdav-sync url="https://werner@re.pincette.net/view/${view}/dtd/" directory="dtd" direction="down" />
</target>
<target name="jar">
|