[pkg-java] r17203 - in trunk/libcommons-collections3-java/debian: . patches

Emmanuel Bourg ebourg-guest at alioth.debian.org
Mon Sep 9 13:49:01 UTC 2013


Author: ebourg-guest
Date: 2013-09-09 13:49:00 +0000 (Mon, 09 Sep 2013)
New Revision: 17203

Removed:
   trunk/libcommons-collections3-java/debian/patches/disable_links.diff
Modified:
   trunk/libcommons-collections3-java/debian/ant.properties
   trunk/libcommons-collections3-java/debian/changelog
   trunk/libcommons-collections3-java/debian/compat
   trunk/libcommons-collections3-java/debian/control
   trunk/libcommons-collections3-java/debian/patches/OSGI_Manifest.diff
   trunk/libcommons-collections3-java/debian/patches/series
   trunk/libcommons-collections3-java/debian/rules
Log:
Build-Depends on debhelper >= 9
Use canonical URLs for the Vcs-* fields
Updated Standards-Version to 3.9.4 (no changes)
Improved the description of the package
debian/rules: Improved the clean target
The Javadoc is now linked to the default JDK documentation
Added a description to the patch OSGI_Manifest.diff




Modified: trunk/libcommons-collections3-java/debian/ant.properties
===================================================================
--- trunk/libcommons-collections3-java/debian/ant.properties	2013-09-09 08:51:11 UTC (rev 17202)
+++ trunk/libcommons-collections3-java/debian/ant.properties	2013-09-09 13:49:00 UTC (rev 17203)
@@ -1 +1,2 @@
 build.docs=build/docs/api
+javadoc.links=/usr/share/doc/default-jdk-doc/api

Modified: trunk/libcommons-collections3-java/debian/changelog
===================================================================
--- trunk/libcommons-collections3-java/debian/changelog	2013-09-09 08:51:11 UTC (rev 17202)
+++ trunk/libcommons-collections3-java/debian/changelog	2013-09-09 13:49:00 UTC (rev 17203)
@@ -1,3 +1,16 @@
+libcommons-collections3-java (3.2.1-6) unstable; urgency=low
+
+  * debian/control:
+    - Build-Depends on debhelper >= 9
+    - Use canonical URLs for the Vcs-* fields
+    - Updated Standards-Version to 3.9.4 (no changes)
+    - Improved the description of the package
+  * debian/rules: Improved the clean target
+  * The Javadoc is now linked to the default JDK documentation
+  * Added a description to the patch OSGI_Manifest.diff
+
+ -- Emmanuel Bourg <ebourg at apache.org>  Mon, 09 Sep 2013 15:47:25 +0200
+
 libcommons-collections3-java (3.2.1-5) unstable; urgency=low
 
   * Team upload.

Modified: trunk/libcommons-collections3-java/debian/compat
===================================================================
--- trunk/libcommons-collections3-java/debian/compat	2013-09-09 08:51:11 UTC (rev 17202)
+++ trunk/libcommons-collections3-java/debian/compat	2013-09-09 13:49:00 UTC (rev 17203)
@@ -1 +1 @@
-6
+9

Modified: trunk/libcommons-collections3-java/debian/control
===================================================================
--- trunk/libcommons-collections3-java/debian/control	2013-09-09 08:51:11 UTC (rev 17202)
+++ trunk/libcommons-collections3-java/debian/control	2013-09-09 13:49:00 UTC (rev 17203)
@@ -2,24 +2,43 @@
 Section: java
 Priority: optional
 Maintainer: Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.org>
-Uploaders: Varun Hiremath <varun at debian.org>
-Build-Depends: debhelper (>= 6), cdbs, default-jdk
-Build-Depends-Indep: maven-repo-helper, ant, ant-optional, junit
-Standards-Version: 3.8.1
+Uploaders: Varun Hiremath <varun at debian.org>, Emmanuel Bourg <ebourg at apache.org>
+Build-Depends: debhelper (>= 9), cdbs, default-jdk
+Build-Depends-Indep: default-jdk-doc, maven-repo-helper, ant, ant-optional, junit
+Standards-Version: 3.9.4
+Vcs-Svn: svn://anonscm.debian.org/pkg-java/trunk/libcommons-collections3-java
+Vcs-Browser: http://anonscm.debian.org/viewvc/pkg-java/trunk/libcommons-collections3-java
 Homepage: http://commons.apache.org/collections/
-Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/libcommons-collections3-java
-Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/libcommons-collections3-java
 
-
 Package: libcommons-collections3-java
 Architecture: all
 Depends: ${misc:Depends}
 Suggests: libcommons-collections3-java-doc
-Description: A set of abstract data type interfaces and implementations
- The Java Collections Framework provides a set of abstract data
- type interfaces and implementations that offer both a wealth
- of useful functionality, and a solid foundation for extending
- that functionality.
+Description: Apache Commons Collections - Extended Collections API for Java
+ The Java Collections Framework was a major addition in JDK 1.2. It added many
+ powerful data structures that accelerate development of most significant Java
+ applications. Since that time it has become the recognised standard for
+ collection handling in Java.
+ .
+ Commons Collections seek to build upon the JDK classes by providing new
+ interfaces, implementations and utilities. There are many features, including:
+ .
+  * Bag interface for collections that have a number of copies of each object
+  * BidiMap interface for maps that can be looked up from value to key as well
+    and key to value
+  * MapIterator interface to provide simple and quick iteration over maps
+  * Transforming decorators that alter each object as it is added to the
+    collection
+  * Composite collections that make multiple collections look like one
+  * Ordered maps and sets that retain the order elements are added in,
+    including an LRU based map
+  * Reference map that allows keys and/or values to be garbage collected under
+    close control
+  * Many comparator implementations
+  * Many iterator implementations
+  * Adapter classes from array and enumerations to collections
+  * Utilities to test or create typical set-theory properties of collections
+    such as union, intersection, and closure
 
 Package: libcommons-collections3-java-doc
 Architecture: all

Modified: trunk/libcommons-collections3-java/debian/patches/OSGI_Manifest.diff
===================================================================
--- trunk/libcommons-collections3-java/debian/patches/OSGI_Manifest.diff	2013-09-09 08:51:11 UTC (rev 17202)
+++ trunk/libcommons-collections3-java/debian/patches/OSGI_Manifest.diff	2013-09-09 13:49:00 UTC (rev 17203)
@@ -1,3 +1,6 @@
+Description: Adds the OSGi metadata to the manifest
+Author: Ludovic Claude <ludovic.claude at laposte.net>
+Forwarded: not-needed
 --- a/build.xml
 +++ b/build.xml
 @@ -148,6 +148,7 @@

Deleted: trunk/libcommons-collections3-java/debian/patches/disable_links.diff
===================================================================
--- trunk/libcommons-collections3-java/debian/patches/disable_links.diff	2013-09-09 08:51:11 UTC (rev 17202)
+++ trunk/libcommons-collections3-java/debian/patches/disable_links.diff	2013-09-09 13:49:00 UTC (rev 17203)
@@ -1,20 +0,0 @@
-Index: libcommons-collections3-java-3.2/build.xml
-===================================================================
---- libcommons-collections3-java-3.2.orig/build.xml	2008-01-16 11:03:39.000000000 +0530
-+++ libcommons-collections3-java-3.2/build.xml	2008-01-16 11:03:47.000000000 +0530
-@@ -358,7 +358,6 @@
-                  author="true"
-                 version="true"
-                     use="true"
--                   link="${javadoc.links}"
-                overview="${source.java}/org/apache/commons/collections/overview.html"
-                doctitle="${component.title} ${component.version} API;"
-             windowtitle="${component.title} ${component.version} API"
-@@ -466,7 +465,6 @@
-                  access="protected"
-                  author="false"
-                 version="false"
--                   link="${javadoc.links}"
-                overview="${source.test}/org/apache/commons/collections/overview.html"
-                doctitle="${tf.title} ${tf.version} API;"
-             windowtitle="${tf.title} ${tf.version} API"

Modified: trunk/libcommons-collections3-java/debian/patches/series
===================================================================
--- trunk/libcommons-collections3-java/debian/patches/series	2013-09-09 08:51:11 UTC (rev 17202)
+++ trunk/libcommons-collections3-java/debian/patches/series	2013-09-09 13:49:00 UTC (rev 17203)
@@ -1,2 +1 @@
 OSGI_Manifest.diff
-disable_links.diff

Modified: trunk/libcommons-collections3-java/debian/rules
===================================================================
--- trunk/libcommons-collections3-java/debian/rules	2013-09-09 08:51:11 UTC (rev 17202)
+++ trunk/libcommons-collections3-java/debian/rules	2013-09-09 13:49:00 UTC (rev 17203)
@@ -14,6 +14,7 @@
 ANT_OPTS = -Dant.build.javac.source=1.4
 
 clean::
+	mh_clean
 	-rm -f debian/files
 	-rm -f TEST-*
 	-rm -rf debian/tmp




More information about the pkg-java-commits mailing list