[SCM] cronometer packaging branch, master, updated. debian/0.9.9-2-1-g73b0f24

2011-11-01 Thread Ryan Kavanagh
The following commit has been merged in the master branch:
commit 73b0f24459a0213c9bfef51b2c46fec39399f2fe
Author: Ryan Kavanagh ryana...@kubuntu.org
Date:   Tue Nov 1 08:11:53 2011 -0400

Ignore warnings about executable jar while depending on jarwrapper

diff --git a/debian/cronometer.lintian-overrides 
b/debian/cronometer.lintian-overrides
index b7362a9..f490574 100644
--- a/debian/cronometer.lintian-overrides
+++ b/debian/cronometer.lintian-overrides
@@ -1,2 +1,3 @@
 cronometer: codeless-jar usr/share/cronometer/crdb_005.jar
 cronometer: codeless-jar usr/share/cronometer/usda_sr24.jar
+cronometer: executable-not-elf-or-script usr/share/java/cronometer.jar

-- 
cronometer packaging

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits


[pkg-java] r15315 - in trunk/libcommons-discovery-java/debian: . patches

2011-11-01 Thread Damien Raude-Morvan
Author: drazzib
Date: 2011-11-01 14:41:14 + (Tue, 01 Nov 2011)
New Revision: 15315

Added:
   trunk/libcommons-discovery-java/debian/patches/java6_incompatible_types.diff
   
trunk/libcommons-discovery-java/debian/patches/java6_incompatible_types_tests.diff
   trunk/libcommons-discovery-java/debian/patches/series
Removed:
   
trunk/libcommons-discovery-java/debian/patches/0001-set-source-and-target-version-1.5.patch
   trunk/libcommons-discovery-java/debian/patches/series
Modified:
   trunk/libcommons-discovery-java/debian/changelog
   trunk/libcommons-discovery-java/debian/maven.properties
Log:
* Team upload.
* d/patches/java6_incompatible_types{,_tests}.diff: Fix FTBFS on openjdk-6.
  depends on a runtime (Java Policy).
* d/patches/0001-set-source-and-target-version-1.5.patch: Dropped.
* d/maven.properties: Set source and target for javac to 1.5.

Modified: trunk/libcommons-discovery-java/debian/changelog
===
--- trunk/libcommons-discovery-java/debian/changelog2011-11-01 04:14:51 UTC 
(rev 15314)
+++ trunk/libcommons-discovery-java/debian/changelog2011-11-01 14:41:14 UTC 
(rev 15315)
@@ -1,10 +1,13 @@
-libcommons-discovery-java (0.5-1) UNRELEASED; urgency=low
+libcommons-discovery-java (0.5-1) unstable; urgency=low
 
-  * Team upload BUT FTBFS SOURCE
+  * Team upload.
 
   [ Damien Raude-Morvan ]
+  * d/patches/java6_incompatible_types{,_tests}.diff: Fix FTBFS on openjdk-6.
   * d/control: Drop Depends on any JRE as a Java library don't need to
-depends on a runtime (Java Policy)
+depends on a runtime (Java Policy).
+  * d/patches/0001-set-source-and-target-version-1.5.patch: Dropped.
+  * d/maven.properties: Set source and target for javac to 1.5.
 
   [ Torsten Werner ]
   * Update Standards-Version: 3.9.2.
@@ -14,7 +17,7 @@
   * Drop old patch which is not needed anymore.
   * Update debian/watch to create orig tarball from upstreams svn repository.
 
- -- Torsten Werner twer...@debian.org  Mon, 19 Sep 2011 23:25:59 +0200
+ -- Damien Raude-Morvan draz...@debian.org  Tue, 01 Nov 2011 15:14:06 +0100
 
 libcommons-discovery-java (0.4-4) unstable; urgency=low
 

Modified: trunk/libcommons-discovery-java/debian/maven.properties
===
--- trunk/libcommons-discovery-java/debian/maven.properties 2011-11-01 
04:14:51 UTC (rev 15314)
+++ trunk/libcommons-discovery-java/debian/maven.properties 2011-11-01 
14:41:14 UTC (rev 15315)
@@ -2,3 +2,6 @@
 # For example:
 # maven.test.skip=true
 
+maven.compiler.source=1.5
+maven.compiler.target=1.5
+

Deleted: 
trunk/libcommons-discovery-java/debian/patches/0001-set-source-and-target-version-1.5.patch
===
--- 
trunk/libcommons-discovery-java/debian/patches/0001-set-source-and-target-version-1.5.patch
 2011-11-01 04:14:51 UTC (rev 15314)
+++ 
trunk/libcommons-discovery-java/debian/patches/0001-set-source-and-target-version-1.5.patch
 2011-11-01 14:41:14 UTC (rev 15315)
@@ -1,28 +0,0 @@
-From: Torsten Werner twer...@debian.org
-Date: Mon, 19 Sep 2011 23:32:02 +0200
-Subject: set source and target version 1.5
-

- pom.xml |8 
- 1 files changed, 8 insertions(+), 0 deletions(-)
-
-diff --git a/pom.xml b/pom.xml
-index 0d105c7..d5a55a0 100644
 a/pom.xml
-+++ b/pom.xml
-@@ -160,6 +160,14 @@
-   /configuration
- /plugin
- plugin
-+  groupIdorg.apache.maven.plugins/groupId
-+  artifactIdmaven-compiler-plugin/artifactId
-+  configuration
-+source1.5/source
-+target1.5/target
-+  /configuration
-+/plugin
-+plugin
-   artifactIdmaven-assembly-plugin/artifactId
-   executions
- execution
--- 

Added: 
trunk/libcommons-discovery-java/debian/patches/java6_incompatible_types.diff
===
--- 
trunk/libcommons-discovery-java/debian/patches/java6_incompatible_types.diff
(rev 0)
+++ 
trunk/libcommons-discovery-java/debian/patches/java6_incompatible_types.diff
2011-11-01 14:41:14 UTC (rev 15315)
@@ -0,0 +1,79 @@
+Description: OpenJDK fails to compile commons-discovery 0.5
+ This works around the compiler problem by adding the type
+ parameters to the calls instead of letting the compiler infer them.
+Author: Denis Lila dlila at redhat dot com
+Origin: 
https://issues.apache.org/jira/secure/attachment/12481130/ojdk-javac-workaround.patch
+Bug: https://issues.apache.org/jira/browse/DISCOVERY-18
+Bug-RedHat: https://bugzilla.redhat.com/show_bug.cgi?id=706066
+Applied-Upstream: 0.6
+Index: b/src/java/org/apache/commons/discovery/tools/DiscoverClass.java
+===
+--- a/src/java/org/apache/commons/discovery/tools/DiscoverClass.java
 

Processing of libcommons-discovery-java_0.5-1_amd64.changes

2011-11-01 Thread Debian FTP Masters
libcommons-discovery-java_0.5-1_amd64.changes uploaded successfully to localhost
along with the files:
  libcommons-discovery-java_0.5-1.dsc
  libcommons-discovery-java_0.5.orig.tar.gz
  libcommons-discovery-java_0.5-1.debian.tar.gz
  libcommons-discovery-java_0.5-1_all.deb
  libcommons-discovery-java-doc_0.5-1_all.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)

__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.


[pkg-java] r15316 - in tags/libcommons-discovery-java: . 0.5-1/debian 0.5-1/debian/patches

2011-11-01 Thread Damien Raude-Morvan
Author: drazzib
Date: 2011-11-01 14:42:44 + (Tue, 01 Nov 2011)
New Revision: 15316

Added:
   tags/libcommons-discovery-java/0.5-1/
   tags/libcommons-discovery-java/0.5-1/debian/changelog
   tags/libcommons-discovery-java/0.5-1/debian/maven.properties
   
tags/libcommons-discovery-java/0.5-1/debian/patches/java6_incompatible_types.diff
   
tags/libcommons-discovery-java/0.5-1/debian/patches/java6_incompatible_types_tests.diff
   tags/libcommons-discovery-java/0.5-1/debian/patches/series
Removed:
   tags/libcommons-discovery-java/0.5-1/debian/changelog
   tags/libcommons-discovery-java/0.5-1/debian/maven.properties
   
tags/libcommons-discovery-java/0.5-1/debian/patches/0001-set-source-and-target-version-1.5.patch
   tags/libcommons-discovery-java/0.5-1/debian/patches/series
Log:
[svn-buildpackage] Tagging libcommons-discovery-java 0.5-1

Deleted: tags/libcommons-discovery-java/0.5-1/debian/changelog
===
--- trunk/libcommons-discovery-java/debian/changelog2011-11-01 04:14:51 UTC 
(rev 15314)
+++ tags/libcommons-discovery-java/0.5-1/debian/changelog   2011-11-01 
14:42:44 UTC (rev 15316)
@@ -1,160 +0,0 @@
-libcommons-discovery-java (0.5-1) UNRELEASED; urgency=low
-
-  * Team upload BUT FTBFS SOURCE
-
-  [ Damien Raude-Morvan ]
-  * d/control: Drop Depends on any JRE as a Java library don't need to
-depends on a runtime (Java Policy)
-
-  [ Torsten Werner ]
-  * Update Standards-Version: 3.9.2.
-  * New upstream version.
-  * Update debian/copyright.
-  * Use Maven to build the package.
-  * Drop old patch which is not needed anymore.
-  * Update debian/watch to create orig tarball from upstreams svn repository.
-
- -- Torsten Werner twer...@debian.org  Mon, 19 Sep 2011 23:25:59 +0200
-
-libcommons-discovery-java (0.4-4) unstable; urgency=low
-
-  [ Emmanuel Bourg ]
-  * Update of the URLs
-  * Rename Jakarta Commons to Apache Commons
-
-  [ Damien Raude-Morvan ]
-  * Add myself to Uploaders
-  * Remove Arnaud from Uploaders (retired from Debian)
-  * Add Maven support:
-- debian/control: Build-Depends-Indep on maven-repo-helper
-- debian/rules: mh_installpoms and mh_installjar
-- debian/pom.xml: POM for commons-dicovery
-  * Use 3.0 (quilt) source format:
-- debian/rules: Remove simple-patchsys.mk
-- Refresh all debian/patches
-  * Updated Standards-Version 3.8.4 (no changes needed)
-  * debian/ant.properties: Compile for Java 1.3
-  * Install Javadoc HTML to /usr/share/doc/libcommons-discovery-java/api/
-
- -- Damien Raude-Morvan draz...@debian.org  Thu, 25 Mar 2010 22:45:40 +0100
-
-libcommons-discovery-java (0.4-3) unstable; urgency=low
-
-  * Update the license to Apache License 2.0 (Closes: #532890)
-
- -- Varun Hiremath va...@debian.org  Tue, 16 Jun 2009 17:38:09 -0400
-
-libcommons-discovery-java (0.4-2) unstable; urgency=low
-
-  [ Matthias Klose ]
-  * (Build-)depend on default-jre/-jdk.
-
-  [ Varun Hiremath ]
-  * Split out api docs into a separate -doc package (Closes: #506359)
-
- -- Varun Hiremath va...@debian.org  Sat, 06 Dec 2008 20:58:55 -0500
-
-libcommons-discovery-java (0.4-1) unstable; urgency=low
-
-  [ Kumar Appaiah ]
-  * debian/control:
-+ Add XS-Vcs-{Svn,Browser} to debian/control
-+ Add Homepage field.
-  * Update watch file.
-
-  [ Varun Hiremath ]
-  * New upstream release
-  * debian/control:
-+ Add myself and Kumar Appaiah to Uploaders.
-+ move cdbs and debhelper to Build-Depends.
-+ modify Description.
-  * debian/compat: switch to 5
-  * remove links file from debian/
-  * debian/rules:
-+ Use DEB_UPSTREAM_VERSION to install jar
-+ Create a versioned symbolic link to the jar.
-+ implement get-orig-source
-  * debian/patches:
-+ remove 02_jikes_target_1_3.patch, builds without setting target to 1.3
-+ remove 03_gjdoc_crash_fix.patch, gjdoc bug has been fixed and no longer 
needed.
-  * Add debian/orig-tar.sh to move tarball to deb-layout's tarballs dir.
-  * Update debian/watch to call debian/orig-tar.sh
-  * debian/docs: remove adc-guidelines.html and best-practices.html as
-upstream provides only Maven xdocs XMLs.
-
- -- Varun Hiremath varunhirem...@gmail.com  Thu, 20 Sep 2007 23:27:45 +0530
-
-libcommons-discovery-java (0.2-10) unstable; urgency=low
-
-  * Use java-gcj-compat instead of kaffe.
-  * Moved Build-Depends-Indep to Build-Depends.
-  * Updated Standards-Version.
-  * Removed Wolfgang from Uploaders and added myself.
-  * Fixed Homepage: tag in package description.
-
- -- Michael Koch konque...@gmx.de  Sun, 17 Jun 2007 13:56:27 -0100
-
-libcommons-discovery-java (0.2-9) unstable; urgency=low
-
-  * kaffe compiler transition 
-
- -- Wolfgang Baer wb...@gmx.de  Sun, 15 Jan 2006 17:00:07 +0100
-
-libcommons-discovery-java (0.2-8) unstable; urgency=low
-
-  * Additional ant-optional dependency due to ant reorganization
-and enabled unit tests during build time
-  * Added java1-runtime dependency to allow all free 

libcommons-discovery-java_0.5-1_amd64.changes ACCEPTED into unstable

2011-11-01 Thread Debian FTP Masters



Accepted:
libcommons-discovery-java-doc_0.5-1_all.deb
  to 
main/libc/libcommons-discovery-java/libcommons-discovery-java-doc_0.5-1_all.deb
libcommons-discovery-java_0.5-1.debian.tar.gz
  to 
main/libc/libcommons-discovery-java/libcommons-discovery-java_0.5-1.debian.tar.gz
libcommons-discovery-java_0.5-1.dsc
  to main/libc/libcommons-discovery-java/libcommons-discovery-java_0.5-1.dsc
libcommons-discovery-java_0.5-1_all.deb
  to main/libc/libcommons-discovery-java/libcommons-discovery-java_0.5-1_all.deb
libcommons-discovery-java_0.5.orig.tar.gz
  to 
main/libc/libcommons-discovery-java/libcommons-discovery-java_0.5.orig.tar.gz


Override entries for your package:
libcommons-discovery-java-doc_0.5-1_all.deb - optional doc
libcommons-discovery-java_0.5-1.dsc - source java
libcommons-discovery-java_0.5-1_all.deb - optional java

Announcing to debian-devel-chan...@lists.debian.org


Thank you for your contribution to Debian.

__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.


Processing of libbase_1.1.6-2_amd64.changes

2011-11-01 Thread Debian FTP Masters
libbase_1.1.6-2_amd64.changes uploaded successfully to localhost
along with the files:
  libbase_1.1.6-2.dsc
  libbase_1.1.6-2.diff.gz
  libbase-java_1.1.6-2_all.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)

__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.


libbase_1.1.6-2_amd64.changes ACCEPTED into unstable

2011-11-01 Thread Debian FTP Masters



Accepted:
libbase-java_1.1.6-2_all.deb
  to main/libb/libbase/libbase-java_1.1.6-2_all.deb
libbase_1.1.6-2.diff.gz
  to main/libb/libbase/libbase_1.1.6-2.diff.gz
libbase_1.1.6-2.dsc
  to main/libb/libbase/libbase_1.1.6-2.dsc


Override entries for your package:
libbase-java_1.1.6-2_all.deb - optional java
libbase_1.1.6-2.dsc - source java

Announcing to debian-devel-chan...@lists.debian.org


Thank you for your contribution to Debian.

__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.


Processing of libloader_1.1.6.dfsg-2_amd64.changes

2011-11-01 Thread Debian FTP Masters
libloader_1.1.6.dfsg-2_amd64.changes uploaded successfully to localhost
along with the files:
  libloader_1.1.6.dfsg-2.dsc
  libloader_1.1.6.dfsg-2.debian.tar.gz
  libloader-java_1.1.6.dfsg-2_all.deb
  libloader-java-doc_1.1.6.dfsg-2_all.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)

__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.


Processing of libserializer_1.1.6-4_amd64.changes

2011-11-01 Thread Debian FTP Masters
libserializer_1.1.6-4_amd64.changes uploaded successfully to localhost
along with the files:
  libserializer_1.1.6-4.dsc
  libserializer_1.1.6-4.diff.gz
  libserializer-java_1.1.6-4_all.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)

__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.


Processing of libformula_1.1.7.dfsg-2_amd64.changes

2011-11-01 Thread Debian FTP Masters
libformula_1.1.7.dfsg-2_amd64.changes uploaded successfully to localhost
along with the files:
  libformula_1.1.7.dfsg-2.dsc
  libformula_1.1.7.dfsg-2.diff.gz
  libformula-java_1.1.7.dfsg-2_all.deb
  libformula-java-doc_1.1.7.dfsg-2_all.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)

__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.


Processing of librepository_1.1.6-2_amd64.changes

2011-11-01 Thread Debian FTP Masters
librepository_1.1.6-2_amd64.changes uploaded successfully to localhost
along with the files:
  librepository_1.1.6-2.dsc
  librepository_1.1.6-2.diff.gz
  librepository-java_1.1.6-2_all.deb
  librepository-java-doc_1.1.6-2_all.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)

__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.


Processing of libxml-java_1.1.6.dfsg-2_amd64.changes

2011-11-01 Thread Debian FTP Masters
libxml-java_1.1.6.dfsg-2_amd64.changes uploaded successfully to localhost
along with the files:
  libxml-java_1.1.6.dfsg-2.dsc
  libxml-java_1.1.6.dfsg-2.diff.gz
  libxml-java_1.1.6.dfsg-2_all.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)

__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.


Processing of flute_1.1.6-2_amd64.changes

2011-11-01 Thread Debian FTP Masters
flute_1.1.6-2_amd64.changes uploaded successfully to localhost
along with the files:
  flute_1.1.6-2.dsc
  flute_1.1.6-2.debian.tar.gz
  libflute-java_1.1.6-2_all.deb
  libflute-java-doc_1.1.6-2_all.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)

__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.


Processing of libpixie-java_1.1.6-2_amd64.changes

2011-11-01 Thread Debian FTP Masters
libpixie-java_1.1.6-2_amd64.changes uploaded successfully to localhost
along with the files:
  libpixie-java_1.1.6-2.dsc
  libpixie-java_1.1.6-2.diff.gz
  libpixie-java_1.1.6-2_all.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)

__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.


Processing of libfonts-java_1.1.6.dfsg-2_amd64.changes

2011-11-01 Thread Debian FTP Masters
libfonts-java_1.1.6.dfsg-2_amd64.changes uploaded successfully to localhost
along with the files:
  libfonts-java_1.1.6.dfsg-2.dsc
  libfonts-java_1.1.6.dfsg-2.diff.gz
  libfonts-java_1.1.6.dfsg-2_all.deb
  libfonts-java-doc_1.1.6.dfsg-2_all.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)

__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.


flute_1.1.6-2_amd64.changes ACCEPTED into unstable

2011-11-01 Thread Debian FTP Masters



Accepted:
flute_1.1.6-2.debian.tar.gz
  to main/f/flute/flute_1.1.6-2.debian.tar.gz
flute_1.1.6-2.dsc
  to main/f/flute/flute_1.1.6-2.dsc
libflute-java-doc_1.1.6-2_all.deb
  to main/f/flute/libflute-java-doc_1.1.6-2_all.deb
libflute-java_1.1.6-2_all.deb
  to main/f/flute/libflute-java_1.1.6-2_all.deb


Override entries for your package:
flute_1.1.6-2.dsc - source java
libflute-java-doc_1.1.6-2_all.deb - optional doc
libflute-java_1.1.6-2_all.deb - optional java

Announcing to debian-devel-chan...@lists.debian.org


Thank you for your contribution to Debian.

__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.


libfonts-java_1.1.6.dfsg-2_amd64.changes ACCEPTED into unstable

2011-11-01 Thread Debian FTP Masters



Accepted:
libfonts-java-doc_1.1.6.dfsg-2_all.deb
  to main/libf/libfonts-java/libfonts-java-doc_1.1.6.dfsg-2_all.deb
libfonts-java_1.1.6.dfsg-2.diff.gz
  to main/libf/libfonts-java/libfonts-java_1.1.6.dfsg-2.diff.gz
libfonts-java_1.1.6.dfsg-2.dsc
  to main/libf/libfonts-java/libfonts-java_1.1.6.dfsg-2.dsc
libfonts-java_1.1.6.dfsg-2_all.deb
  to main/libf/libfonts-java/libfonts-java_1.1.6.dfsg-2_all.deb


Override entries for your package:
libfonts-java-doc_1.1.6.dfsg-2_all.deb - optional doc
libfonts-java_1.1.6.dfsg-2.dsc - source java
libfonts-java_1.1.6.dfsg-2_all.deb - optional java

Announcing to debian-devel-chan...@lists.debian.org


Thank you for your contribution to Debian.

__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.


libformula_1.1.7.dfsg-2_amd64.changes ACCEPTED into unstable

2011-11-01 Thread Debian FTP Masters



Accepted:
libformula-java-doc_1.1.7.dfsg-2_all.deb
  to main/libf/libformula/libformula-java-doc_1.1.7.dfsg-2_all.deb
libformula-java_1.1.7.dfsg-2_all.deb
  to main/libf/libformula/libformula-java_1.1.7.dfsg-2_all.deb
libformula_1.1.7.dfsg-2.diff.gz
  to main/libf/libformula/libformula_1.1.7.dfsg-2.diff.gz
libformula_1.1.7.dfsg-2.dsc
  to main/libf/libformula/libformula_1.1.7.dfsg-2.dsc


Override entries for your package:
libformula-java-doc_1.1.7.dfsg-2_all.deb - optional doc
libformula-java_1.1.7.dfsg-2_all.deb - optional java
libformula_1.1.7.dfsg-2.dsc - source libs

Announcing to debian-devel-chan...@lists.debian.org


Thank you for your contribution to Debian.

__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.


libloader_1.1.6.dfsg-2_amd64.changes ACCEPTED into unstable

2011-11-01 Thread Debian FTP Masters



Accepted:
libloader-java-doc_1.1.6.dfsg-2_all.deb
  to main/libl/libloader/libloader-java-doc_1.1.6.dfsg-2_all.deb
libloader-java_1.1.6.dfsg-2_all.deb
  to main/libl/libloader/libloader-java_1.1.6.dfsg-2_all.deb
libloader_1.1.6.dfsg-2.debian.tar.gz
  to main/libl/libloader/libloader_1.1.6.dfsg-2.debian.tar.gz
libloader_1.1.6.dfsg-2.dsc
  to main/libl/libloader/libloader_1.1.6.dfsg-2.dsc


Override entries for your package:
libloader-java-doc_1.1.6.dfsg-2_all.deb - optional doc
libloader-java_1.1.6.dfsg-2_all.deb - optional java
libloader_1.1.6.dfsg-2.dsc - source libs

Announcing to debian-devel-chan...@lists.debian.org


Thank you for your contribution to Debian.

__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.


libpixie-java_1.1.6-2_amd64.changes ACCEPTED into unstable

2011-11-01 Thread Debian FTP Masters



Accepted:
libpixie-java_1.1.6-2.diff.gz
  to main/libp/libpixie-java/libpixie-java_1.1.6-2.diff.gz
libpixie-java_1.1.6-2.dsc
  to main/libp/libpixie-java/libpixie-java_1.1.6-2.dsc
libpixie-java_1.1.6-2_all.deb
  to main/libp/libpixie-java/libpixie-java_1.1.6-2_all.deb


Override entries for your package:
libpixie-java_1.1.6-2.dsc - source java
libpixie-java_1.1.6-2_all.deb - optional java

Announcing to debian-devel-chan...@lists.debian.org


Thank you for your contribution to Debian.

__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.


librepository_1.1.6-2_amd64.changes ACCEPTED into unstable

2011-11-01 Thread Debian FTP Masters



Accepted:
librepository-java-doc_1.1.6-2_all.deb
  to main/libr/librepository/librepository-java-doc_1.1.6-2_all.deb
librepository-java_1.1.6-2_all.deb
  to main/libr/librepository/librepository-java_1.1.6-2_all.deb
librepository_1.1.6-2.diff.gz
  to main/libr/librepository/librepository_1.1.6-2.diff.gz
librepository_1.1.6-2.dsc
  to main/libr/librepository/librepository_1.1.6-2.dsc


Override entries for your package:
librepository-java-doc_1.1.6-2_all.deb - optional doc
librepository-java_1.1.6-2_all.deb - optional java
librepository_1.1.6-2.dsc - source libs

Announcing to debian-devel-chan...@lists.debian.org


Thank you for your contribution to Debian.

__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.


libserializer_1.1.6-4_amd64.changes ACCEPTED into unstable

2011-11-01 Thread Debian FTP Masters



Accepted:
libserializer-java_1.1.6-4_all.deb
  to main/libs/libserializer/libserializer-java_1.1.6-4_all.deb
libserializer_1.1.6-4.diff.gz
  to main/libs/libserializer/libserializer_1.1.6-4.diff.gz
libserializer_1.1.6-4.dsc
  to main/libs/libserializer/libserializer_1.1.6-4.dsc


Override entries for your package:
libserializer-java_1.1.6-4_all.deb - optional java
libserializer_1.1.6-4.dsc - source java

Announcing to debian-devel-chan...@lists.debian.org


Thank you for your contribution to Debian.

__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.


libxml-java_1.1.6.dfsg-2_amd64.changes ACCEPTED into unstable

2011-11-01 Thread Debian FTP Masters



Accepted:
libxml-java_1.1.6.dfsg-2.diff.gz
  to main/libx/libxml-java/libxml-java_1.1.6.dfsg-2.diff.gz
libxml-java_1.1.6.dfsg-2.dsc
  to main/libx/libxml-java/libxml-java_1.1.6.dfsg-2.dsc
libxml-java_1.1.6.dfsg-2_all.deb
  to main/libx/libxml-java/libxml-java_1.1.6.dfsg-2_all.deb


Override entries for your package:
libxml-java_1.1.6.dfsg-2.dsc - source java
libxml-java_1.1.6.dfsg-2_all.deb - optional java

Announcing to debian-devel-chan...@lists.debian.org


Thank you for your contribution to Debian.

__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.


Bug#647009: Known upstream bug

2011-11-01 Thread Jakub Adam
Hi Thomas,

thanks for your interest in eclipse-egit. Problem you described is a known 
upstream bug [1]. Fix has not been released yet, I will package a new version 
of egit ASAP when it is out.

BR

Jakub

[1] https://bugs.eclipse.org/bugs/show_bug.cgi?id=349752
__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.

libjswingreader-java 0.3-1 MIGRATED to testing

2011-11-01 Thread Debian testing watch
FYI: The status of the libjswingreader-java source package
in Debian's testing distribution has changed.

  Previous version: (not in testing)
  Current version:  0.3-1

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See http://release.debian.org/testing-watch/ for more information.

__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.


[SCM] Packaging for rxtx branch, master, updated. debian/2.2pre2-9-4-g17657b9

2011-11-01 Thread Scott Howard
The following commit has been merged in the master branch:
commit 17657b9cf9f85423fdaa501e5d78ca444c02aec2
Author: Scott Howard show...@debian.org
Date:   Mon Oct 31 03:06:00 2011 -0400

building for release

diff --git a/debian/changelog b/debian/changelog
index 100b8e9..20dd558 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-rxtx (2.2pre2-10) UNRELEASED; urgency=low
+rxtx (2.2pre2-10) unstable; urgency=low
 
   * debian/patches/multiple_property_dirs.patch
 - handles the case where the java.ext.dirs system property contains
@@ -6,7 +6,7 @@ rxtx (2.2pre2-10) UNRELEASED; urgency=low
   * Added librxtx-java-dbg package and added uninstall target
 (Closes: #646356)
 
- -- Scott Howard show...@debian.org  Mon, 31 Oct 2011 02:00:03 -0400
+ -- Scott Howard show...@debian.org  Mon, 31 Oct 2011 03:04:52 -0400
 
 rxtx (2.2pre2-9) unstable; urgency=low
 

-- 
Packaging for rxtx

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits


[SCM] Packaging for rxtx branch, master, updated. debian/2.2pre2-9-4-g17657b9

2011-11-01 Thread Scott Howard
The following commit has been merged in the master branch:
commit d2efc459c4d3ce1c46474d7f4361299a81f0275c
Author: Scott Howard show...@debian.org
Date:   Mon Oct 31 03:04:23 2011 -0400

Added librxtx-java-dbg package and added uninstall target (Closes: #646356)

diff --git a/debian/changelog b/debian/changelog
index 1350400..100b8e9 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -3,9 +3,10 @@ rxtx (2.2pre2-10) UNRELEASED; urgency=low
   * debian/patches/multiple_property_dirs.patch
 - handles the case where the java.ext.dirs system property contains
   more than one directory. (Closes: #646069) Thanks Philip Ashmore.
-  * Added librxtx-java-dbg package
+  * Added librxtx-java-dbg package and added uninstall target
+(Closes: #646356)
 
- -- Scott Howard show...@debian.org  Sun, 30 Oct 2011 09:05:27 -0400
+ -- Scott Howard show...@debian.org  Mon, 31 Oct 2011 02:00:03 -0400
 
 rxtx (2.2pre2-9) unstable; urgency=low
 
diff --git a/debian/control b/debian/control
index 2ca9d21..513efdd 100644
--- a/debian/control
+++ b/debian/control
@@ -11,7 +11,6 @@ Homepage: http://www.rxtx.org
 Vcs-Git: git://git.debian.org/pkg-java/rxtx.git
 Vcs-Browser: http://git.debian.org/?p=pkg-java/rxtx.git
 
-
 Package: librxtx-java
 Architecture: any
 Depends: ${shlibs:Depends}, ${misc:Depends}, ${java:Depends}
@@ -19,18 +18,18 @@ Recommends: ${java:Recommends}
 Provides: lib-rxtx-java
 Conflicts: lib-rxtx-java
 Description: Full Java CommAPI implementation
- RXTX is a full implementation of the Java CommAPI from Sun. It contains
- native libraries providing serial and parallel communication for the
- Java Development Toolkit.
+ RXTX is a full implementation of the Java CommAPI from Sun. It
+ contains  native libraries providing serial and parallel
+ communication for the Java Development Toolkit.
 
 Package: librxtx-java-dbg
 Architecture: any
 Section: debug
-Priority:extra
+Priority: extra
 Depends: ${shlibs:Depends}, ${misc:Depends}, librxtx-java (= ${binary:Version})
 Description: Full Java CommAPI implementation, Debugging Symbols
- RXTX is a full implementation of the Java CommAPI from Sun. It contains
- native libraries providing serial and parallel communication for the
- Java Development Toolkit.
+ RXTX is a full implementation of the Java CommAPI from Sun. It
+ contains  native libraries providing serial and parallel
+ communication for the Java Development Toolkit.
  .
  This package contains the debugging symbols for librxtx-java.
diff --git a/debian/librxtx-java.dirs b/debian/librxtx-java.dirs
index d462b3d..956d28f 100644
--- a/debian/librxtx-java.dirs
+++ b/debian/librxtx-java.dirs
@@ -1 +1,2 @@
 usr/lib/jni
+usr/share/java
diff --git a/debian/patches/original_debian_changes.patch 
b/debian/patches/original_debian_changes.patch
index dd5fba5..32e9913 100644
--- a/debian/patches/original_debian_changes.patch
+++ b/debian/patches/original_debian_changes.patch
@@ -3,8 +3,8 @@ Origin: Mario Joussen jous...@debian.org, edited by Scott 
Howard showard314@g
 
 Index: rxtx/src/RS485Imp.c
 ===
 rxtx.orig/src/RS485Imp.c   2011-02-06 12:48:09.014571293 -0500
-+++ rxtx/src/RS485Imp.c2011-02-06 12:48:09.074567537 -0500
+--- rxtx.orig/src/RS485Imp.c   2011-10-31 02:58:18.280985274 -0400
 rxtx/src/RS485Imp.c2011-10-31 02:58:21.300985346 -0400
 @@ -127,6 +127,7 @@
  #endif /* !__FreeBSD_kernel__ */
  #if defined(__linux__) 
@@ -23,9 +23,9 @@ Index: rxtx/src/RS485Imp.c
  }
 Index: rxtx/src/RawImp.c
 ===
 rxtx.orig/src/RawImp.c 2011-02-06 12:48:09.034570041 -0500
-+++ rxtx/src/RawImp.c  2011-02-06 12:48:09.074567537 -0500
-@@ -280,6 +280,7 @@
+--- rxtx.orig/src/RawImp.c 2011-10-31 02:58:18.280985274 -0400
 rxtx/src/RawImp.c  2011-10-31 02:58:21.300985346 -0400
+@@ -272,6 +272,7 @@
  #endif /* !__FreeBSD_kernel__ */
  #if defined(__linux__) 
/* Lets let people who upgraded kernels know they may have problems */
@@ -33,7 +33,7 @@ Index: rxtx/src/RawImp.c
if (uname (name) == -1)
{
fprintf(stderr,RXTX WARNING:  cannot get system name\n);
-@@ -290,6 +291,7 @@
+@@ -282,6 +283,7 @@
fprintf(stderr, \n\n\nRXTX WARNING:  This library was compiled 
to run with OS release %s and you are currently running OS release %s.  In some 
cases this can be a problem.  Try recompiling RXTX if you notice strange 
behavior.  If you just compiled RXTX make sure /usr/include/linux is a symbolic 
link to the include files that came with the kernel source and not an older 
copy.\n\n\npress enter to continue\n,UTS_RELEASE,name.release);
getchar();
}
@@ -43,8 +43,8 @@ Index: rxtx/src/RawImp.c
  }
 Index: rxtx/src/SerialImp.c
 ===
 rxtx.orig/src/SerialImp.c  2011-02-06 12:48:09.014571293 -0500
-+++ rxtx/src/SerialImp.c   

[SCM] Packaging for rxtx annotated tag, debian/2.2pre2-10, created. debian/2.2pre2-10

2011-11-01 Thread Scott Howard
The annotated tag, debian/2.2pre2-10 has been created
at  1bafa5378310f45154ea5da8220709ba7ea75c2a (tag)
   tagging  17657b9cf9f85423fdaa501e5d78ca444c02aec2 (commit)
  replaces  debian/2.2pre2-9
 tagged by  Scott Howard
on  Mon Oct 31 03:09:09 2011 -0400

- Shortlog 
Debian release 2.2pre2-10

Scott Howard (4):
  handles the case where the java.ext.dirs system property contains more 
than one directory. (Closes: #646069) Thanks Philip Ashmore.
  Added librxtx-java-dbg package
  Added librxtx-java-dbg package and added uninstall target (Closes: 
#646356)
  building for release

---

-- 
Packaging for rxtx

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits


[pkg-java] r15317 - trunk/axis/debian

2011-11-01 Thread Jakub Adam
Author: xhaakon-guest
Date: 2011-11-01 19:40:38 + (Tue, 01 Nov 2011)
New Revision: 15317

Modified:
   trunk/axis/debian/changelog
   trunk/axis/debian/control
   trunk/axis/debian/rules
Log:
Add missing dependency on libcommons-httpclient-java

org.apache.axis.components.net.CommonsHTTPClientProperties and other classes 
used by eclipse-mylyn are not built otherwise.

Modified: trunk/axis/debian/changelog
===
--- trunk/axis/debian/changelog 2011-11-01 14:42:44 UTC (rev 15316)
+++ trunk/axis/debian/changelog 2011-11-01 19:40:38 UTC (rev 15317)
@@ -1,3 +1,9 @@
+axis (1.4-16) UNRELEASED; urgency=low
+
+  * Add missing dependency on libcommons-httpclient-java
+
+ -- Jakub Adam jakub.a...@ktknet.cz  Mon, 31 Oct 2011 11:07:24 +0100
+
 axis (1.4-15) unstable; urgency=low
 
   * Add OSGi metadata to jar manifests

Modified: trunk/axis/debian/control
===
--- trunk/axis/debian/control   2011-11-01 14:42:44 UTC (rev 15316)
+++ trunk/axis/debian/control   2011-11-01 19:40:38 UTC (rev 15317)
@@ -6,7 +6,8 @@
  Torsten Werner twer...@debian.org,
  Damien Raude-Morvan draz...@debian.org,
  Jakub Adam jakub.a...@ktknet.cz
-Build-Depends: debhelper (= 7), cdbs, ant-optional, default-jdk, 
libwsdl4j-java, libcommons-logging-java,
+Build-Depends: debhelper (= 7), cdbs, ant-optional, default-jdk, 
libwsdl4j-java,
+ libcommons-logging-java, libcommons-httpclient-java,
  libcommons-discovery-java, libgnujaf-java, libgnumail-java, 
libservlet2.5-java,
  maven-repo-helper
 Standards-Version: 3.9.2
@@ -18,7 +19,9 @@
 Architecture: all
 Recommends: ant
 Suggests: libaxis-java-doc
-Depends: libwsdl4j-java, libcommons-logging-java, libcommons-discovery-java, 
libgnujaf-java, libgnumail-java, libservlet2.5-java, ${misc:Depends}
+Depends: libwsdl4j-java, libcommons-logging-java, libcommons-discovery-java,
+ libcommons-httpclient-java, libgnujaf-java, libgnumail-java, 
libservlet2.5-java,
+ ${misc:Depends}
 Description: SOAP implementation in Java
  Apache AXIS is an implementation of the SOAP (Simple Object Access Protocol)
  submission to W3C.

Modified: trunk/axis/debian/rules
===
--- trunk/axis/debian/rules 2011-11-01 14:42:44 UTC (rev 15316)
+++ trunk/axis/debian/rules 2011-11-01 19:40:38 UTC (rev 15317)
@@ -4,7 +4,7 @@
 include /usr/share/cdbs/1/class/ant.mk
 
 JAVA_HOME := /usr/lib/jvm/default-java
-DEB_JARS := $(ANT_HOME)/lib/ant-nodeps.jar wsdl4j commons-logging 
commons-discovery activation gnumail servlet-api-2.5 xmlParserAPIs xercesImpl
+DEB_JARS := $(ANT_HOME)/lib/ant-nodeps.jar wsdl4j commons-logging 
commons-discovery commons-httpclient activation gnumail servlet-api-2.5 
xmlParserAPIs xercesImpl
 
 DEB_ANT_BUILD_TARGET := compile javadocs
 


___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits


[pkg-java] r15318 - in trunk/axis/debian: . patches

2011-11-01 Thread Jakub Adam
Author: xhaakon-guest
Date: 2011-11-01 19:58:15 + (Tue, 01 Nov 2011)
New Revision: 15318

Modified:
   trunk/axis/debian/changelog
   trunk/axis/debian/patches/add-osgi-metadata.patch
Log:
Update Export-Package OSGi attribute in manifest

Modified: trunk/axis/debian/changelog
===
--- trunk/axis/debian/changelog 2011-11-01 19:40:38 UTC (rev 15317)
+++ trunk/axis/debian/changelog 2011-11-01 19:58:15 UTC (rev 15318)
@@ -1,6 +1,7 @@
 axis (1.4-16) UNRELEASED; urgency=low
 
   * Add missing dependency on libcommons-httpclient-java
+  * Update Export-Package OSGi attribute in manifest
 
  -- Jakub Adam jakub.a...@ktknet.cz  Mon, 31 Oct 2011 11:07:24 +0100
 

Modified: trunk/axis/debian/patches/add-osgi-metadata.patch
===
--- trunk/axis/debian/patches/add-osgi-metadata.patch   2011-11-01 19:40:38 UTC 
(rev 15317)
+++ trunk/axis/debian/patches/add-osgi-metadata.patch   2011-11-01 19:58:15 UTC 
(rev 15318)
@@ -7,7 +7,7 @@
  1 files changed, 18 insertions(+), 0 deletions(-)
 
 diff --git a/build.xml b/build.xml
-index 738d245..a6e2a32 100644
+index 738d245..5284aee 100644
 --- a/build.xml
 +++ b/build.xml
 @@ -195,6 +195,12 @@ Copyright:
@@ -15,11 +15,11 @@
include name=simplelog.properties/
manifest
 +attribute name=Bundle-ManifestVersion value=2/
-+  attribute name=Bundle-Name value=Apache Axis/
-+  attribute name=Bundle-Vendor value=Apache Software 
Foundation/
++attribute name=Bundle-Name value=Apache Axis/
++attribute name=Bundle-Vendor value=Apache Software Foundation/
 +attribute name=Bundle-SymbolicName value=org.apache.axis/
 +attribute name=Bundle-Version value=${axis.version}/
-+attribute name=Export-Package 
value=org.apache.axis,org.apache.axis.attachments,org.apache.axis.client,org.apache.axis.client.async,org.apache.axis.collections,org.apache.axis.components,org.apache.axis.components.compiler,org.apache.axis.components.encoding,org.apache.axis.image,org.apache.axis.components.jms,org.apache.axis.components.logger,org.apache.axis.components.net,org.apache.axis.components.script,org.apache.axis.components.threadpool,org.apache.axis.components.uuid,org.apache.axis.configuration,org.apache.axis.constants,org.apache.axis.deployment.wsdd,org.apache.axis.deployment.wsdd.providers,org.apache.axis.description,org.apache.axis.encoding,org.apache.axis.encoding.ser,org.apache.axis.encoding.ser.castor,org.apache.axis.enum,org.apache.axis.handlers,org.apache.axis.handlers.http,org.apache.axis.handlers.soap,org.apache.axis.holders,org.apache.axis.i18n,org.apache.axis.management,org.apache.axis.management.jmx,org.apache.axis.message,org.apache.axis.monitor,org.apache.axis.providers,org.apache.axis.providers.java,org.apache.axis.schema,org.apache.axis.security,org.apache.axis.security.servlet,org.apache.axis.security.simple,org.apache.axis.server,org.apache.axis.session,org.apache.axis.soap,org.apache.axis.strategies,org.apache.axis.transport.http,org.apache.axis.transport.java,org.apache.axis.transport.jms,org.apache.axis.transport.local,org.apache.axis.transport.mail,org.apache.axis.types,org.apache.axis.utils,org.apache.axis.utils.bytecode,org.apache.axis.utils.cache,org.apache.axis.wsdl,org.apache.axis.wsdl.fromJava,org.apache.axis.wsdl.gen,org.apache.axis.wsdl.symbolTable,org.apache.axis.wsdl.toJava/
++attribute name=Export-Package 

[pkg-java] r15319 - in trunk/cglib/debian: . patches

2011-11-01 Thread Damien Raude-Morvan
Author: drazzib
Date: 2011-11-01 21:09:35 + (Tue, 01 Nov 2011)
New Revision: 15319

Added:
   trunk/cglib/debian/patches/04_skiptests_ParallelSorter.diff
Modified:
   trunk/cglib/debian/changelog
   trunk/cglib/debian/control
   trunk/cglib/debian/copyright
   trunk/cglib/debian/patches/03_jarjar.diff
   trunk/cglib/debian/patches/series
   trunk/cglib/debian/pom.xml
   trunk/cglib/debian/rules
Log:
* New upstream release.
* Bump Standards-Version to 3.9.2: no changes needed.
* d/copyright: Use DEP-5 format.
* d/rules: Enable unit testing.
* d/patches/04_skiptests_ParallelSorter.diff: Skip some failing test.

Modified: trunk/cglib/debian/changelog
===
--- trunk/cglib/debian/changelog2011-11-01 19:58:15 UTC (rev 15318)
+++ trunk/cglib/debian/changelog2011-11-01 21:09:35 UTC (rev 15319)
@@ -1,3 +1,13 @@
+cglib (2.2.2+dfsg-1) unstable; urgency=low
+
+  * New upstream release.
+  * Bump Standards-Version to 3.9.2: no changes needed.
+  * d/copyright: Use DEP-5 format.
+  * d/rules: Enable unit testing.
+  * d/patches/04_skiptests_ParallelSorter.diff: Skip some failing test.
+
+ -- Damien Raude-Morvan draz...@debian.org  Tue, 01 Nov 2011 22:05:40 +0100
+
 cglib (2.2+dfsg-4) unstable; urgency=low
 
   * d/rules, d/pom-nodep.xml: Install -nodep jar with another artifactId

Modified: trunk/cglib/debian/control
===
--- trunk/cglib/debian/control  2011-11-01 19:58:15 UTC (rev 15318)
+++ trunk/cglib/debian/control  2011-11-01 21:09:35 UTC (rev 15319)
@@ -6,7 +6,7 @@
  Michael Koch konque...@gmx.de, Damien Raude-Morvan draz...@debian.org
 Build-Depends: debhelper (= 7), cdbs, ant, default-jdk, maven-repo-helper
 Build-Depends-Indep: libasm3-java, junit, libjarjar-java
-Standards-Version: 3.9.1
+Standards-Version: 3.9.2
 Homepage: http://cglib.sourceforge.net
 Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/cglib/
 Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/cglib

Modified: trunk/cglib/debian/copyright
===
--- trunk/cglib/debian/copyright2011-11-01 19:58:15 UTC (rev 15318)
+++ trunk/cglib/debian/copyright2011-11-01 21:09:35 UTC (rev 15319)
@@ -1,42 +1,20 @@
-This package was debianized by Arnaud Vandyck av...@debian.org on
-10-April-2007.  The source code was downloaded from
-http://sourceforge.net/projects/cglib
+Format: http://www.debian.org/doc/copyright-format/1.0
+Upstream-Name: CGLib, Code Generation Library
+Upstream-Contact: http://cglib.sourceforge.net/
+Source: http://sourceforge.net/projects/cglib/
 
-Authors:
+Files: *
+Copyright: Copyright (C) 2002-2004 The Apache Software Foundation
+License: Apache-2.0
 
-  Juozas Baliuka bali...@users.sourceforge.net
-  Chris Nokleberg herbyde...@users.sourceforge.net
+Files: debian/*
+Copyright: Copyright 2007, Arnaud Vandyck av...@debian.org
+License: Apache-2.0
 
-Copyright: (C) 2002-2004 The Apache Software Foundation
-   (C) 2000-2005 INRIA, France Telecom (one source file
-   from the ASM project)
-
-License: Apache 2.0
-
-   Licensed under the Apache License, Version 2.0 (the License);
-   you may not use this file except in compliance with the License.
-   You may obtain a copy of the License at
-
-   http://www.apache.org/licenses/LICENSE-2.0
-
-   Unless required by applicable law or agreed to in writing, software
-   distributed under the License is distributed on an AS IS BASIS,
-   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-   See the License for the specific language governing permissions and
-   limitations under the License.
-
-  The full text of the Apache License can be found in
-  `/usr/share/common-licenses/Apache-2.0'.
-
-

-src/proxy/net/sf/cglib/core/LocalVariablesSorter.java
-License: BSD (3 clauses)
-
- ASM: a very small and fast Java bytecode manipulation framework
- Copyright (c) 2000-2005 INRIA, France Telecom
- All rights reserved.
-
+File: src/proxy/net/sf/cglib/core/LocalVariablesSorter.java
+Copyright: Copyright (C) 2000-2005 INRIA, France Telecom
+Comment: one source file from the ASM project
+License: BSD-3-clauses
  Redistribution and use in source and binary forms, with or without
  modification, are permitted provided that the following conditions
  are met:
@@ -48,7 +26,7 @@
  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
@@ -61,4 +39,18 @@
  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
  THE POSSIBILITY OF SUCH 

[pkg-java] r15320 - in tags/cglib: . 2.2.2+dfsg-1/debian 2.2.2+dfsg-1/debian/patches

2011-11-01 Thread Damien Raude-Morvan
Author: drazzib
Date: 2011-11-01 21:11:43 + (Tue, 01 Nov 2011)
New Revision: 15320

Added:
   tags/cglib/2.2.2+dfsg-1/
   tags/cglib/2.2.2+dfsg-1/debian/changelog
   tags/cglib/2.2.2+dfsg-1/debian/control
   tags/cglib/2.2.2+dfsg-1/debian/copyright
   tags/cglib/2.2.2+dfsg-1/debian/patches/03_jarjar.diff
   tags/cglib/2.2.2+dfsg-1/debian/patches/04_skiptests_ParallelSorter.diff
   tags/cglib/2.2.2+dfsg-1/debian/patches/series
   tags/cglib/2.2.2+dfsg-1/debian/pom.xml
   tags/cglib/2.2.2+dfsg-1/debian/rules
Removed:
   tags/cglib/2.2.2+dfsg-1/debian/changelog
   tags/cglib/2.2.2+dfsg-1/debian/control
   tags/cglib/2.2.2+dfsg-1/debian/copyright
   tags/cglib/2.2.2+dfsg-1/debian/patches/03_jarjar.diff
   tags/cglib/2.2.2+dfsg-1/debian/patches/series
   tags/cglib/2.2.2+dfsg-1/debian/pom.xml
   tags/cglib/2.2.2+dfsg-1/debian/rules
Log:
[svn-buildpackage] Tagging cglib 2.2.2+dfsg-1

Deleted: tags/cglib/2.2.2+dfsg-1/debian/changelog
===
--- trunk/cglib/debian/changelog2011-11-01 04:14:51 UTC (rev 15314)
+++ tags/cglib/2.2.2+dfsg-1/debian/changelog2011-11-01 21:11:43 UTC (rev 
15320)
@@ -1,113 +0,0 @@
-cglib (2.2+dfsg-4) unstable; urgency=low
-
-  * d/rules, d/pom-nodep.xml: Install -nodep jar with another artifactId
-to avoid conflict in /usr/share/maven-repo (Closes: #617865).
-
- -- Damien Raude-Morvan draz...@debian.org  Sat, 12 Mar 2011 02:03:14 +0100
-
-cglib (2.2+dfsg-3) unstable; urgency=low
-
-  * d/patches/02_build_split.patch: Drop, re-enable cglib-nodep
-(Closes: #583231).
-  * d/patches/03_jarjar.diff: fix location of asm.jar.
-  * d/control: Build-Depends on libjarjar-java.
-  * d/control: drop Depends en JRE, as its a library.
-  * d/rules: add jarjar to DEB_JARS.
-  * Bump Standards-Version to 3.9.1 (no changes needed).
-
- -- Damien Raude-Morvan draz...@debian.org  Sun, 06 Mar 2011 01:57:24 +0100
-
-cglib (2.2+dfsg-2) unstable; urgency=low
-
-  [ Gabriele Giacone ]
-  * Added Maven Support
-  * Standards-Version to 3.8.4
-  * Source format 3.0 (quilt)
-
-  [ Damien Raude-Morvan ]
-  * Remove Arnaud Vandyck from Uploaders
-  * Source format 3.0 (quilt):
-- Remove patchsys-quilt.mk from d/rules
-- Rework d/README.source
-  * Maven Support:
-- Add get-orig-pom target in d/rules to update pom.xml
-  * Remove d/README.Debian (already included in d/README.source)
-
- -- Damien Raude-Morvan draz...@debian.org  Tue, 16 Mar 2010 20:42:36 +0100
-
-cglib (2.2+dfsg-1) unstable; urgency=low
-
-  * New upstream release.
-- Rename source package to cglib
-- Drop unneeded Build-Depends on libaspectwerkz2-java
-- Build-Depends on libasm3-java instead of libasm-java
-- Drop uneeded debian/patches/01_build_classpath.patch 
-  * Build-Depends on default-jdk instead of default-jdk-builddep
-because we don't build a native GCJ package.
-  * Switch to debhelper 7
-  * Use Quilt patch system:
-- refresh all debian/patches
-- Build-Depends on quilt
-- Update debian/README.source
-  * Update my email address
-  * Bump Standards-Version to 3.8.3: no changes needed
-  * Fix debian/copyright to include BSD license of
-src/proxy/net/sf/cglib/core/LocalVariablesSorter.java
-
- -- Damien Raude-Morvan draz...@debian.org  Thu, 08 Oct 2009 21:23:45 +0200
-
-cglib2.1 (2.1.3.dfsg.2-2) unstable; urgency=low
-
-  * Use default-java-builddep:
-- Remove B-D on java-gcj-compat-dev (Closes: #526274)
-- Add default-java-builddep to B-D
-- Use /usr/lib/jvm/default-java as JAVA_HOME
-  * Move ant to B-D-I (needed for clean target)
-  * Add myself as Uploaders
-  * Add ${misc:Depends} as suggested by Lintian
-  * Fix short-description of libcglib2.1-java-doc
-to include documentation
-  * Fix Vcs-* fields to use cglib2.1 instead of cglib
-  * Bump Standards-Version to 3.8.2:
-- Move to java section
-- Rename README.Debian-source to README.source
-- Describe patch system usage in README.source
-
- -- Damien Raude-Morvan draz...@drazzib.com  Mon, 29 Jun 2009 22:13:35 +0200
-
-cglib2.1 (2.1.3.dfsg.2-1) unstable; urgency=low
-
-  * Increase the upstream version number without changing the actual tarball
-to get the package uploaded to main.
-
- -- Torsten Werner twer...@debian.org  Sun, 10 Aug 2008 22:32:44 +0200
-
-cglib2.1 (2.1.3.dfsg.1-3) unstable; urgency=low
-
-  [ Michael Koch ]
-  * Use uscan sf.net helper for SourceForge. Fixes upstream checking.
-  * Added myself to Uploaders.
-
-  [ Torsten Werner ]
-  * Move package to main.
-  * Reformat debian/copyright for better readability.
-  * Do not quote the full text of the Apache License in debian/copyright.
-  * Fix doc-base file.
-
- -- Torsten Werner twer...@debian.org  Thu, 31 Jul 2008 00:18:44 +0200
-
-cglib2.1 (2.1.3.dfsg.1-2) unstable; urgency=low
-
-  * Fix debian/watch.
-  * Add myself to Uploaders.
-  * Add Homepage and Vcs headers to debian/control.
-  * Change Standards-Version: 3.7.3.
-  * Switch to debhelper 5.

Processing of cglib_2.2.2+dfsg-1_amd64.changes

2011-11-01 Thread Debian FTP Masters
cglib_2.2.2+dfsg-1_amd64.changes uploaded successfully to localhost
along with the files:
  cglib_2.2.2+dfsg-1.dsc
  cglib_2.2.2+dfsg.orig.tar.gz
  cglib_2.2.2+dfsg-1.debian.tar.gz
  libcglib-java_2.2.2+dfsg-1_all.deb
  libcglib-java-doc_2.2.2+dfsg-1_all.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)

__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.


cglib_2.2.2+dfsg-1_amd64.changes ACCEPTED into unstable

2011-11-01 Thread Debian FTP Masters



Accepted:
cglib_2.2.2+dfsg-1.debian.tar.gz
  to main/c/cglib/cglib_2.2.2+dfsg-1.debian.tar.gz
cglib_2.2.2+dfsg-1.dsc
  to main/c/cglib/cglib_2.2.2+dfsg-1.dsc
cglib_2.2.2+dfsg.orig.tar.gz
  to main/c/cglib/cglib_2.2.2+dfsg.orig.tar.gz
libcglib-java-doc_2.2.2+dfsg-1_all.deb
  to main/c/cglib/libcglib-java-doc_2.2.2+dfsg-1_all.deb
libcglib-java_2.2.2+dfsg-1_all.deb
  to main/c/cglib/libcglib-java_2.2.2+dfsg-1_all.deb


Override entries for your package:
cglib_2.2.2+dfsg-1.dsc - source java
libcglib-java-doc_2.2.2+dfsg-1_all.deb - optional doc
libcglib-java_2.2.2+dfsg-1_all.deb - optional java

Announcing to debian-devel-chan...@lists.debian.org


Thank you for your contribution to Debian.

__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.


[pkg-java] r15321 - trunk/logback/debian

2011-11-01 Thread Damien Raude-Morvan
Author: drazzib
Date: 2011-11-01 22:54:19 + (Tue, 01 Nov 2011)
New Revision: 15321

Modified:
   trunk/logback/debian/changelog
Log:
New upstream release.

Modified: trunk/logback/debian/changelog
===
--- trunk/logback/debian/changelog  2011-11-01 21:11:43 UTC (rev 15320)
+++ trunk/logback/debian/changelog  2011-11-01 22:54:19 UTC (rev 15321)
@@ -1,3 +1,9 @@
+logback (1:1.0.0-1) unstable; urgency=low
+
+  * New upstream release.
+
+ -- Damien Raude-Morvan draz...@debian.org  Tue, 01 Nov 2011 23:33:55 +0100
+
 logback (1:0.9.30-1) unstable; urgency=low
 
   * New upstream release.


___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits


[pkg-java] r15322 - in tags/logback: . 1:1.0.0-1/debian

2011-11-01 Thread Damien Raude-Morvan
Author: drazzib
Date: 2011-11-01 22:55:46 + (Tue, 01 Nov 2011)
New Revision: 15322

Added:
   tags/logback/1:1.0.0-1/
   tags/logback/1:1.0.0-1/debian/changelog
Removed:
   tags/logback/1:1.0.0-1/debian/changelog
Log:
[svn-buildpackage] Tagging logback 1:1.0.0-1

Deleted: tags/logback/1:1.0.0-1/debian/changelog
===
--- trunk/logback/debian/changelog  2011-11-01 04:14:51 UTC (rev 15314)
+++ tags/logback/1:1.0.0-1/debian/changelog 2011-11-01 22:55:46 UTC (rev 
15322)
@@ -1,71 +0,0 @@
-logback (1:0.9.30-1) unstable; urgency=low
-
-  * New upstream release.
-  * Wrap and sort Build-Depends and Depends.
-  * Update Standards-Version: 3.9.2 (no changes needed).
-  * d/copyright: Update to latest DEP-5 format.
-
- -- Damien Raude-Morvan draz...@debian.org  Thu, 22 Sep 2011 13:59:23 +0200
-
-logback (1:0.9.28-1) unstable; urgency=low
-
-  * New upstream release.
-  * Update Standards-Version: 3.9.1 (no changes needed).
-  * d/control: Add Build-Depends on groovy.
-  * d/rules: Add groovy to DEB_JARS.
-
- -- Damien Raude-Morvan draz...@debian.org  Fri, 04 Mar 2011 23:09:14 +0100
-
-logback (1:0.9.18+dak1-1) unstable; urgency=low
-
-  * Revert to 0.9.18 release.
-- 0.9.20 as incompatible API changes:
-  upstream removed methods in StaticLoggerBinder
-  which cause FTBFS on red5 package (See: #577859).
-
- -- Damien Raude-Morvan draz...@debian.org  Mon, 26 Apr 2010 22:03:01 +0200
-
-logback (0.9.20-1) unstable; urgency=low
-
-  * Team upload
-  * New upstream release
-  * Change 'maintainers' into 'Maintainers'.
-  * Switch to source format 3.0.
-  * Update Standards-Version: 3.8.4
-
- -- Torsten Werner twer...@debian.org  Sun, 11 Apr 2010 21:12:47 +0200
-
-logback (0.9.18-1) unstable; urgency=low
-
-  * New upstream release.
-- Now dual-licensed under the EPL 1.0 and LGPL 2.1
-- Update debian/copyright
-  * Bump debhelper version to = 7
-  * Extract debian/rules get-orig-source script into debian/orig-tar.sh
-and debian/orig-tar.exclude
-
- -- Damien Raude-Morvan draz...@debian.org  Thu, 03 Dec 2009 23:24:54 +0100
-
-logback (0.9.17-1) unstable; urgency=low
-
-  * New upstream release.
-  * Set Maintainer field to Debian Java Team
-  * Add myself as Uploaders
-  * Build-Depends on default-jdk instead of default-jdk-builddep
-because we don't build a native GCJ package.
-  * Bump Standards-Version to 3.8.3 (no changes needed)
-  * Documentation:
-- Move api documentation to /usr/share/doc/liblogback-java/api/
-- Register Logback manual with doc-base
-  * Maven POMs:
-- Add a Build-Depends-Indep dependency on maven-repo-helper
-- Use mh_installpoms and mh_installjar to install the POM and the jar to 
the
- Maven repository
-
- -- Damien Raude-Morvan draz...@debian.org  Fri, 25 Sep 2009 00:19:01 +0200
-
-logback (0.9.15-1) unstable; urgency=low
-
-  * Initial release. (Closes: #506569)
-
- -- Damien Raude-Morvan draz...@drazzib.com  Sun, 15 Mar 2009 20:43:52 +0100

Copied: tags/logback/1:1.0.0-1/debian/changelog (from rev 15321, 
trunk/logback/debian/changelog)
===
--- tags/logback/1:1.0.0-1/debian/changelog (rev 0)
+++ tags/logback/1:1.0.0-1/debian/changelog 2011-11-01 22:55:46 UTC (rev 
15322)
@@ -0,0 +1,77 @@
+logback (1:1.0.0-1) unstable; urgency=low
+
+  * New upstream release.
+
+ -- Damien Raude-Morvan draz...@debian.org  Tue, 01 Nov 2011 23:33:55 +0100
+
+logback (1:0.9.30-1) unstable; urgency=low
+
+  * New upstream release.
+  * Wrap and sort Build-Depends and Depends.
+  * Update Standards-Version: 3.9.2 (no changes needed).
+  * d/copyright: Update to latest DEP-5 format.
+
+ -- Damien Raude-Morvan draz...@debian.org  Thu, 22 Sep 2011 13:59:23 +0200
+
+logback (1:0.9.28-1) unstable; urgency=low
+
+  * New upstream release.
+  * Update Standards-Version: 3.9.1 (no changes needed).
+  * d/control: Add Build-Depends on groovy.
+  * d/rules: Add groovy to DEB_JARS.
+
+ -- Damien Raude-Morvan draz...@debian.org  Fri, 04 Mar 2011 23:09:14 +0100
+
+logback (1:0.9.18+dak1-1) unstable; urgency=low
+
+  * Revert to 0.9.18 release.
+- 0.9.20 as incompatible API changes:
+  upstream removed methods in StaticLoggerBinder
+  which cause FTBFS on red5 package (See: #577859).
+
+ -- Damien Raude-Morvan draz...@debian.org  Mon, 26 Apr 2010 22:03:01 +0200
+
+logback (0.9.20-1) unstable; urgency=low
+
+  * Team upload
+  * New upstream release
+  * Change 'maintainers' into 'Maintainers'.
+  * Switch to source format 3.0.
+  * Update Standards-Version: 3.8.4
+
+ -- Torsten Werner twer...@debian.org  Sun, 11 Apr 2010 21:12:47 +0200
+
+logback (0.9.18-1) unstable; urgency=low
+
+  * New upstream release.
+- Now dual-licensed under the EPL 1.0 and LGPL 2.1
+- Update debian/copyright
+  * Bump debhelper version to = 7
+  * Extract debian/rules get-orig-source script into debian/orig-tar.sh
+   

Processing of logback_1.0.0-1_amd64.changes

2011-11-01 Thread Debian FTP Masters
logback_1.0.0-1_amd64.changes uploaded successfully to localhost
along with the files:
  logback_1.0.0-1.dsc
  logback_1.0.0.orig.tar.gz
  logback_1.0.0-1.debian.tar.gz
  liblogback-java_1.0.0-1_all.deb
  liblogback-java-doc_1.0.0-1_all.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)

__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.


[pkg-java] r15323 - in trunk/maven-repo-helper: . debian doc doc/ref src/main/bin src/main/java/org/debian/maven/repo src/main/share src/test/resources

2011-11-01 Thread Ludovic Claude
Author: ludovicc-guest
Date: 2011-11-01 23:03:51 + (Tue, 01 Nov 2011)
New Revision: 15323

Modified:
   trunk/maven-repo-helper/debian/build.properties
   trunk/maven-repo-helper/debian/build.xml
   trunk/maven-repo-helper/debian/changelog
   trunk/maven-repo-helper/debian/control
   trunk/maven-repo-helper/debian/copyright
   trunk/maven-repo-helper/debian/rules
   trunk/maven-repo-helper/doc/ref/mh_install.txt
   trunk/maven-repo-helper/doc/tutorial.txt
   trunk/maven-repo-helper/pom.xml
   trunk/maven-repo-helper/src/main/bin/mh_install
   trunk/maven-repo-helper/src/main/java/org/debian/maven/repo/ListOfPOMs.java
   trunk/maven-repo-helper/src/main/java/org/debian/maven/repo/POMCleaner.java
   
trunk/maven-repo-helper/src/main/java/org/debian/maven/repo/POMTransformer.java
   trunk/maven-repo-helper/src/main/share/mh_lib.sh
   trunk/maven-repo-helper/src/test/resources/doxia-module-fml.transformed
   trunk/maven-repo-helper/src/test/resources/hibernate-validator.transformed
   trunk/maven-repo-helper/src/test/resources/plexus-utils2.transformed
Log:
* add --site-xml=location option to mh_install and in the
  package.poms file to explicitly define the location for site.xml.
  Warning: this forces existing packages to add this option if they
  need to install site.xml
* update the version in the POM and in the documentation
  (Closes: #644258)
* run the unit tests when building the package, fix broken tests after the
  introduction of relativePath on the parent element of cleaned POM files. 
* d/control: add ant-optional, junit, libxmlunit-java, libcommons-io-java to
  Build-Depend-Indep
* d/copyright: update fields to match latest DEP5 spec.

Modified: trunk/maven-repo-helper/debian/build.properties
===
--- trunk/maven-repo-helper/debian/build.properties 2011-11-01 22:55:46 UTC 
(rev 15322)
+++ trunk/maven-repo-helper/debian/build.properties 2011-11-01 23:03:51 UTC 
(rev 15323)
@@ -9,7 +9,7 @@
 build.javaVersion=1.4
 javadoc.dir=${build.directory}/javadoc
 classpath.compile=
-classpath.test=
+classpath.test=/usr/share/java/junit.jar:/usr/share/java/commons-io.jar:/usr/share/java/xmlunit.jar
 classpath.full.compile=${build.outputDirectory}:${classpath.compile}
 
classpath.full.test=${build.testOutputDirectory}:${classpath.test}:${build.outputDirectory}:${classpath.compile}
 

Modified: trunk/maven-repo-helper/debian/build.xml
===
--- trunk/maven-repo-helper/debian/build.xml2011-11-01 22:55:46 UTC (rev 
15322)
+++ trunk/maven-repo-helper/debian/build.xml2011-11-01 23:03:51 UTC (rev 
15323)
@@ -1,7 +1,9 @@
 project name=pkg-java default=package basedir=..
 
 property file=debian/build.properties/
-property name=maven.test.skip value=true/
+!-- Uncomment to skip the tests
+  property name=maven.test.skip value=true/
+--
 property name=artifactId value=maven-repo-helper/
 
 target name=init

Modified: trunk/maven-repo-helper/debian/changelog
===
--- trunk/maven-repo-helper/debian/changelog2011-11-01 22:55:46 UTC (rev 
15322)
+++ trunk/maven-repo-helper/debian/changelog2011-11-01 23:03:51 UTC (rev 
15323)
@@ -1,3 +1,19 @@
+maven-repo-helper (1.7) natty; urgency=low
+
+  * add --site-xml=location option to mh_install and in the
+package.poms file to explicitly define the location for site.xml.
+Warning: this forces existing packages to add this option if they
+need to install site.xml
+  * update the version in the POM and in the documentation
+(Closes: #644258)
+  * run the unit tests when building the package, fix broken tests after the
+introduction of relativePath on the parent element of cleaned POM files. 
+  * d/control: add ant-optional, junit, libxmlunit-java, libcommons-io-java to
+Build-Depend-Indep
+  * d/copyright: update fields to match latest DEP5 spec.
+
+ -- Ludovic Claude ludovic.cla...@laposte.net  Tue, 01 Nov 2011 16:32:39 
+0200
+
 maven-repo-helper (1.6) unstable; urgency=low
 
   [ Ludovic Claude ]

Modified: trunk/maven-repo-helper/debian/control
===
--- trunk/maven-repo-helper/debian/control  2011-11-01 22:55:46 UTC (rev 
15322)
+++ trunk/maven-repo-helper/debian/control  2011-11-01 23:03:51 UTC (rev 
15323)
@@ -3,7 +3,8 @@
 Priority: optional
 Maintainer: Debian Java Maintainers 
pkg-java-maintainers@lists.alioth.debian.org
 Uploaders: Ludovic Claude ludovic.cla...@laposte.net, Damien Raude-Morvan 
draz...@debian.org
-Build-Depends: debhelper (= 7), cdbs, default-jdk, ant, help2man, markdown, 
libstax-java
+Build-Depends: debhelper (= 7), cdbs, default-jdk, ant, help2man, markdown
+Build-Depends-Indep: ant-optional, libstax-java, junit, libxmlunit-java, 
libcommons-io-java
 Standards-Version: 3.9.2
 Vcs-Svn: 

logback_1.0.0-1_amd64.changes ACCEPTED into unstable

2011-11-01 Thread Debian FTP Masters



Accepted:
liblogback-java-doc_1.0.0-1_all.deb
  to main/l/logback/liblogback-java-doc_1.0.0-1_all.deb
liblogback-java_1.0.0-1_all.deb
  to main/l/logback/liblogback-java_1.0.0-1_all.deb
logback_1.0.0-1.debian.tar.gz
  to main/l/logback/logback_1.0.0-1.debian.tar.gz
logback_1.0.0-1.dsc
  to main/l/logback/logback_1.0.0-1.dsc
logback_1.0.0.orig.tar.gz
  to main/l/logback/logback_1.0.0.orig.tar.gz


Override entries for your package:
liblogback-java-doc_1.0.0-1_all.deb - optional doc
liblogback-java_1.0.0-1_all.deb - optional java
logback_1.0.0-1.dsc - source java

Announcing to debian-devel-chan...@lists.debian.org


Thank you for your contribution to Debian.

__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.


[pkg-java] r15324 - trunk/maven-repo-helper/debian

2011-11-01 Thread Ludovic Claude
Author: ludovicc-guest
Date: 2011-11-01 23:05:20 + (Tue, 01 Nov 2011)
New Revision: 15324

Modified:
   trunk/maven-repo-helper/debian/changelog
Log:
Package not yet released

Modified: trunk/maven-repo-helper/debian/changelog
===
--- trunk/maven-repo-helper/debian/changelog2011-11-01 23:03:51 UTC (rev 
15323)
+++ trunk/maven-repo-helper/debian/changelog2011-11-01 23:05:20 UTC (rev 
15324)
@@ -1,4 +1,4 @@
-maven-repo-helper (1.7) natty; urgency=low
+maven-repo-helper (1.7) UNRELEASED; urgency=low
 
   * add --site-xml=location option to mh_install and in the
 package.poms file to explicitly define the location for site.xml.


___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits


[pkg-java] r15325 - in trunk/jasperreports/debian: . patches

2011-11-01 Thread Damien Raude-Morvan
Author: drazzib
Date: 2011-11-01 23:09:20 + (Tue, 01 Nov 2011)
New Revision: 15325

Added:
   trunk/jasperreports/debian/patches/15_poi.diff
Modified:
   trunk/jasperreports/debian/changelog
   trunk/jasperreports/debian/control
   trunk/jasperreports/debian/patches/06_configure_javaflow.diff
   trunk/jasperreports/debian/patches/08_no_maxmemory_for_javadoc.diff
   trunk/jasperreports/debian/patches/09_use_commons_codec.diff
   trunk/jasperreports/debian/patches/10_disable_fonts.diff
   trunk/jasperreports/debian/patches/12_samples.diff
   trunk/jasperreports/debian/patches/14_velocity.diff
   trunk/jasperreports/debian/patches/series
   trunk/jasperreports/debian/rules
Log:
New upstream release.

Modified: trunk/jasperreports/debian/changelog
===
--- trunk/jasperreports/debian/changelog2011-11-01 23:05:20 UTC (rev 
15324)
+++ trunk/jasperreports/debian/changelog2011-11-01 23:09:20 UTC (rev 
15325)
@@ -1,3 +1,9 @@
+jasperreports (4.1.3+dfsg-1) unstable; urgency=low
+
+  * New upstream release.
+
+ -- Damien Raude-Morvan draz...@debian.org  Tue, 01 Nov 2011 23:32:32 +0100
+
 jasperreports (4.1.2+dfsg-1) unstable; urgency=low
 
   * New upstream release:

Modified: trunk/jasperreports/debian/control
===
--- trunk/jasperreports/debian/control  2011-11-01 23:05:20 UTC (rev 15324)
+++ trunk/jasperreports/debian/control  2011-11-01 23:09:20 UTC (rev 15325)
@@ -12,7 +12,8 @@
   libjexcelapi-java, libapache-poi-java (= 3.2), libitext-java,
   libbatik-java (= 1.7), libjfreechart-java, libhibernate3-java,
   glassfish-javaee, maven-repo-helper, libmondrian-java, libolap4j-java,
-  libantlr-java, librhino-java, velocity, libcastor-core-java, 
libcastor-xml-java
+  libantlr-java, librhino-java, velocity, libcastor-core-java, 
libcastor-xml-java,
+  libjackson-json-java
 Standards-Version: 3.9.2
 Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/jasperreports/
 Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/jasperreports/
@@ -27,7 +28,8 @@
 Recommends: libjexcelapi-java, libapache-poi-java (= 3.2), libitext-java,
   libbatik-java (= 1.7), libjfreechart-java, libhibernate3-java, 
libcastor-core-java, libcastor-xml-java
 Suggests: bsh, libasm2-java, groovy, libmondrian-java, libolap4j-java,
-  libspring-core-java, libspring-beans-java, libantlr-java, velocity
+  libspring-core-java, libspring-beans-java, libantlr-java, velocity,
+  libjackson-json-java
 Description: Java reporting generator library
  JasperReports is a Java reporting generator library. XML report templates
  are used to generate ready to print documents using data from customizable 
data

Modified: trunk/jasperreports/debian/patches/06_configure_javaflow.diff
===
--- trunk/jasperreports/debian/patches/06_configure_javaflow.diff   
2011-11-01 23:05:20 UTC (rev 15324)
+++ trunk/jasperreports/debian/patches/06_configure_javaflow.diff   
2011-11-01 23:09:20 UTC (rev 15325)
@@ -7,7 +7,7 @@
 ===
 --- a/build.xml
 +++ b/build.xml
-@@ -75,12 +75,25 @@
+@@ -76,12 +76,25 @@
/replace
  
javaflow srcdir=./build/javaflow dstdir=./build/javaflow 
mode=bcel

Modified: trunk/jasperreports/debian/patches/08_no_maxmemory_for_javadoc.diff
===
--- trunk/jasperreports/debian/patches/08_no_maxmemory_for_javadoc.diff 
2011-11-01 23:05:20 UTC (rev 15324)
+++ trunk/jasperreports/debian/patches/08_no_maxmemory_for_javadoc.diff 
2011-11-01 23:09:20 UTC (rev 15325)
@@ -6,7 +6,7 @@
 ===
 --- a/build.xml
 +++ b/build.xml
-@@ -349,7 +349,6 @@
+@@ -352,7 +352,6 @@
use=true
windowtitle=JasperReports ${version} API
excludepackagenames=org.w3c.tools.codec

Modified: trunk/jasperreports/debian/patches/09_use_commons_codec.diff
===
--- trunk/jasperreports/debian/patches/09_use_commons_codec.diff
2011-11-01 23:05:20 UTC (rev 15324)
+++ trunk/jasperreports/debian/patches/09_use_commons_codec.diff
2011-11-01 23:09:20 UTC (rev 15325)
@@ -7,16 +7,16 @@
 ===
 --- a/src/net/sf/jasperreports/engine/export/JRXmlExporter.java
 +++ b/src/net/sf/jasperreports/engine/export/JRXmlExporter.java
-@@ -89,7 +89,7 @@
- import net.sf.jasperreports.engine.util.JRXmlWriteHelper;
- import net.sf.jasperreports.engine.xml.JRXmlConstants;
+@@ -93,7 +93,7 @@
  
+ import org.apache.commons.logging.Log;
+ import org.apache.commons.logging.LogFactory;
 -import org.w3c.tools.codec.Base64Encoder;
 +import 

[pkg-java] r15326 - in tags/jasperreports: . 4.1.3+dfsg-1/debian 4.1.3+dfsg-1/debian/patches

2011-11-01 Thread Damien Raude-Morvan
Author: drazzib
Date: 2011-11-01 23:09:53 + (Tue, 01 Nov 2011)
New Revision: 15326

Added:
   tags/jasperreports/4.1.3+dfsg-1/
   tags/jasperreports/4.1.3+dfsg-1/debian/changelog
   tags/jasperreports/4.1.3+dfsg-1/debian/control
   tags/jasperreports/4.1.3+dfsg-1/debian/patches/06_configure_javaflow.diff
   
tags/jasperreports/4.1.3+dfsg-1/debian/patches/08_no_maxmemory_for_javadoc.diff
   tags/jasperreports/4.1.3+dfsg-1/debian/patches/09_use_commons_codec.diff
   tags/jasperreports/4.1.3+dfsg-1/debian/patches/10_disable_fonts.diff
   tags/jasperreports/4.1.3+dfsg-1/debian/patches/12_samples.diff
   tags/jasperreports/4.1.3+dfsg-1/debian/patches/14_velocity.diff
   tags/jasperreports/4.1.3+dfsg-1/debian/patches/15_poi.diff
   tags/jasperreports/4.1.3+dfsg-1/debian/patches/series
   tags/jasperreports/4.1.3+dfsg-1/debian/rules
Removed:
   tags/jasperreports/4.1.3+dfsg-1/debian/changelog
   tags/jasperreports/4.1.3+dfsg-1/debian/control
   tags/jasperreports/4.1.3+dfsg-1/debian/patches/06_configure_javaflow.diff
   
tags/jasperreports/4.1.3+dfsg-1/debian/patches/08_no_maxmemory_for_javadoc.diff
   tags/jasperreports/4.1.3+dfsg-1/debian/patches/09_use_commons_codec.diff
   tags/jasperreports/4.1.3+dfsg-1/debian/patches/10_disable_fonts.diff
   tags/jasperreports/4.1.3+dfsg-1/debian/patches/12_samples.diff
   tags/jasperreports/4.1.3+dfsg-1/debian/patches/14_velocity.diff
   tags/jasperreports/4.1.3+dfsg-1/debian/patches/series
   tags/jasperreports/4.1.3+dfsg-1/debian/rules
Log:
[svn-buildpackage] Tagging jasperreports 4.1.3+dfsg-1

Deleted: tags/jasperreports/4.1.3+dfsg-1/debian/changelog
===
--- trunk/jasperreports/debian/changelog2011-11-01 04:14:51 UTC (rev 
15314)
+++ tags/jasperreports/4.1.3+dfsg-1/debian/changelog2011-11-01 23:09:53 UTC 
(rev 15326)
@@ -1,148 +0,0 @@
-jasperreports (4.1.2+dfsg-1) unstable; urgency=low
-
-  * New upstream release:
-- Refresh all debian/patches/*.
-- Add Build-Depends on velocity, libcastor-core-java
-  and libcastor-xml-java.
-  * Build-Depends and Recommends libapache-poi-java instead of
-libjakarta-poi-java (renamed package). (Closes: #642280).
-  * d/patches/13_disable_ooxml_support.diff: Disable OOXML support in JR since
-libapache-poi-java doesn't provide it.
-  * d/patches/14_velocity.diff: Fix some missing exception not handled by JR.
-
- -- Damien Raude-Morvan draz...@debian.org  Wed, 21 Sep 2011 14:06:31 +0200
-
-jasperreports (4.0.2+dfsg-2) unstable; urgency=low
-
-  [ Miguel Landaeta ]
-  * Team upload.
-  * Switch dependencies on Spring Framework 2.5 with 3.0. (Closes: #638391). 
-  * Add mh_clean call in clean target.
-
-  [ Damien Raude-Morvan ]
-  * Upload to unstable.
-
- -- Damien Raude-Morvan draz...@debian.org  Sat, 20 Aug 2011 13:22:48 +0200
-
-jasperreports (4.0.2+dfsg-1) unstable; urgency=low
-
-  * New upstream release.
-  * B-D and Suggests libaspectj-java instead of aspectj (ie. so no JRE
-in dependencies graph).
-  * d/patches/09_use_commons_codec.diff
-d/patches/08_no_maxmemory_for_javadoc.diff
-d/patches/12_samples.diff: Refreshed.
-  * Bump Standards-Version to 3.9.2 (no changes needed).
-
- -- Damien Raude-Morvan draz...@debian.org  Sun, 08 May 2011 00:05:57 +0200
-
-jasperreports (4.0.1+dfsg-1) unstable; urgency=low
-
-  * New upstream release: Refreshed all patches.
-
- -- Damien Raude-Morvan draz...@debian.org  Tue, 15 Mar 2011 19:58:44 +0100
-
-jasperreports (4.0.0+dfsg-1) unstable; urgency=low
-
-  * New upstream release:
-- d/patches/09_use_commons_codec.diff: Refreshed.
-- d/patches/07_exclude_barcode4j_and_barbecue.diff: Refreshed.
-- d/patches/12_samples.diff: Refreshed.
-  * d/copyright: Use DEP-5 format.
-
- -- Damien Raude-Morvan draz...@debian.org  Tue, 22 Feb 2011 22:29:56 +0100
-
-jasperreports (3.7.4+dfsg-1) unstable; urgency=low
-
-  * New upstream release:
-- Refresh 07_exclude_barcode4j_and_barbecue.diff patch
-  * Bump Standards-Version to 3.9.1: no changes needed.
-  * Drop Depends on JRE: not requested anymore by new Java Policy.
-
- -- Damien Raude-Morvan draz...@debian.org  Tue, 27 Jul 2010 15:32:56 +0200
-
-jasperreports (3.7.3+dfsg-1) unstable; urgency=low
-
-  * New upstream release:
-- Refresh all patches
-  * Bump Standards-Version to 3.9.0 (no changes needed)
-
- -- Damien Raude-Morvan draz...@debian.org  Thu, 08 Jul 2010 02:23:43 +0200
-
-jasperreports (3.7.2+dfsg-1) unstable; urgency=low
-
-  [ Torsten Werner ]
-  * Change maintainers into Maintainers.
-
-  [ Damien Raude-Morvan ]
-  * New upstream release:
-- Drop d/patches/01_exclude_jpa.diff
-- Drop d/patches/03_use_pngencoder_from_jcommon.diff
-- Refresh others patches
-  * Switch to 3.0 (quilt) source format:
-- d/source/format: Set 3.0 (quilt)
-- d/rules: Remove /usr/share/cdbs/1/rules/patchsys-quilt.mk
-- d/control: Remove B-D on quilt
-- d/README.source: Removed
-  * Replace 

Processing of jasperreports_4.1.3+dfsg-1_amd64.changes

2011-11-01 Thread Debian FTP Masters
jasperreports_4.1.3+dfsg-1_amd64.changes uploaded successfully to localhost
along with the files:
  jasperreports_4.1.3+dfsg-1.dsc
  jasperreports_4.1.3+dfsg.orig.tar.gz
  jasperreports_4.1.3+dfsg-1.debian.tar.gz
  libjasperreports-java_4.1.3+dfsg-1_all.deb
  libjasperreports-java-doc_4.1.3+dfsg-1_all.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)

__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.


jasperreports_4.1.3+dfsg-1_amd64.changes ACCEPTED into unstable

2011-11-01 Thread Debian FTP Masters



Accepted:
jasperreports_4.1.3+dfsg-1.debian.tar.gz
  to main/j/jasperreports/jasperreports_4.1.3+dfsg-1.debian.tar.gz
jasperreports_4.1.3+dfsg-1.dsc
  to main/j/jasperreports/jasperreports_4.1.3+dfsg-1.dsc
jasperreports_4.1.3+dfsg.orig.tar.gz
  to main/j/jasperreports/jasperreports_4.1.3+dfsg.orig.tar.gz
libjasperreports-java-doc_4.1.3+dfsg-1_all.deb
  to main/j/jasperreports/libjasperreports-java-doc_4.1.3+dfsg-1_all.deb
libjasperreports-java_4.1.3+dfsg-1_all.deb
  to main/j/jasperreports/libjasperreports-java_4.1.3+dfsg-1_all.deb


Override entries for your package:
jasperreports_4.1.3+dfsg-1.dsc - source java
libjasperreports-java-doc_4.1.3+dfsg-1_all.deb - optional doc
libjasperreports-java_4.1.3+dfsg-1_all.deb - optional java

Announcing to debian-devel-chan...@lists.debian.org


Thank you for your contribution to Debian.

__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.