libglazedlists-java (1.8.0.dfsg-4) 03_no_internet.patch

Summary

 build.xml |   10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

    
download this patch

Patch contents

Description: don't do internet stuff
Forwarded: no
Origin: Vendor
Author: gregor herrmann <gregoa@debian.org>
Last-Update: 2012-04-17
Bug-Debian: http://bugs.debian.org/536988

--- a/build.xml
+++ b/build.xml
@@ -171,14 +171,16 @@
 
         <mkdir dir="tools"/>
         <!--download the BND library for creating entries in the manifest.mf file which make it a compliant OSGi bundle. See http://www.osgi.org/ -->
+        <!--
         <java classname="ca.odell.glazedlists.impl.HttpClient">
             <classpath path="${classes.dir}"/>
             <arg value="https://glazedlists.dev.java.net/files/documents/1073/110958/bnd.jar"/>
             <arg value="tools/bnd.jar"/>
         </java>
+        -->
 
         <!-- prepare the bnd task which generates OSGi bundle JARs -->
-        <taskdef resource="aQute/bnd/ant/taskdef.properties" classpath="tools/bnd.jar"/>
+        <!-- <taskdef resource="aQute/bnd/ant/taskdef.properties" classpath="tools/bnd.jar"/> -->
 
         <!-- create a normal jar file -->
         <jar destfile="${target.dir}/${jar.file}" update="true" index="true">
@@ -191,13 +193,13 @@
         </jar>
 
         <!-- use the BND tool to generate an OSGi jar from scratch, using the original JAR file as input -->
-        <bnd classpath="${target.dir}/${jar.file}" output="${target.dir}/${jar.file}.osgi" exceptions="true" files="glazedlists.bnd"/>
+        <!-- <bnd classpath="${target.dir}/${jar.file}" output="${target.dir}/${jar.file}.osgi" exceptions="true" files="glazedlists.bnd"/> -->
 
         <!-- delete the original jar file -->
-        <delete file="${target.dir}/${jar.file}"/>
+        <!-- <delete file="${target.dir}/${jar.file}"/> -->
 
         <!-- rename the OSGi Bundle to the orignal jar file's name -->
-        <move file="${target.dir}/${jar.file}.osgi" toFile="${target.dir}/${jar.file}"/>
+        <!-- <move file="${target.dir}/${jar.file}.osgi" toFile="${target.dir}/${jar.file}"/> -->
     </target>
 
 	<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -