File: 03_no_internet.patch

package info (click to toggle)
libglazedlists-java 1.9.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 3,024 kB
  • ctags: 4,252
  • sloc: java: 22,561; xml: 818; sh: 51; makefile: 5
file content (44 lines) | stat: -rw-r--r-- 2,017 bytes parent folder | download | duplicates (3)
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
33
34
35
36
37
38
39
40
41
42
43
44
Description: don't do internet stuff
Forwarded: no
Origin: Vendor
Author: gregor herrmann <gregoa@debian.org>
Last-Update: 2013-06-23
Bug-Debian: http://bugs.debian.org/536988

--- a/build.xml
+++ b/build.xml
@@ -238,14 +238,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="${download.tools.url}/bnd/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">
@@ -259,13 +261,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>
 
     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -