[pkg-java] r11854 - in trunk: . knopflerfish-osgi knopflerfish-osgi/debian knopflerfish-osgi/debian/patches knopflerfish-osgi/debian/source

Eric Lavarde ewl-guest at alioth.debian.org
Sat Mar 13 19:30:47 UTC 2010


Author: ewl-guest
Date: 2010-03-13 19:30:41 +0000 (Sat, 13 Mar 2010)
New Revision: 11854

Added:
   trunk/knopflerfish-osgi/
   trunk/knopflerfish-osgi/debian/
   trunk/knopflerfish-osgi/debian/README.Debian
   trunk/knopflerfish-osgi/debian/README.source
   trunk/knopflerfish-osgi/debian/changelog
   trunk/knopflerfish-osgi/debian/clean-sources
   trunk/knopflerfish-osgi/debian/compat
   trunk/knopflerfish-osgi/debian/control
   trunk/knopflerfish-osgi/debian/copyright
   trunk/knopflerfish-osgi/debian/libknopflerfish-osgi-framework-java.dirs
   trunk/knopflerfish-osgi/debian/libknopflerfish-osgi-framework-java.docs
   trunk/knopflerfish-osgi/debian/libknopflerfish-osgi-framework-java.install
   trunk/knopflerfish-osgi/debian/libknopflerfish-osgi-framework-java.links
   trunk/knopflerfish-osgi/debian/patches/
   trunk/knopflerfish-osgi/debian/patches/10_build_asm.patch
   trunk/knopflerfish-osgi/debian/patches/20_versioned_jar.patch
   trunk/knopflerfish-osgi/debian/patches/debian-changes-2.3.3-1
   trunk/knopflerfish-osgi/debian/patches/series
   trunk/knopflerfish-osgi/debian/rules
   trunk/knopflerfish-osgi/debian/source/
   trunk/knopflerfish-osgi/debian/source/format
   trunk/knopflerfish-osgi/debian/watch
Log:
Initial import, version 2.3.3-1


Added: trunk/knopflerfish-osgi/debian/README.Debian
===================================================================
--- trunk/knopflerfish-osgi/debian/README.Debian	                        (rev 0)
+++ trunk/knopflerfish-osgi/debian/README.Debian	2010-03-13 19:30:41 UTC (rev 11854)
@@ -0,0 +1,7 @@
+knopflerfish-osgi for Debian
+----------------------------
+
+This package contains only the framework of Knopflerfish's OSGi implementation,
+not the bundles.
+
+ -- Eric Lavarde <deb at zorglub.s.bawue.de>  Sat, 13 Feb 2010 21:58:35 +0100

Added: trunk/knopflerfish-osgi/debian/README.source
===================================================================
--- trunk/knopflerfish-osgi/debian/README.source	                        (rev 0)
+++ trunk/knopflerfish-osgi/debian/README.source	2010-03-13 19:30:41 UTC (rev 11854)
@@ -0,0 +1,12 @@
+knopflerfish-osgi for Debian
+----------------------------
+
+This package provides only the Framework from Knopflefish's OSGi package,
+even though the sources also contain the bundles.
+
+Anybody is welcome to joing the Java Maintainers group and help to package
+the multiple dependencies of the bundles before packaging the whole
+thing.
+
+To get the sources, just call 'uscan' from the directory containing the
+'debian' directory, or call 'debian/rules get-orig-source'.

Added: trunk/knopflerfish-osgi/debian/changelog
===================================================================
--- trunk/knopflerfish-osgi/debian/changelog	                        (rev 0)
+++ trunk/knopflerfish-osgi/debian/changelog	2010-03-13 19:30:41 UTC (rev 11854)
@@ -0,0 +1,5 @@
+knopflerfish-osgi (2.3.3-1) unstable; urgency=low
+
+  * Initial release (Closes: #478323).
+
+ -- Eric Lavarde <deb at zorglub.s.bawue.de>  Sat, 13 Feb 2010 21:58:35 +0100

Added: trunk/knopflerfish-osgi/debian/clean-sources
===================================================================
--- trunk/knopflerfish-osgi/debian/clean-sources	                        (rev 0)
+++ trunk/knopflerfish-osgi/debian/clean-sources	2010-03-13 19:30:41 UTC (rev 11854)
@@ -0,0 +1,37 @@
+#!/bin/sh -x
+
+PACKAGE="knopflerfish-osgi"
+
+if [ $# -ne 3 ] || [ $1 != '--upstream-version' ]
+then
+	echo "Call: $0 --upstream-version <version> <file>" >&2
+	echo "Example: $0 --upstream-version 2.3.3 ../knopflerfish_osgi_2.3.3.jar" >&2
+	echo "See manpage USCAN(1) for more details" >&2
+	exit 2
+fi
+
+version="$2"
+file="$3"
+
+basedir=$(dirname "$file")
+packdir="${basedir}/${PACKAGE}-${version}"
+
+if [ -d ../tarballs ]
+then # structure of svn-buildpackage
+	origtar="../tarballs/${PACKAGE}_${version}.orig.tar.gz"
+else
+	origtar="${basedir}/${PACKAGE}_${version}.orig.tar.gz"
+fi
+
+if [ -d "${packdir}" ]
+then
+	rm -rI "${packdir}"
+fi
+
+unzip -q -d "${packdir}" "${file}" || exit 1
+find "${packdir}" -name \*.zip -o -name \*.jar -o -name \*.class | xargs rm -f 
+tar czf "${origtar}" -C "${basedir}" $(basename "${packdir}") || exit 1
+
+echo "Original source file saved to '${origtar}'."
+
+rm -rf "${packdir}"


Property changes on: trunk/knopflerfish-osgi/debian/clean-sources
___________________________________________________________________
Added: svn:executable
   + 

Added: trunk/knopflerfish-osgi/debian/compat
===================================================================
--- trunk/knopflerfish-osgi/debian/compat	                        (rev 0)
+++ trunk/knopflerfish-osgi/debian/compat	2010-03-13 19:30:41 UTC (rev 11854)
@@ -0,0 +1 @@
+7

Added: trunk/knopflerfish-osgi/debian/control
===================================================================
--- trunk/knopflerfish-osgi/debian/control	                        (rev 0)
+++ trunk/knopflerfish-osgi/debian/control	2010-03-13 19:30:41 UTC (rev 11854)
@@ -0,0 +1,24 @@
+Source: knopflerfish-osgi
+Section: java
+Priority: extra
+Maintainer: Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.org>
+Uploaders: Eric Lavarde <deb at zorglub.s.bawue.de>
+Build-Depends-Indep: libasm3-java, ant, openjdk-6-jdk
+Build-Depends: cdbs, debhelper (>= 7)
+Standards-Version: 3.8.4
+Homepage: http://www.knopflerfish.org/
+
+Package: libknopflerfish-osgi-framework-java
+Architecture: all
+Depends: ${shlibs:Depends}, ${misc:Depends}, openjdk-6-jre | sun-java5-jre | sun-java6-jre | java2-runtime
+Description: Java framework implementing the OSGi R4 version
+ OSGi, Open Service Gateway Initiative, specifies an industry standard Java
+ application platform, allowing multiple applications, to securely run in a
+ single JVM. These programs can share resources as data, functionality and
+ threads.
+ .
+ Applications areas for OSGi ranges from use as a service platform on embedded
+ devices, to plugin mechanisms for larger programs. The initial goal of OSGi
+ was the embedded market, but other uses are certainly possible. 
+ .
+ This package specifically provides the framework JAR file.

Added: trunk/knopflerfish-osgi/debian/copyright
===================================================================
--- trunk/knopflerfish-osgi/debian/copyright	                        (rev 0)
+++ trunk/knopflerfish-osgi/debian/copyright	2010-03-13 19:30:41 UTC (rev 11854)
@@ -0,0 +1,205 @@
+This work was packaged for Debian by:
+
+    Eric Lavarde <deb at zorglub.s.bawue.de> on Sat, 13 Feb 2010 21:58:35 +0100
+
+It was downloaded from:
+
+    <http://www.knopflerfish.org/>
+
+Upstream Author(s):
+
+    No specific author named, the source code is copyrighted
+    by The Knopflerfish Project, led and maintained by
+    Makewave <info at makewave.com>.
+
+Copyright:
+
+    Copyright 2003-2009 The Knopflerfish Project
+
+License:
+
+    BSD, see "/usr/share/common-licenses/BSD".
+
+The Debian packaging is:
+
+    Copyright (C) 2010 Eric Lavarde <deb at zorglub.s.bawue.de>
+    and is licensed under BSD,
+    see "/usr/share/common-licenses/BSD".
+
+
+Further parts of the source code are licensed and copyrighted as follows:
+
+======================================================================
+=	General Notices
+======================================================================
+
+----------------------------------------------------------------------
+-	OSGi Alliance Notice
+----------------------------------------------------------------------
+This product includes the OSGi Service Platform API code from the OSGi
+Alliance provided under an Apache 2 license.
+http://www.osgi.org
+
+Copyright (c) OSGi Alliance (2001, 2006). All Rights Reserved.
+
+
+----------------------------------------------------------------------
+-	Carlitus icons Notice
+----------------------------------------------------------------------
+This product uses icons created by Carlitus,
+http://www.carlitus.net, originally distributed under LGPL, 
+used with permission.
+
+
+----------------------------------------------------------------------
+-	ASM Notice
+----------------------------------------------------------------------
+This product includes the ASM byte code manipulation library from
+INRIA (BSD Style License)
+http://asm.objectweb.org
+
+Copyright (c) 2000-2005 INRIA, France Telecom
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions
+are met:
+
+1. Redistributions of source code must retain the above copyright
+   notice, this list of conditions and the following disclaimer.
+
+2. Redistributions in binary form must reproduce the above copyright
+   notice, this list of conditions and the following disclaimer in the
+   documentation and/or other materials provided with the distribution.
+
+3. Neither the name of the copyright holders nor the names of its
+   contributors may be used to endorse or promote products derived from
+   this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
+LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
+THE POSSIBILITY OF SUCH DAMAGE.
+
+
+======================================================================
+=	Bundle Specific Notices
+======================================================================
+
+----------------------------------------------------------------------
+-	Axis Bundle Notice
+----------------------------------------------------------------------
+This product includes the axis bundle which includes software
+developed by the Apache Axis project releases under Apache Software
+License, Version 1.1. (c) 1999-2003.
+
+----------------------------------------------------------------------
+-	Axis 2 Bundle Notice
+----------------------------------------------------------------------
+This product includes the axis2 bundle which includes software
+developed by the Apache Axis project releases under Apache Software
+License, Version 2.0. (c) 2001-2004
+
+http://ws.apache.org/axis2/
+
+----------------------------------------------------------------------
+-	Bundlerepository Bundle Notice
+----------------------------------------------------------------------
+This product includes the bundlerepository bundle which includes
+the follwing software:
+
+  OBR related softare developed by the the Oscar Project.
+  Copyright (c) 2004, Richard S. Hall
+
+  XML Parser software
+  Copyright (c) 2004, Didier Donsez
+
+  kxml parser
+  Copyright (c) 2002,2003, Stefan Haustein, Oberhausen, Rhld., Germany
+
+----------------------------------------------------------------------
+-	Commons Loggin Bundle Notice
+----------------------------------------------------------------------
+This product includes the commons_logging bundle which includes
+software developed by the Apache Commons Logging project releases
+under Apache Software License, Version 2.0. (c) 2001-2004
+http://commons.apache.org/logging/
+
+----------------------------------------------------------------------
+-	Crimson Bundle Notice
+----------------------------------------------------------------------
+This product includes the xerces bundle which includes software
+developed by the Apache Crimson project releases under Apache Software
+License, Version 1.1 (c) 1999-2003.
+http://xml.apache.org/dist/LICENSE.txt
+
+----------------------------------------------------------------------
+-	JSDK Bundle Notice
+----------------------------------------------------------------------
+This product includes the jsdk bundle which includes
+software developed by the Apache Geronimo project released
+under Apache Software License, Version 2.0. (c) 2001-2004
+
+----------------------------------------------------------------------
+-	JUnit Bundle Notice
+----------------------------------------------------------------------
+This product includes the junit bundles which includes
+software developed by the JUnit project releases under a Common Public
+License, Version 1.0
+http://junit.sourceforge.net/
+
+----------------------------------------------------------------------
+-	kSOAP Bundle Notice
+----------------------------------------------------------------------
+This product includes the ksoap-osgi bundles which includes software
+developed by the kSOAP project.
+http://www.ksoap.org
+
+Copyright (c) 2002,2004, Stefan Haustein, Oberhausen, Rhld., Germany
+
+----------------------------------------------------------------------
+-	kxml Bundle Notice
+----------------------------------------------------------------------
+This product includes the kxml bundle which includes software
+developed by Stefan Haustein.
+http://www.kxml.org
+
+Copyright (c) 2002,2003, Stefan Haustein, Oberhausen, Rhld., Germany
+
+----------------------------------------------------------------------
+-	Oscar Shell API Bundle Notice
+----------------------------------------------------------------------
+This product includes the oscar-shell  bundle which includes
+software developed by the Oscar project.
+Copyright (c) 2004, Richard S. Hall
+
+----------------------------------------------------------------------
+-	Windows Tray Icon Bundle Notice
+----------------------------------------------------------------------
+This product includes the trayicon bundle written by Jan Struyf
+http://jeans.studentenweb.org/java/trayicon/trayicon.html
+Distributed under "May the Force be with you... Just compile 
+it & use it!"-license
+
+----------------------------------------------------------------------
+-	Xalan Bundle Notice
+----------------------------------------------------------------------
+This product includes the xerces bundle which includes software
+developed by the Apache Xalan project releases under Apache Software
+License, Version 2.0. (c) 2001-2004
+http://xml.apache.org/xalan-j/
+
+----------------------------------------------------------------------
+-	Xerces Bundle Notice
+----------------------------------------------------------------------
+This product includes the xerces bundle which includes software
+developed by the Apache Xerces project releases under Apache Software
+License, Version 2.0. (c) 2001-2004
+http://xerces.apache.org/

Added: trunk/knopflerfish-osgi/debian/libknopflerfish-osgi-framework-java.dirs
===================================================================
--- trunk/knopflerfish-osgi/debian/libknopflerfish-osgi-framework-java.dirs	                        (rev 0)
+++ trunk/knopflerfish-osgi/debian/libknopflerfish-osgi-framework-java.dirs	2010-03-13 19:30:41 UTC (rev 11854)
@@ -0,0 +1 @@
+usr/share/java/knopflerfish

Added: trunk/knopflerfish-osgi/debian/libknopflerfish-osgi-framework-java.docs
===================================================================
--- trunk/knopflerfish-osgi/debian/libknopflerfish-osgi-framework-java.docs	                        (rev 0)
+++ trunk/knopflerfish-osgi/debian/libknopflerfish-osgi-framework-java.docs	2010-03-13 19:30:41 UTC (rev 11854)
@@ -0,0 +1 @@
+knopflerfish.org/osgi/framework/readme.txt

Added: trunk/knopflerfish-osgi/debian/libknopflerfish-osgi-framework-java.install
===================================================================
--- trunk/knopflerfish-osgi/debian/libknopflerfish-osgi-framework-java.install	                        (rev 0)
+++ trunk/knopflerfish-osgi/debian/libknopflerfish-osgi-framework-java.install	2010-03-13 19:30:41 UTC (rev 11854)
@@ -0,0 +1 @@
+knopflerfish.org/osgi/framework-2.3.3.jar usr/share/java/knopflerfish/

Added: trunk/knopflerfish-osgi/debian/libknopflerfish-osgi-framework-java.links
===================================================================
--- trunk/knopflerfish-osgi/debian/libknopflerfish-osgi-framework-java.links	                        (rev 0)
+++ trunk/knopflerfish-osgi/debian/libknopflerfish-osgi-framework-java.links	2010-03-13 19:30:41 UTC (rev 11854)
@@ -0,0 +1 @@
+usr/share/java/knopflerfish/framework-2.3.3.jar usr/share/java/knopflerfish/framework.jar 

Added: trunk/knopflerfish-osgi/debian/patches/10_build_asm.patch
===================================================================
--- trunk/knopflerfish-osgi/debian/patches/10_build_asm.patch	                        (rev 0)
+++ trunk/knopflerfish-osgi/debian/patches/10_build_asm.patch	2010-03-13 19:30:41 UTC (rev 11854)
@@ -0,0 +1,12 @@
+diff -Nur -x '*.orig' -x '*~' knopflerfish_osgi_2.3.3/knopflerfish.org/osgi/framework/build.xml knopflerfish_osgi_2.3.3.new/knopflerfish.org/osgi/framework/build.xml
+--- knopflerfish_osgi_2.3.3/knopflerfish.org/osgi/framework/build.xml	2009-09-11 14:14:08.000000000 +0200
++++ knopflerfish_osgi_2.3.3.new/knopflerfish.org/osgi/framework/build.xml	2010-02-13 22:08:31.000000000 +0100
+@@ -23,7 +23,7 @@
+ 
+   <path id = "compile.path">
+    <pathelement location="${topdir}/framework/resources"/>
+-   <pathelement location="libs/asm-3.1.jar"/>
++   <pathelement location="/usr/share/java/asm3.jar"/>
+   </path>
+ 
+   <!-- targets -->

Added: trunk/knopflerfish-osgi/debian/patches/20_versioned_jar.patch
===================================================================
--- trunk/knopflerfish-osgi/debian/patches/20_versioned_jar.patch	                        (rev 0)
+++ trunk/knopflerfish-osgi/debian/patches/20_versioned_jar.patch	2010-03-13 19:30:41 UTC (rev 11854)
@@ -0,0 +1,12 @@
+diff -Nur -x '*.orig' -x '*~' knopflerfish_osgi_2.3.3//knopflerfish.org/osgi/framework/build.xml knopflerfish_osgi_2.3.3.new//knopflerfish.org/osgi/framework/build.xml
+--- knopflerfish_osgi_2.3.3//knopflerfish.org/osgi/framework/build.xml	2010-02-28 17:08:37.000000000 +0100
++++ knopflerfish_osgi_2.3.3.new//knopflerfish.org/osgi/framework/build.xml	2010-02-28 17:19:37.000000000 +0100
+@@ -12,7 +12,7 @@
+   <property name="classout"      location="${outdir}/classes"/>
+   <property name="docdir"        location="${ant.project.name}/apidoc"/>
+ 
+-  <property name="jarfile"       location="${topdir}/${ant.project.name}.jar"/>
++  <property name="jarfile"       location="${topdir}/${ant.project.name}-2.3.3.jar"/>
+ 
+   <property name = "javac.target"    value="1.1"/>
+   <property name = "javac.source"    value="1.2"/>

Added: trunk/knopflerfish-osgi/debian/patches/debian-changes-2.3.3-1
===================================================================
--- trunk/knopflerfish-osgi/debian/patches/debian-changes-2.3.3-1	                        (rev 0)
+++ trunk/knopflerfish-osgi/debian/patches/debian-changes-2.3.3-1	2010-03-13 19:30:41 UTC (rev 11854)
@@ -0,0 +1,32 @@
+Description: Upstream changes introduced in version 2.3.3-1
+ This patch has been created by dpkg-source during the package build.
+ Here's the last changelog entry, hopefully it gives details on why
+ those changes were made:
+ .
+ knopflerfish-osgi (2.3.3-1) unstable; urgency=low
+ .
+   * Initial release (Closes: #478323).
+ .
+ The person named in the Author field signed this changelog entry.
+Author: Eric Lavarde <deb at zorglub.s.bawue.de>
+Bug-Debian: http://bugs.debian.org/478323
+
+---
+The information above should follow the Patch Tagging Guidelines, please
+checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
+are templates for supplementary fields that you might want to add:
+
+Origin: <vendor|upstream|other>, <url of original patch>
+Bug: <url in upstream bugtracker>
+Bug-Debian: http://bugs.debian.org/<bugnumber>
+Forwarded: <no|not-needed|url proving that it has been forwarded>
+Reviewed-By: <name and email of someone who approved the patch>
+Last-Update: <YYYY-MM-DD>
+
+--- knopflerfish-osgi-2.3.3.orig/knopflerfish.org/osgi/framework/resources/tstamp
++++ knopflerfish-osgi-2.3.3/knopflerfish.org/osgi/framework/resources/tstamp
+@@ -1 +1 @@
+-Build Fri September 11 2009, 14:19:45
+\ No newline at end of file
++Build Sat March 13 2010, 13:19:57
+\ No newline at end of file

Added: trunk/knopflerfish-osgi/debian/patches/series
===================================================================
--- trunk/knopflerfish-osgi/debian/patches/series	                        (rev 0)
+++ trunk/knopflerfish-osgi/debian/patches/series	2010-03-13 19:30:41 UTC (rev 11854)
@@ -0,0 +1 @@
+debian-changes-2.3.3-1

Added: trunk/knopflerfish-osgi/debian/rules
===================================================================
--- trunk/knopflerfish-osgi/debian/rules	                        (rev 0)
+++ trunk/knopflerfish-osgi/debian/rules	2010-03-13 19:30:41 UTC (rev 11854)
@@ -0,0 +1,23 @@
+#!/usr/bin/make -f
+# debian/rules for Commons Fileupload (uses CDBS)
+
+clean:: buildxml-clean
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/ant.mk
+include /usr/share/cdbs/1/rules/simple-patchsys.mk
+
+JAVA_HOME_DIRS       := /usr/lib/jvm/java-6-openjdk
+
+ANT_HOME             := /usr/share/ant
+DEB_ANT_BUILD_TARGET := jar
+DEB_BUILDDIR         := knopflerfish.org/osgi/framework
+# DEB_INSTALL_DOCS_ALL = -Xlicense
+# DEB_DH_INSTALL_ARGS := -XLICENSE.txt
+
+buildxml-clean::
+	-$(DEB_ANT_INVOKE) $(DEB_ANT_CLEAN_TARGET)
+
+# Get original sources directly using uscan
+get-orig-source:
+	uscan


Property changes on: trunk/knopflerfish-osgi/debian/rules
___________________________________________________________________
Added: svn:executable
   + 

Added: trunk/knopflerfish-osgi/debian/source/format
===================================================================
--- trunk/knopflerfish-osgi/debian/source/format	                        (rev 0)
+++ trunk/knopflerfish-osgi/debian/source/format	2010-03-13 19:30:41 UTC (rev 11854)
@@ -0,0 +1 @@
+3.0 (quilt)

Added: trunk/knopflerfish-osgi/debian/watch
===================================================================
--- trunk/knopflerfish-osgi/debian/watch	                        (rev 0)
+++ trunk/knopflerfish-osgi/debian/watch	2010-03-13 19:30:41 UTC (rev 11854)
@@ -0,0 +1,25 @@
+# Example watch control file for uscan
+# Rename this file to "watch" and then you can run the "uscan" command
+# to check for upstream updates and more.
+# See uscan(1) for format
+
+# Compulsory line, this is a version 3 file
+version=3
+
+http://www.knopflerfish.com/releases/(2\.\d\.\d)/knopflerfish_osgi_([\d\.]+)\.jar debian ./debian/clean-sources
+
+# Uncomment to examine a Webpage
+# <Webpage URL> <string match>
+#http://www.knopflerfish.com/download.html knopflerfish_osgi_(.*)\.jar
+
+# Uncomment to examine a Webserver directory
+#http://www.example.com/pub/knopflerfish-osgi-(.*)\.tar\.gz
+
+# Uncommment to examine a FTP server
+#ftp://ftp.example.com/pub/knopflerfish-osgi-(.*)\.tar\.gz debian uupdate
+
+# Uncomment to find new files on sourceforge, for devscripts >= 2.9
+# http://sf.net/knopflerfish-osgi/knopflerfish-osgi-(.*)\.tar\.gz
+
+# Uncomment to find new files on GooglePages
+# http://example.googlepages.com/foo.html knopflerfish-osgi-(.*)\.tar\.gz




More information about the pkg-java-commits mailing list