Bug#636837: Removed package(s) from unstable

2011-08-08 Thread Debian FTP Masters
We believe that the bug you reported is now fixed; the following
package(s) have been removed from unstable:

 flutejava |  1.3-4 | source
libflute-java |  1.3-4 | all
libflute-java-doc |  1.3-4 | all

--- Reason ---
ROM; FTBFS, not maintained, low popcon
--

Note that the package(s) have simply been removed from the tag
database and may (or may not) still be in the pool; this is not a bug.
The package(s) will be physically removed automatically when no suite
references them (and in the case of source, when no binary references
it).  Please also remember that the changes have been done on the
master archive (ftp-master.debian.org) and will not propagate to any
mirrors (ftp.debian.org included) until the next cron.daily run at the
earliest.

Packages are usually not removed from testing by hand. Testing tracks
unstable and will automatically remove packages which were removed
from unstable when removing them from testing causes no dependency
problems. The release team can force a removal from testing if it is
really needed, please contact them if this should be the case.

We try to close Bugs which have been reported against this package
automatically.  But please check all old bugs, if they where closed
correctly or should have been re-assign to another package.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 636...@bugs.debian.org.

The full log for this bug can be viewed at http://bugs.debian.org/636837

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@debian.org.

Debian distribution maintenance software
pp.
Alexander Reichle-Schmehl (the ftpmaster behind the curtain)

__
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] r14066 - trunk/libgnuinet-java/debian

2011-08-08 Thread Torsten Werner
Author: twerner
Date: 2011-08-08 12:01:09 + (Mon, 08 Aug 2011)
New Revision: 14066

Added:
   trunk/libgnuinet-java/debian/build.xml
   trunk/libgnuinet-java/debian/patches/
Removed:
   trunk/libgnuinet-java/debian/patches/
Modified:
   trunk/libgnuinet-java/debian/changelog
   trunk/libgnuinet-java/debian/rules
Log:
UNRELEASED
* Team upload
* New upstream release. Add the old (but patched) build.xml to debian/
  because it is missing in the new upstream tarball.

Added: trunk/libgnuinet-java/debian/build.xml
===
--- trunk/libgnuinet-java/debian/build.xml  (rev 0)
+++ trunk/libgnuinet-java/debian/build.xml  2011-08-08 12:01:09 UTC (rev 
14066)
@@ -0,0 +1,177 @@
+!--
+$Id: build.xml,v 1.8 2005/04/23 15:09:55 dog Exp $
+(C) Copyright 2003 The Free Software Foundation
+
+This file is part of GNU inetlib.
+
+GNU inetlib is free software; you can redistribute it and/or modify it
+under the terms of the GNU General Public License as published by the
+Free Software Foundation; either version 2, or (at your option) any
+later version.
+
+GNU inetlib is distributed in the hope that it will be useful, but
+WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with GNU inetlib; see the file COPYING.  If not, write to the
+Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
+02111-1307 USA.
+--
+
+project name='mail' default='inetlib' basedir='..'
+
+   description
+   This file is provided in the event that you do not have GNU Make
+   installed.
+   /description
+
+   !-- Locations --
+   property name='src' location='source'/
+   property name='build' location='classes'/
+   property name='doc' location='doc'/
+   property name='lib' location='lib'/
+   property name='inetlib.jar' location='inetlib.jar'/
+   property name='META-INF' location='${build}/META-INF'/
+   property name='install-dir' location='/usr/local/share/java'/
+
+   path id='inetlib.classpath'
+   pathelement path='${classpath}'/
+   !-- gnu-crypto and jessie --
+   pathelement path='${install-dir}/javax-security.jar'/
+   pathelement path='${install-dir}/jsse.jar'/
+   /path
+   
+   !-- Targets --
+   target name='init'
+echoWARNING: compilation using Ant is not supported, see the 
file INSTALL for details/echo
+   tstamp/
+   mkdir dir='${build}'/
+   mkdir dir='${META-INF}'/
+   /target
+
+   !-- Compilation and creation of provider files --
+   target name='inetlib' 
depends='finger,ftp,gopher,http,smtp,imap,pop3,nntp,ldap'/
+
+   target name='http' depends='init' unless='disable-http'
+   javac srcdir='${src}' destdir='${build}' debug='true'
+   classpath refid='inetlib.classpath'/
+   include name='gnu/inet/http/*.java'/
+   include name='gnu/inet/https/*.java'/
+   include name='gnu/inet/util/*.java'/
+   /javac
+   /target
+
+   target name='ftp' depends='init' unless='disable-ftp'
+   javac srcdir='${src}' destdir='${build}' debug='true'
+   classpath refid='inetlib.classpath'/
+   include name='gnu/inet/ftp/*.java'/
+   include name='gnu/inet/util/*.java'/
+   /javac
+   /target
+
+   target name='smtp' depends='init' unless='disable-smtp'
+   javac srcdir='${src}' destdir='${build}' debug='true'
+   classpath refid='inetlib.classpath'/
+   include name='gnu/inet/smtp/*.java'/
+   include name='gnu/inet/util/*.java'/
+   /javac
+   /target
+
+   target name='imap' depends='init' unless='disable-imap'
+   javac srcdir='${src}' destdir='${build}' debug='true'
+   classpath refid='inetlib.classpath'/
+   include name='gnu/inet/imap/*.java'/
+   include name='gnu/inet/util/*.java'/
+   /javac
+   /target
+
+   target name='pop3' depends='init' unless='disable-pop3'
+   javac srcdir='${src}' destdir='${build}' debug='true'
+   classpath refid='inetlib.classpath'/
+   include name='gnu/inet/pop3/*.java'/
+   include name='gnu/inet/util/*.java'/
+   /javac
+   /target
+
+   target name='nntp' depends='init' unless='disable-nntp'
+   javac srcdir='${src}' destdir='${build}' debug='true'
+   classpath refid='inetlib.classpath'/
+   include 

[pkg-java] r14067 - trunk/libgnuinet-java/debian

2011-08-08 Thread Torsten Werner
Author: twerner
Date: 2011-08-08 12:02:48 + (Mon, 08 Aug 2011)
New Revision: 14067

Modified:
   trunk/libgnuinet-java/debian/changelog
   trunk/libgnuinet-java/debian/control
Log:
* Remove Arnaud from Uploaders list.
* Remove Java runtime from Depends.

Modified: trunk/libgnuinet-java/debian/changelog
===
--- trunk/libgnuinet-java/debian/changelog  2011-08-08 12:01:09 UTC (rev 
14066)
+++ trunk/libgnuinet-java/debian/changelog  2011-08-08 12:02:48 UTC (rev 
14067)
@@ -9,8 +9,10 @@
   [ Torsten Werner ]
   * New upstream release. Add the old (but patched) build.xml to debian/
 because it is missing in the new upstream tarball.
+  * Remove Arnaud from Uploaders list.
+  * Remove Java runtime from Depends.
 
- -- Torsten Werner twer...@debian.org  Mon, 08 Aug 2011 13:52:14 +0200
+ -- Torsten Werner twer...@debian.org  Mon, 08 Aug 2011 14:00:39 +0200
 
 libgnuinet-java (1.1.1-4) unstable; urgency=low
 

Modified: trunk/libgnuinet-java/debian/control
===
--- trunk/libgnuinet-java/debian/control2011-08-08 12:01:09 UTC (rev 
14066)
+++ trunk/libgnuinet-java/debian/control2011-08-08 12:02:48 UTC (rev 
14067)
@@ -2,7 +2,7 @@
 Section: java
 Priority: optional
 Maintainer: Debian Java Maintainers 
pkg-java-maintainers@lists.alioth.debian.org
-Uploaders: Arnaud Vandyck av...@debian.org, Michael Koch konque...@gmx.de
+Uploaders: Michael Koch konque...@gmx.de
 Build-Depends-Indep: default-jdk, ant
 Build-Depends: debhelper (= 5), cdbs (= 0.4.8)
 Standards-Version: 3.8.3
@@ -12,7 +12,7 @@
 
 Package: libgnuinet-java
 Architecture: all
-Depends: ${misc:Depends}, default-jre-headless | java2-runtime-headless
+Depends: ${misc:Depends}
 Description: extension library to provide extra network protocol support
  GNU Classpath inetlib is an extension library to provide extra network
  protocol support for GNU Classpath and ClasspathX project, but it can


___
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] r14068 - trunk/libgnuinet-java/debian

2011-08-08 Thread Torsten Werner
Author: twerner
Date: 2011-08-08 15:41:25 + (Mon, 08 Aug 2011)
New Revision: 14068

Modified:
   trunk/libgnuinet-java/debian/changelog
Log:
release

Modified: trunk/libgnuinet-java/debian/changelog
===
--- trunk/libgnuinet-java/debian/changelog  2011-08-08 12:02:48 UTC (rev 
14067)
+++ trunk/libgnuinet-java/debian/changelog  2011-08-08 15:41:25 UTC (rev 
14068)
@@ -1,6 +1,5 @@
 libgnuinet-java (1.1.2-1) unstable; urgency=low
 
-  UNRELEASED
   * Team upload
 
   [ Niels Thykier ]


___
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] r14069 - in tags/libgnuinet-java: . 1.1.2-1/debian

2011-08-08 Thread Torsten Werner
Author: twerner
Date: 2011-08-08 15:42:49 + (Mon, 08 Aug 2011)
New Revision: 14069

Added:
   tags/libgnuinet-java/1.1.2-1/
   tags/libgnuinet-java/1.1.2-1/debian/build.xml
   tags/libgnuinet-java/1.1.2-1/debian/changelog
   tags/libgnuinet-java/1.1.2-1/debian/control
   tags/libgnuinet-java/1.1.2-1/debian/patches/
   tags/libgnuinet-java/1.1.2-1/debian/rules
Removed:
   tags/libgnuinet-java/1.1.2-1/debian/changelog
   tags/libgnuinet-java/1.1.2-1/debian/control
   tags/libgnuinet-java/1.1.2-1/debian/patches/
   tags/libgnuinet-java/1.1.2-1/debian/rules
Log:
[svn-buildpackage] Tagging libgnuinet-java 1.1.2-1

Copied: tags/libgnuinet-java/1.1.2-1/debian/build.xml (from rev 14066, 
trunk/libgnuinet-java/debian/build.xml)
===
--- tags/libgnuinet-java/1.1.2-1/debian/build.xml   
(rev 0)
+++ tags/libgnuinet-java/1.1.2-1/debian/build.xml   2011-08-08 15:42:49 UTC 
(rev 14069)
@@ -0,0 +1,177 @@
+!--
+$Id: build.xml,v 1.8 2005/04/23 15:09:55 dog Exp $
+(C) Copyright 2003 The Free Software Foundation
+
+This file is part of GNU inetlib.
+
+GNU inetlib is free software; you can redistribute it and/or modify it
+under the terms of the GNU General Public License as published by the
+Free Software Foundation; either version 2, or (at your option) any
+later version.
+
+GNU inetlib is distributed in the hope that it will be useful, but
+WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with GNU inetlib; see the file COPYING.  If not, write to the
+Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
+02111-1307 USA.
+--
+
+project name='mail' default='inetlib' basedir='..'
+
+   description
+   This file is provided in the event that you do not have GNU Make
+   installed.
+   /description
+
+   !-- Locations --
+   property name='src' location='source'/
+   property name='build' location='classes'/
+   property name='doc' location='doc'/
+   property name='lib' location='lib'/
+   property name='inetlib.jar' location='inetlib.jar'/
+   property name='META-INF' location='${build}/META-INF'/
+   property name='install-dir' location='/usr/local/share/java'/
+
+   path id='inetlib.classpath'
+   pathelement path='${classpath}'/
+   !-- gnu-crypto and jessie --
+   pathelement path='${install-dir}/javax-security.jar'/
+   pathelement path='${install-dir}/jsse.jar'/
+   /path
+   
+   !-- Targets --
+   target name='init'
+echoWARNING: compilation using Ant is not supported, see the 
file INSTALL for details/echo
+   tstamp/
+   mkdir dir='${build}'/
+   mkdir dir='${META-INF}'/
+   /target
+
+   !-- Compilation and creation of provider files --
+   target name='inetlib' 
depends='finger,ftp,gopher,http,smtp,imap,pop3,nntp,ldap'/
+
+   target name='http' depends='init' unless='disable-http'
+   javac srcdir='${src}' destdir='${build}' debug='true'
+   classpath refid='inetlib.classpath'/
+   include name='gnu/inet/http/*.java'/
+   include name='gnu/inet/https/*.java'/
+   include name='gnu/inet/util/*.java'/
+   /javac
+   /target
+
+   target name='ftp' depends='init' unless='disable-ftp'
+   javac srcdir='${src}' destdir='${build}' debug='true'
+   classpath refid='inetlib.classpath'/
+   include name='gnu/inet/ftp/*.java'/
+   include name='gnu/inet/util/*.java'/
+   /javac
+   /target
+
+   target name='smtp' depends='init' unless='disable-smtp'
+   javac srcdir='${src}' destdir='${build}' debug='true'
+   classpath refid='inetlib.classpath'/
+   include name='gnu/inet/smtp/*.java'/
+   include name='gnu/inet/util/*.java'/
+   /javac
+   /target
+
+   target name='imap' depends='init' unless='disable-imap'
+   javac srcdir='${src}' destdir='${build}' debug='true'
+   classpath refid='inetlib.classpath'/
+   include name='gnu/inet/imap/*.java'/
+   include name='gnu/inet/util/*.java'/
+   /javac
+   /target
+
+   target name='pop3' depends='init' unless='disable-pop3'
+   javac srcdir='${src}' destdir='${build}' debug='true'
+   classpath refid='inetlib.classpath'/
+   include name='gnu/inet/pop3/*.java'/
+   include name='gnu/inet/util/*.java'/
+   /javac
+   

Processing of libgnuinet-java_1.1.2-1_amd64.changes

2011-08-08 Thread Debian FTP Masters
libgnuinet-java_1.1.2-1_amd64.changes uploaded successfully to localhost
along with the files:
  libgnuinet-java_1.1.2-1.dsc
  libgnuinet-java_1.1.2.orig.tar.gz
  libgnuinet-java_1.1.2-1.diff.gz
  libgnuinet-java_1.1.2-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] r14070 - trunk/libgnujaf-java/debian

2011-08-08 Thread Torsten Werner
Author: twerner
Date: 2011-08-08 15:47:44 + (Mon, 08 Aug 2011)
New Revision: 14070

Modified:
   trunk/libgnujaf-java/debian/changelog
   trunk/libgnujaf-java/debian/control
Log:
* Team upload.
* Remove Arnaud from Uploaders list.
* Improve Depends.

Modified: trunk/libgnujaf-java/debian/changelog
===
--- trunk/libgnujaf-java/debian/changelog   2011-08-08 15:42:49 UTC (rev 
14069)
+++ trunk/libgnujaf-java/debian/changelog   2011-08-08 15:47:44 UTC (rev 
14070)
@@ -1,3 +1,11 @@
+libgnujaf-java (1.1.1-6) unstable; urgency=low
+
+  * Team upload.
+  * Remove Arnaud from Uploaders list.
+  * Improve Depends.
+
+ -- Torsten Werner twer...@debian.org  Mon, 08 Aug 2011 17:42:48 +0200
+
 libgnujaf-java (1.1.1-5) unstable; urgency=low
 
   [Michael Koch]

Modified: trunk/libgnujaf-java/debian/control
===
--- trunk/libgnujaf-java/debian/control 2011-08-08 15:42:49 UTC (rev 14069)
+++ trunk/libgnujaf-java/debian/control 2011-08-08 15:47:44 UTC (rev 14070)
@@ -2,7 +2,7 @@
 Section: java
 Priority: optional
 Maintainer: Debian Java Maintainers 
pkg-java-maintainers@lists.alioth.debian.org
-Uploaders: Arnaud Vandyck av...@debian.org, Michael Koch konque...@gmx.de
+Uploaders: Michael Koch konque...@gmx.de
 Build-Depends: debhelper (= 5), default-jdk
 Standards-Version: 3.8.3
 Homepage: http://savannah.gnu.org/projects/classpathx
@@ -11,7 +11,7 @@
 
 Package: libgnujaf-java
 Architecture: all
-Depends: default-jre-headless | java1-runtime-headless | java2-runtime-headless
+Depends: ${misc:Depends}
 Description: free implementation of the javabeans activation framework
  With the javabeans activation framework developper can take advantage
  of standard services to determine the type of an arbitrary piece of


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


libgnuinet-java_1.1.2-1_amd64.changes ACCEPTED into unstable

2011-08-08 Thread Debian FTP Masters



Accepted:
libgnuinet-java_1.1.2-1.diff.gz
  to main/libg/libgnuinet-java/libgnuinet-java_1.1.2-1.diff.gz
libgnuinet-java_1.1.2-1.dsc
  to main/libg/libgnuinet-java/libgnuinet-java_1.1.2-1.dsc
libgnuinet-java_1.1.2-1_all.deb
  to main/libg/libgnuinet-java/libgnuinet-java_1.1.2-1_all.deb
libgnuinet-java_1.1.2.orig.tar.gz
  to main/libg/libgnuinet-java/libgnuinet-java_1.1.2.orig.tar.gz


Override entries for your package:
libgnuinet-java_1.1.2-1.dsc - source java
libgnuinet-java_1.1.2-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] r14071 - in tags/libgnujaf-java: . 1.1.1-6/debian

2011-08-08 Thread Torsten Werner
Author: twerner
Date: 2011-08-08 15:48:46 + (Mon, 08 Aug 2011)
New Revision: 14071

Added:
   tags/libgnujaf-java/1.1.1-6/
   tags/libgnujaf-java/1.1.1-6/debian/changelog
   tags/libgnujaf-java/1.1.1-6/debian/control
Removed:
   tags/libgnujaf-java/1.1.1-6/debian/changelog
   tags/libgnujaf-java/1.1.1-6/debian/control
Log:
[svn-buildpackage] Tagging libgnujaf-java 1.1.1-6

Deleted: tags/libgnujaf-java/1.1.1-6/debian/changelog
===
--- trunk/libgnujaf-java/debian/changelog   2011-08-08 15:42:49 UTC (rev 
14069)
+++ tags/libgnujaf-java/1.1.1-6/debian/changelog2011-08-08 15:48:46 UTC 
(rev 14071)
@@ -1,85 +0,0 @@
-libgnujaf-java (1.1.1-5) unstable; urgency=low
-
-  [Michael Koch]
-  * Fixed watch file to match latest upstream release.
-
-  [Matthias Klose]
-  * (Build-)depend on default-jre/-jdk.
-  * Set java source version to 1.4.
-
-  [Onkar Shinde]
-  * Misc lintian fixes.
-
-  [Niels Thykier]
-  * Added Vcs-* fields to debian/control.
-
- -- Debian Java Maintainers pkg-java-maintainers@lists.alioth.debian.org  
Fri, 20 Nov 2009 09:21:07 +0530
-
-libgnujaf-java (1.1.1-4) unstable; urgency=low
-
-  * Use java-gcj-compat instead of kaffe.
-
- -- Michael Koch konque...@gmx.de  Sun, 17 Jun 2007 19:39:13 +0200
-
-libgnujaf-java (1.1.1-3) unstable; urgency=low
-
-  * Really added binary-arch build target
-
- -- Kalle Kivimaa kil...@debian.org  Sun, 29 Oct 2006 13:00:00 +0200
-
-libgnujaf-java (1.1.1-2) unstable; urgency=low
-
-  * Added binary-arch build target (noop) (closes: #395610)
-
- -- Kalle Kivimaa kil...@debian.org  Sat, 28 Oct 2006 08:30:00 +0300
-
-libgnujaf-java (1.1.1-1) unstable; urgency=low
-
-  * New upstream release by Sebastian Dransfeld
-sebastian.dransf...@sintef.no, many thanks to him.
-
- -- Arnaud Vandyck av...@debian.org  Mon, 11 Sep 2006 14:11:11 +
-
-libgnujaf-java (1.1-1) unstable; urgency=low
-
-  * New upstream release
-  * debian/rules(clean):
-+ removed apidoc directory and activation.so file (which is not built
-at the moment) (closes: #313089).
-+ updated VERSION to 1.1
-
- -- Arnaud Vandyck av...@debian.org  Wed,  3 Aug 2005 14:51:24 +0200
-
-libgnujaf-java (1.0-2) unstable; urgency=low
-
-  * debian/watch: added
-
- -- Arnaud Vandyck av...@debian.org  Mon, 11 Oct 2004 15:32:29 +0200
-
-libgnujaf-java (1.0-1) unstable; urgency=low
-
-  * New upstream release
-
- -- Arnaud Vandyck av...@debian.org  Tue, 13 Jul 2004 23:34:23 +0200
-
-libgnujaf-java (0.0cvs20040420-1) unstable; urgency=low
-
-  * New upstream release
-  * added javadoc generation
-
- -- Arnaud Vandyck av...@debian.org  Thu, 22 Apr 2004 16:25:07 +0200
-
-libgnujaf-java (0.0cvs20031103-2) unstable; urgency=low
-
-  * debian/control: modified build-dep-indep from jikes to jikes-classpath
-(closes: #221065). Thanks to Daniel Schepler
-schep...@math.berkeley.edu for reporting the bug.
-
- -- Arnaud Vandyck av...@debian.org  Sun, 16 Nov 2003 21:53:14 +0100
-
-libgnujaf-java (0.0cvs20031103-1) unstable; urgency=low
-
-  * Initial Release (closes: #217929).
-
- -- Arnaud Vandyck av...@debian.org  Mon,  3 Nov 2003 18:16:13 +0100
-

Copied: tags/libgnujaf-java/1.1.1-6/debian/changelog (from rev 14070, 
trunk/libgnujaf-java/debian/changelog)
===
--- tags/libgnujaf-java/1.1.1-6/debian/changelog
(rev 0)
+++ tags/libgnujaf-java/1.1.1-6/debian/changelog2011-08-08 15:48:46 UTC 
(rev 14071)
@@ -0,0 +1,93 @@
+libgnujaf-java (1.1.1-6) unstable; urgency=low
+
+  * Team upload.
+  * Remove Arnaud from Uploaders list.
+  * Improve Depends.
+
+ -- Torsten Werner twer...@debian.org  Mon, 08 Aug 2011 17:42:48 +0200
+
+libgnujaf-java (1.1.1-5) unstable; urgency=low
+
+  [Michael Koch]
+  * Fixed watch file to match latest upstream release.
+
+  [Matthias Klose]
+  * (Build-)depend on default-jre/-jdk.
+  * Set java source version to 1.4.
+
+  [Onkar Shinde]
+  * Misc lintian fixes.
+
+  [Niels Thykier]
+  * Added Vcs-* fields to debian/control.
+
+ -- Debian Java Maintainers pkg-java-maintainers@lists.alioth.debian.org  
Fri, 20 Nov 2009 09:21:07 +0530
+
+libgnujaf-java (1.1.1-4) unstable; urgency=low
+
+  * Use java-gcj-compat instead of kaffe.
+
+ -- Michael Koch konque...@gmx.de  Sun, 17 Jun 2007 19:39:13 +0200
+
+libgnujaf-java (1.1.1-3) unstable; urgency=low
+
+  * Really added binary-arch build target
+
+ -- Kalle Kivimaa kil...@debian.org  Sun, 29 Oct 2006 13:00:00 +0200
+
+libgnujaf-java (1.1.1-2) unstable; urgency=low
+
+  * Added binary-arch build target (noop) (closes: #395610)
+
+ -- Kalle Kivimaa kil...@debian.org  Sat, 28 Oct 2006 08:30:00 +0300
+
+libgnujaf-java (1.1.1-1) unstable; urgency=low
+
+  * New upstream release by Sebastian Dransfeld
+sebastian.dransf...@sintef.no, many thanks to him.
+
+ -- Arnaud Vandyck av...@debian.org  Mon, 11 Sep 2006 14:11:11 +
+
+libgnujaf-java (1.1-1) unstable; urgency=low

[pkg-java] r14072 - trunk/libgnujmi-java/debian

2011-08-08 Thread Torsten Werner
Author: twerner
Date: 2011-08-08 15:50:27 + (Mon, 08 Aug 2011)
New Revision: 14072

Modified:
   trunk/libgnujmi-java/debian/changelog
   trunk/libgnujmi-java/debian/control
Log:
* QA upload.
* Orphaning package.

Modified: trunk/libgnujmi-java/debian/changelog
===
--- trunk/libgnujmi-java/debian/changelog   2011-08-08 15:48:46 UTC (rev 
14071)
+++ trunk/libgnujmi-java/debian/changelog   2011-08-08 15:50:27 UTC (rev 
14072)
@@ -1,3 +1,10 @@
+libgnujmi-java (0.0cvs20050116-4) unstable; urgency=low
+
+  * QA upload.
+  * Orphaning package.
+
+ -- Torsten Werner twer...@debian.org  Mon, 08 Aug 2011 17:48:10 +0200
+
 libgnujmi-java (0.0cvs20050116-3) unstable; urgency=low
 
   * Replaced (Build-)Depends on kaffe/sablevm/fastjar with default-java.

Modified: trunk/libgnujmi-java/debian/control
===
--- trunk/libgnujmi-java/debian/control 2011-08-08 15:48:46 UTC (rev 14071)
+++ trunk/libgnujmi-java/debian/control 2011-08-08 15:50:27 UTC (rev 14072)
@@ -1,8 +1,7 @@
 Source: libgnujmi-java
 Section: java
 Priority: optional
-Maintainer: Debian Java Maintainers 
pkg-java-maintainers@lists.alioth.debian.org
-Uploaders: Arnaud Vandyck av...@debian.org, Niels Thykier ni...@thykier.net
+Maintainer: Debian QA Group packa...@qa.debian.org
 Build-Depends: debhelper (= 7.0)
 Build-Depends-Indep: default-jdk
 Standards-Version: 3.8.3


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


Processing of libgnujaf-java_1.1.1-6_amd64.changes

2011-08-08 Thread Debian FTP Masters
libgnujaf-java_1.1.1-6_amd64.changes uploaded successfully to localhost
along with the files:
  libgnujaf-java_1.1.1-6.dsc
  libgnujaf-java_1.1.1-6.diff.gz
  libgnujaf-java_1.1.1-6_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] r14073 - in tags/libgnujmi-java: . 0.0cvs20050116-4/debian

2011-08-08 Thread Torsten Werner
Author: twerner
Date: 2011-08-08 15:51:37 + (Mon, 08 Aug 2011)
New Revision: 14073

Added:
   tags/libgnujmi-java/0.0cvs20050116-4/
   tags/libgnujmi-java/0.0cvs20050116-4/debian/changelog
   tags/libgnujmi-java/0.0cvs20050116-4/debian/control
Removed:
   tags/libgnujmi-java/0.0cvs20050116-4/debian/changelog
   tags/libgnujmi-java/0.0cvs20050116-4/debian/control
Log:
[svn-buildpackage] Tagging libgnujmi-java 0.0cvs20050116-4

Deleted: tags/libgnujmi-java/0.0cvs20050116-4/debian/changelog
===
--- trunk/libgnujmi-java/debian/changelog   2011-08-08 15:48:46 UTC (rev 
14071)
+++ tags/libgnujmi-java/0.0cvs20050116-4/debian/changelog   2011-08-08 
15:51:37 UTC (rev 14073)
@@ -1,28 +0,0 @@
-libgnujmi-java (0.0cvs20050116-3) unstable; urgency=low
-
-  * Replaced (Build-)Depends on kaffe/sablevm/fastjar with default-java.
-  * Bumped Standards-Version to 3.8.3
-- Added Homepage field and removed it from the description.
-  * Bumped debhelper compat to 7.
-  * Removed the watch-file, since the original download place did not
-have it, there were no alternative download spots and no changes
-in the upstream CVS for the past 4 years. (Closes: #449840)
-  * Built the javadoc and put it in a separate package.
-  * Added some missing copyright information.
-  * Made the package depend on ${misc:Depends}.
-  * Added Vcs-* headers.
-
- -- Niels Thykier ni...@thykier.net  Sun, 27 Sep 2009 22:40:08 +0200
-
-libgnujmi-java (0.0cvs20050116-2) unstable; urgency=low
-
-  * Added binary-arch build target (noop) (closes: #395611)
-
- -- Kalle Kivimaa kil...@debian.org  Sat, 28 Oct 2006 08:30:00 +0300
-
-libgnujmi-java (0.0cvs20050116-1) unstable; urgency=low
-
-  * Initial Release (closes: #290763).
-
- -- Arnaud Vandyck av...@debian.org  Sun, 16 Jan 2005 16:20:08 +0100
-

Copied: tags/libgnujmi-java/0.0cvs20050116-4/debian/changelog (from rev 14072, 
trunk/libgnujmi-java/debian/changelog)
===
--- tags/libgnujmi-java/0.0cvs20050116-4/debian/changelog   
(rev 0)
+++ tags/libgnujmi-java/0.0cvs20050116-4/debian/changelog   2011-08-08 
15:51:37 UTC (rev 14073)
@@ -0,0 +1,35 @@
+libgnujmi-java (0.0cvs20050116-4) unstable; urgency=low
+
+  * QA upload.
+  * Orphaning package.
+
+ -- Torsten Werner twer...@debian.org  Mon, 08 Aug 2011 17:48:10 +0200
+
+libgnujmi-java (0.0cvs20050116-3) unstable; urgency=low
+
+  * Replaced (Build-)Depends on kaffe/sablevm/fastjar with default-java.
+  * Bumped Standards-Version to 3.8.3
+- Added Homepage field and removed it from the description.
+  * Bumped debhelper compat to 7.
+  * Removed the watch-file, since the original download place did not
+have it, there were no alternative download spots and no changes
+in the upstream CVS for the past 4 years. (Closes: #449840)
+  * Built the javadoc and put it in a separate package.
+  * Added some missing copyright information.
+  * Made the package depend on ${misc:Depends}.
+  * Added Vcs-* headers.
+
+ -- Niels Thykier ni...@thykier.net  Sun, 27 Sep 2009 22:40:08 +0200
+
+libgnujmi-java (0.0cvs20050116-2) unstable; urgency=low
+
+  * Added binary-arch build target (noop) (closes: #395611)
+
+ -- Kalle Kivimaa kil...@debian.org  Sat, 28 Oct 2006 08:30:00 +0300
+
+libgnujmi-java (0.0cvs20050116-1) unstable; urgency=low
+
+  * Initial Release (closes: #290763).
+
+ -- Arnaud Vandyck av...@debian.org  Sun, 16 Jan 2005 16:20:08 +0100
+

Deleted: tags/libgnujmi-java/0.0cvs20050116-4/debian/control
===
--- trunk/libgnujmi-java/debian/control 2011-08-08 15:48:46 UTC (rev 14071)
+++ tags/libgnujmi-java/0.0cvs20050116-4/debian/control 2011-08-08 15:51:37 UTC 
(rev 14073)
@@ -1,39 +0,0 @@
-Source: libgnujmi-java
-Section: java
-Priority: optional
-Maintainer: Debian Java Maintainers 
pkg-java-maintainers@lists.alioth.debian.org
-Uploaders: Arnaud Vandyck av...@debian.org, Niels Thykier ni...@thykier.net
-Build-Depends: debhelper (= 7.0)
-Build-Depends-Indep: default-jdk
-Standards-Version: 3.8.3
-Homepage: http://savannah.gnu.org/projects/classpathx
-Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/libgnujmi-java
-Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/libgnujmi-java/
-
-Package: libgnujmi-java
-Architecture: all
-Depends: default-jre-headless | java1-runtime-headless | 
java2-runtime-headless,
- ${misc:Depends}
-Suggests: libgnujmi-java-doc
-Description: free implementation of the java metadata interface
- GNU JMI is a free implementation of the JSR-40 The JavaTM Metadata
- Interface (JMI).
- .
- It consist of an API to solve the problem of incompatible metadata.
- . 
- This is the classpathx free implementation of the library.
-
-Package: libgnujmi-java-doc
-Architecture: all
-Section: doc
-Depends: ${misc:Depends}
-Suggests: libgnujmi-java
-Description: free implementation of the java 

[pkg-java] r14074 - trunk/libgrinvin-factories-java/debian

2011-08-08 Thread Torsten Werner
Author: twerner
Date: 2011-08-08 15:55:47 + (Mon, 08 Aug 2011)
New Revision: 14074

Modified:
   trunk/libgrinvin-factories-java/debian/changelog
   trunk/libgrinvin-factories-java/debian/control
Log:
* QA upload.
* Orphaning package.

Modified: trunk/libgrinvin-factories-java/debian/changelog
===
--- trunk/libgrinvin-factories-java/debian/changelog2011-08-08 15:51:37 UTC 
(rev 14073)
+++ trunk/libgrinvin-factories-java/debian/changelog2011-08-08 15:55:47 UTC 
(rev 14074)
@@ -1,3 +1,10 @@
+libgrinvin-factories-java (1.2-2) unstable; urgency=low
+
+  * QA upload.
+  * Orphaning package.
+
+ -- Torsten Werner twer...@debian.org  Mon, 08 Aug 2011 17:53:46 +0200
+
 libgrinvin-factories-java (1.2-1) unstable; urgency=low
 
   * New upstream release

Modified: trunk/libgrinvin-factories-java/debian/control
===
--- trunk/libgrinvin-factories-java/debian/control  2011-08-08 15:51:37 UTC 
(rev 14073)
+++ trunk/libgrinvin-factories-java/debian/control  2011-08-08 15:55:47 UTC 
(rev 14074)
@@ -1,8 +1,7 @@
 Source: libgrinvin-factories-java
 Section: contrib/libs
 Priority: optional
-Maintainer: Debian Java Maintainers 
pkg-java-maintainers@lists.alioth.debian.org
-Uploaders: Adriaan Peeters apeet...@lashout.net
+Maintainer: Debian QA Group packa...@qa.debian.org
 Homepage: http://www.grinvin.org/
 Build-Depends: debhelper ( 5.0.0), cdbs, ant, java-gcj-compat-dev
 Build-Depends-Indep: libgrinvin-core-java (= 1.2)


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


libgnujaf-java_1.1.1-6_amd64.changes ACCEPTED into unstable

2011-08-08 Thread Debian FTP Masters



Accepted:
libgnujaf-java_1.1.1-6.diff.gz
  to main/libg/libgnujaf-java/libgnujaf-java_1.1.1-6.diff.gz
libgnujaf-java_1.1.1-6.dsc
  to main/libg/libgnujaf-java/libgnujaf-java_1.1.1-6.dsc
libgnujaf-java_1.1.1-6_all.deb
  to main/libg/libgnujaf-java/libgnujaf-java_1.1.1-6_all.deb


Override entries for your package:
libgnujaf-java_1.1.1-6.dsc - source java
libgnujaf-java_1.1.1-6_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] r14075 - in tags/libgrinvin-factories-java: . 1.2-2/debian

2011-08-08 Thread Torsten Werner
Author: twerner
Date: 2011-08-08 16:07:10 + (Mon, 08 Aug 2011)
New Revision: 14075

Added:
   tags/libgrinvin-factories-java/1.2-2/
   tags/libgrinvin-factories-java/1.2-2/debian/changelog
   tags/libgrinvin-factories-java/1.2-2/debian/control
Removed:
   tags/libgrinvin-factories-java/1.2-2/debian/changelog
   tags/libgrinvin-factories-java/1.2-2/debian/control
Log:
[svn-buildpackage] Tagging libgrinvin-factories-java 1.2-2

Deleted: tags/libgrinvin-factories-java/1.2-2/debian/changelog
===
--- trunk/libgrinvin-factories-java/debian/changelog2011-08-08 15:51:37 UTC 
(rev 14073)
+++ tags/libgrinvin-factories-java/1.2-2/debian/changelog   2011-08-08 
16:07:10 UTC (rev 14075)
@@ -1,24 +0,0 @@
-libgrinvin-factories-java (1.2-1) unstable; urgency=low
-
-  * New upstream release
-  * debian/control:
-- Bumped Standards-Version to 3.8.0, no changes needed
-- Updated Depends and Build-Depends to libgrinvin-core-java (= 1.2)
-  * debian/changelog:
-- Updated copyright years
-
- -- Adriaan Peeters apeet...@lashout.net  Thu, 02 Oct 2008 10:11:25 +0200
-
-libgrinvin-factories-java (1.0.1-1) unstable; urgency=low
-
-  * New upstream release
-  * Added debian/watch file
-  * debian/control: Bumped Standards-Version to 3.7.3, no changes needed
-
- -- Adriaan Peeters apeet...@lashout.net  Mon, 26 May 2008 15:13:38 +0200
-
-libgrinvin-factories-java (1.0-1) unstable; urgency=low
-
-  * Initial release
-
- -- Adriaan Peeters apeet...@lashout.net  Tue, 20 Nov 2007 17:55:28 +0100

Copied: tags/libgrinvin-factories-java/1.2-2/debian/changelog (from rev 14074, 
trunk/libgrinvin-factories-java/debian/changelog)
===
--- tags/libgrinvin-factories-java/1.2-2/debian/changelog   
(rev 0)
+++ tags/libgrinvin-factories-java/1.2-2/debian/changelog   2011-08-08 
16:07:10 UTC (rev 14075)
@@ -0,0 +1,31 @@
+libgrinvin-factories-java (1.2-2) unstable; urgency=low
+
+  * QA upload.
+  * Orphaning package.
+
+ -- Torsten Werner twer...@debian.org  Mon, 08 Aug 2011 17:53:46 +0200
+
+libgrinvin-factories-java (1.2-1) unstable; urgency=low
+
+  * New upstream release
+  * debian/control:
+- Bumped Standards-Version to 3.8.0, no changes needed
+- Updated Depends and Build-Depends to libgrinvin-core-java (= 1.2)
+  * debian/changelog:
+- Updated copyright years
+
+ -- Adriaan Peeters apeet...@lashout.net  Thu, 02 Oct 2008 10:11:25 +0200
+
+libgrinvin-factories-java (1.0.1-1) unstable; urgency=low
+
+  * New upstream release
+  * Added debian/watch file
+  * debian/control: Bumped Standards-Version to 3.7.3, no changes needed
+
+ -- Adriaan Peeters apeet...@lashout.net  Mon, 26 May 2008 15:13:38 +0200
+
+libgrinvin-factories-java (1.0-1) unstable; urgency=low
+
+  * Initial release
+
+ -- Adriaan Peeters apeet...@lashout.net  Tue, 20 Nov 2007 17:55:28 +0100

Deleted: tags/libgrinvin-factories-java/1.2-2/debian/control
===
--- trunk/libgrinvin-factories-java/debian/control  2011-08-08 15:51:37 UTC 
(rev 14073)
+++ tags/libgrinvin-factories-java/1.2-2/debian/control 2011-08-08 16:07:10 UTC 
(rev 14075)
@@ -1,22 +0,0 @@
-Source: libgrinvin-factories-java
-Section: contrib/libs
-Priority: optional
-Maintainer: Debian Java Maintainers 
pkg-java-maintainers@lists.alioth.debian.org
-Uploaders: Adriaan Peeters apeet...@lashout.net
-Homepage: http://www.grinvin.org/
-Build-Depends: debhelper ( 5.0.0), cdbs, ant, java-gcj-compat-dev
-Build-Depends-Indep: libgrinvin-core-java (= 1.2)
-Vcs-Svn: svn://svn.debian.org/pkg-java/trunk/libgrinvin-factories-java/
-Vcs-Browser: 
http://svn.debian.org/wsvn/pkg-java/trunk/libgrinvin-factories-java/
-Standards-Version: 3.8.0
-
-Package: libgrinvin-factories-java
-Architecture: all
-Depends: java-gcj-compat | java1-runtime | java2-runtime, libgrinvin-core-java 
(= 1.2)
-Description: interactive software package for studying graphs (graph factories)
- GrInvIn is a software package for studying graphs, their properties
- (invariants) and the relations between these properties. It has been designed
- to optimally support the user in learning graph theory by means of examples
- and by experimenting with graphs and their properties.
- .
- This package contains the graph factory libraries.

Copied: tags/libgrinvin-factories-java/1.2-2/debian/control (from rev 14074, 
trunk/libgrinvin-factories-java/debian/control)
===
--- tags/libgrinvin-factories-java/1.2-2/debian/control 
(rev 0)
+++ tags/libgrinvin-factories-java/1.2-2/debian/control 2011-08-08 16:07:10 UTC 
(rev 14075)
@@ -0,0 +1,21 @@
+Source: libgrinvin-factories-java
+Section: contrib/libs
+Priority: optional
+Maintainer: Debian QA Group packa...@qa.debian.org
+Homepage: http://www.grinvin.org/
+Build-Depends: debhelper ( 

[pkg-java] r14076 - trunk/libgrinvin-generators-java/debian

2011-08-08 Thread Torsten Werner
Author: twerner
Date: 2011-08-08 16:09:46 + (Mon, 08 Aug 2011)
New Revision: 14076

Modified:
   trunk/libgrinvin-generators-java/debian/changelog
   trunk/libgrinvin-generators-java/debian/control
Log:
* QA upload.
* Orphaning package.

Modified: trunk/libgrinvin-generators-java/debian/changelog
===
--- trunk/libgrinvin-generators-java/debian/changelog   2011-08-08 16:07:10 UTC 
(rev 14075)
+++ trunk/libgrinvin-generators-java/debian/changelog   2011-08-08 16:09:46 UTC 
(rev 14076)
@@ -1,3 +1,10 @@
+libgrinvin-generators-java (1.0.1-2) unstable; urgency=low
+
+  * QA upload.
+  * Orphaning package.
+
+ -- Torsten Werner twer...@debian.org  Mon, 08 Aug 2011 18:07:48 +0200
+
 libgrinvin-generators-java (1.0.1-1) unstable; urgency=low
 
   * Initial release

Modified: trunk/libgrinvin-generators-java/debian/control
===
--- trunk/libgrinvin-generators-java/debian/control 2011-08-08 16:07:10 UTC 
(rev 14075)
+++ trunk/libgrinvin-generators-java/debian/control 2011-08-08 16:09:46 UTC 
(rev 14076)
@@ -1,8 +1,7 @@
 Source: libgrinvin-generators-java
 Section: contrib/libs
 Priority: optional
-Maintainer: Debian Java Maintainers 
pkg-java-maintainers@lists.alioth.debian.org
-Uploaders: Adriaan Peeters apeet...@lashout.net
+Maintainer: Debian QA Group packa...@qa.debian.org
 Homepage: http://www.grinvin.org/
 Build-Depends: debhelper ( 5.0.0), cdbs, ant, java-gcj-compat-dev
 Build-Depends-Indep: libgrinvin-core-java (= 1.2)


___
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] r14077 - old trunk

2011-08-08 Thread Torsten Werner
Author: twerner
Date: 2011-08-08 16:10:31 + (Mon, 08 Aug 2011)
New Revision: 14077

Added:
   old/libgnujmi-java/
Removed:
   trunk/libgnujmi-java/
Log:
orphaning package


___
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] r14078 - old trunk

2011-08-08 Thread Torsten Werner
Author: twerner
Date: 2011-08-08 16:11:01 + (Mon, 08 Aug 2011)
New Revision: 14078

Added:
   old/libgrinvin-factories-java/
Removed:
   trunk/libgrinvin-factories-java/
Log:
orphaning package


___
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] r14079 - in tags/libgrinvin-generators-java: . 1.0.1-2/debian

2011-08-08 Thread Torsten Werner
Author: twerner
Date: 2011-08-08 16:12:19 + (Mon, 08 Aug 2011)
New Revision: 14079

Added:
   tags/libgrinvin-generators-java/1.0.1-2/
   tags/libgrinvin-generators-java/1.0.1-2/debian/changelog
   tags/libgrinvin-generators-java/1.0.1-2/debian/control
Removed:
   tags/libgrinvin-generators-java/1.0.1-2/debian/changelog
   tags/libgrinvin-generators-java/1.0.1-2/debian/control
Log:
[svn-buildpackage] Tagging libgrinvin-generators-java 1.0.1-2

Deleted: tags/libgrinvin-generators-java/1.0.1-2/debian/changelog
===
--- trunk/libgrinvin-generators-java/debian/changelog   2011-08-08 16:07:10 UTC 
(rev 14075)
+++ tags/libgrinvin-generators-java/1.0.1-2/debian/changelog2011-08-08 
16:12:19 UTC (rev 14079)
@@ -1,5 +0,0 @@
-libgrinvin-generators-java (1.0.1-1) unstable; urgency=low
-
-  * Initial release
-
- -- Adriaan Peeters apeet...@lashout.net  Thu, 02 Oct 2008 10:38:50 +0200

Copied: tags/libgrinvin-generators-java/1.0.1-2/debian/changelog (from rev 
14076, trunk/libgrinvin-generators-java/debian/changelog)
===
--- tags/libgrinvin-generators-java/1.0.1-2/debian/changelog
(rev 0)
+++ tags/libgrinvin-generators-java/1.0.1-2/debian/changelog2011-08-08 
16:12:19 UTC (rev 14079)
@@ -0,0 +1,12 @@
+libgrinvin-generators-java (1.0.1-2) unstable; urgency=low
+
+  * QA upload.
+  * Orphaning package.
+
+ -- Torsten Werner twer...@debian.org  Mon, 08 Aug 2011 18:07:48 +0200
+
+libgrinvin-generators-java (1.0.1-1) unstable; urgency=low
+
+  * Initial release
+
+ -- Adriaan Peeters apeet...@lashout.net  Thu, 02 Oct 2008 10:38:50 +0200

Deleted: tags/libgrinvin-generators-java/1.0.1-2/debian/control
===
--- trunk/libgrinvin-generators-java/debian/control 2011-08-08 16:07:10 UTC 
(rev 14075)
+++ tags/libgrinvin-generators-java/1.0.1-2/debian/control  2011-08-08 
16:12:19 UTC (rev 14079)
@@ -1,22 +0,0 @@
-Source: libgrinvin-generators-java
-Section: contrib/libs
-Priority: optional
-Maintainer: Debian Java Maintainers 
pkg-java-maintainers@lists.alioth.debian.org
-Uploaders: Adriaan Peeters apeet...@lashout.net
-Homepage: http://www.grinvin.org/
-Build-Depends: debhelper ( 5.0.0), cdbs, ant, java-gcj-compat-dev
-Build-Depends-Indep: libgrinvin-core-java (= 1.2)
-Vcs-Svn: svn://svn.debian.org/pkg-java/trunk/libgrinvin-generators-java/
-Vcs-Browser: 
http://svn.debian.org/wsvn/pkg-java/trunk/libgrinvin-generators-java/
-Standards-Version: 3.8.0
-
-Package: libgrinvin-generators-java
-Architecture: all
-Depends: java-gcj-compat | java1-runtime | java2-runtime, libgrinvin-core-java 
(= 1.2)
-Description: interactive software package for studying graphs (graph 
generators)
- GrInvIn is a software package for studying graphs, their properties
- (invariants) and the relations between these properties. It has been designed
- to optimally support the user in learning graph theory by means of examples
- and by experimenting with graphs and their properties.
- .
- This package contains the graph generator libraries.

Copied: tags/libgrinvin-generators-java/1.0.1-2/debian/control (from rev 14076, 
trunk/libgrinvin-generators-java/debian/control)
===
--- tags/libgrinvin-generators-java/1.0.1-2/debian/control  
(rev 0)
+++ tags/libgrinvin-generators-java/1.0.1-2/debian/control  2011-08-08 
16:12:19 UTC (rev 14079)
@@ -0,0 +1,21 @@
+Source: libgrinvin-generators-java
+Section: contrib/libs
+Priority: optional
+Maintainer: Debian QA Group packa...@qa.debian.org
+Homepage: http://www.grinvin.org/
+Build-Depends: debhelper ( 5.0.0), cdbs, ant, java-gcj-compat-dev
+Build-Depends-Indep: libgrinvin-core-java (= 1.2)
+Vcs-Svn: svn://svn.debian.org/pkg-java/trunk/libgrinvin-generators-java/
+Vcs-Browser: 
http://svn.debian.org/wsvn/pkg-java/trunk/libgrinvin-generators-java/
+Standards-Version: 3.8.0
+
+Package: libgrinvin-generators-java
+Architecture: all
+Depends: java-gcj-compat | java1-runtime | java2-runtime, libgrinvin-core-java 
(= 1.2)
+Description: interactive software package for studying graphs (graph 
generators)
+ GrInvIn is a software package for studying graphs, their properties
+ (invariants) and the relations between these properties. It has been designed
+ to optimally support the user in learning graph theory by means of examples
+ and by experimenting with graphs and their properties.
+ .
+ This package contains the graph generator libraries.


___
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] r14080 - old trunk

2011-08-08 Thread Torsten Werner
Author: twerner
Date: 2011-08-08 16:13:11 + (Mon, 08 Aug 2011)
New Revision: 14080

Added:
   old/libgrinvin-generators-java/
Removed:
   trunk/libgrinvin-generators-java/
Log:
orphaning package


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


Bug#637118: O: libgnujmi-java

2011-08-08 Thread Torsten Werner
Package: wnpp
Severity: normal

Hi,

I am orphaning the package in behalf of the Java team because:
- it hasn't been maintained for a long time
- it has no reverse dependencies
- it has a low popcon value
Feel free to re-introduce it to the team if want to actively maintain it.

Torsten



__
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#637123: O: libgrinvin-factories-java

2011-08-08 Thread Torsten Werner
Package: wnpp
Severity: normal

Hi,

I am orphaning the package in behalf of the Java team because:
- it hasn't been maintained for a long time
- it has no (non-orphaned) reverse dependencies
- it has a low popcon value
Feel free to re-introduce it to the team if want to actively maintain it.

Torsten



__
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#637124: O: libgrinvin-generators-java

2011-08-08 Thread Torsten Werner
Package: wnpp
Severity: normal

Hi,

I am orphaning the package in behalf of the Java team because:
- it hasn't been maintained for a long time
- it has no (non-orphaned) reverse dependencies
- it has a low popcon value
Feel free to re-introduce it to the team if want to actively maintain it.

Torsten



__
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] eclipse - Powerful IDE written in java - Debian package. branch, master, updated. debian/3.6.2-exp-1-46-ga2ce402

2011-08-08 Thread Niels Thykier
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project eclipse - Powerful IDE written in java - Debian package..

The branch, master has been updated
   via  a2ce4020c2365efdc5a45c1579d8ec17b0fd6c0b (commit)
  from  9b8f8f4ac53cbdc90b9caa3f177e9774984ae800 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit a2ce4020c2365efdc5a45c1579d8ec17b0fd6c0b
Author: Niels Thykier ni...@thykier.net
Date:   Mon Aug 8 18:23:41 2011 +0200

Enabled the osgi-services.patch

---

Summary of changes:
 debian/patches/osgi-services.patch |6 --
 debian/patches/series  |2 +-
 2 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/debian/patches/osgi-services.patch 
b/debian/patches/osgi-services.patch
index f4a2f12..a378a9d 100644
--- a/debian/patches/osgi-services.patch
+++ b/debian/patches/osgi-services.patch
@@ -24,12 +24,12 @@ Applied-Upstream: no
file name=org.eclipse.update.core /
 --- /dev/null
 +++ b/patches/osgi-services-build.patch
-@@ -0,0 +1,21 @@
+@@ -0,0 +1,23 @@
 +diff --git a/eclipse/plugins/org.eclipse.osgi.services/build.properties 
b/eclipse/plugins/org.eclipse.osgi.services/build.properties
 +index 7962dc5..ca55afb 100644
 +--- a/plugins/org.eclipse.osgi.services/build.properties
  b/plugins/org.eclipse.osgi.services/build.properties
-+@@ -11,11 +11,10 @@
++@@ -11,11 +11,12 @@
 + bin.includes = plugin.properties,\
 +about.html,\
 +META-INF/,\
@@ -44,6 +44,8 @@ Applied-Upstream: no
 +-   about_files/
 +-source.. = .
 ++source.. = src/
+++javacSource=1.5
+++javacTarget=1.5
 + output.. = .
 +-customBuildCallbacks=customBuildCallbacks.xml
 --- a/build.xml
diff --git a/debian/patches/series b/debian/patches/series
index ce2e209..098e590 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -10,6 +10,6 @@ remove-unnecessary-files.patch
 strip-destDir.patch
 clean-source.patch
 ### Needs updated eclipse-build-generatedScripts.tar.bz2
-#osgi-services.patch
+osgi-services.patch
 #eclipse-build-generatedScripts.patch
 debian-load-internal-swt.patch


hooks/post-receive
-- 
eclipse - Powerful IDE written in java - Debian package.

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


eclipselink 2.1.3-1 MIGRATED to testing

2011-08-08 Thread Debian testing watch
FYI: The status of the eclipselink source package
in Debian's testing distribution has changed.

  Previous version: 2.1.0-1
  Current version:  2.1.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.


annotation-indexer 1.2-1 MIGRATED to testing

2011-08-08 Thread Debian testing watch
FYI: The status of the annotation-indexer source package
in Debian's testing distribution has changed.

  Previous version: (not in testing)
  Current version:  1.2-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.


[pkg-java] r14081 - trunk/libgrinvin-graphs-java/debian

2011-08-08 Thread Torsten Werner
Author: twerner
Date: 2011-08-08 17:30:55 + (Mon, 08 Aug 2011)
New Revision: 14081

Modified:
   trunk/libgrinvin-graphs-java/debian/changelog
   trunk/libgrinvin-graphs-java/debian/control
Log:
* QA upload.
* Orphaning package.

Modified: trunk/libgrinvin-graphs-java/debian/changelog
===
--- trunk/libgrinvin-graphs-java/debian/changelog   2011-08-08 16:13:11 UTC 
(rev 14080)
+++ trunk/libgrinvin-graphs-java/debian/changelog   2011-08-08 17:30:55 UTC 
(rev 14081)
@@ -1,3 +1,10 @@
+libgrinvin-graphs-java (1.2-2) unstable; urgency=low
+
+  * QA upload.
+  * Orphaning package.
+
+ -- Torsten Werner twer...@debian.org  Mon, 08 Aug 2011 19:29:43 +0200
+
 libgrinvin-graphs-java (1.2-1) unstable; urgency=low
 
   * New upstream relesase

Modified: trunk/libgrinvin-graphs-java/debian/control
===
--- trunk/libgrinvin-graphs-java/debian/control 2011-08-08 16:13:11 UTC (rev 
14080)
+++ trunk/libgrinvin-graphs-java/debian/control 2011-08-08 17:30:55 UTC (rev 
14081)
@@ -1,8 +1,7 @@
 Source: libgrinvin-graphs-java
 Section: contrib/libs
 Priority: optional
-Maintainer: Debian Java Maintainers 
pkg-java-maintainers@lists.alioth.debian.org
-Uploaders: Adriaan Peeters apeet...@lashout.net
+Maintainer: Debian QA Group packa...@qa.debian.org
 Homepage: http://www.grinvin.org/
 Build-Depends: debhelper ( 5.0.0), cdbs, ant, java-gcj-compat-dev
 Vcs-Svn: svn://svn.debian.org/pkg-java/trunk/libgrinvin-graphs-java/


___
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] r14082 - in tags/libgrinvin-graphs-java: . 1.2-2/debian

2011-08-08 Thread Torsten Werner
Author: twerner
Date: 2011-08-08 17:33:18 + (Mon, 08 Aug 2011)
New Revision: 14082

Added:
   tags/libgrinvin-graphs-java/1.2-2/
   tags/libgrinvin-graphs-java/1.2-2/debian/changelog
   tags/libgrinvin-graphs-java/1.2-2/debian/control
Removed:
   tags/libgrinvin-graphs-java/1.2-2/debian/changelog
   tags/libgrinvin-graphs-java/1.2-2/debian/control
Log:
[svn-buildpackage] Tagging libgrinvin-graphs-java 1.2-2

Deleted: tags/libgrinvin-graphs-java/1.2-2/debian/changelog
===
--- trunk/libgrinvin-graphs-java/debian/changelog   2011-08-08 16:13:11 UTC 
(rev 14080)
+++ tags/libgrinvin-graphs-java/1.2-2/debian/changelog  2011-08-08 17:33:18 UTC 
(rev 14082)
@@ -1,18 +0,0 @@
-libgrinvin-graphs-java (1.2-1) unstable; urgency=low
-
-  * New upstream relesase
-  * Added debian/watch file
-  * debian/control:
-- Bumped Standards-Version to 3.8.0, no changes needed
-  * debian/copyright:
-- Updated copyright years
-  * debian/build.xml:
-- Updated to ship all files
-
- -- Adriaan Peeters apeet...@lashout.net  Wed, 01 Oct 2008 23:16:57 +0200
-
-libgrinvin-graphs-java (1.0-1) unstable; urgency=low
-
-  * Initial release
-
- -- Adriaan Peeters apeet...@lashout.net  Tue, 20 Nov 2007 21:03:42 +0100

Copied: tags/libgrinvin-graphs-java/1.2-2/debian/changelog (from rev 14081, 
trunk/libgrinvin-graphs-java/debian/changelog)
===
--- tags/libgrinvin-graphs-java/1.2-2/debian/changelog  
(rev 0)
+++ tags/libgrinvin-graphs-java/1.2-2/debian/changelog  2011-08-08 17:33:18 UTC 
(rev 14082)
@@ -0,0 +1,25 @@
+libgrinvin-graphs-java (1.2-2) unstable; urgency=low
+
+  * QA upload.
+  * Orphaning package.
+
+ -- Torsten Werner twer...@debian.org  Mon, 08 Aug 2011 19:29:43 +0200
+
+libgrinvin-graphs-java (1.2-1) unstable; urgency=low
+
+  * New upstream relesase
+  * Added debian/watch file
+  * debian/control:
+- Bumped Standards-Version to 3.8.0, no changes needed
+  * debian/copyright:
+- Updated copyright years
+  * debian/build.xml:
+- Updated to ship all files
+
+ -- Adriaan Peeters apeet...@lashout.net  Wed, 01 Oct 2008 23:16:57 +0200
+
+libgrinvin-graphs-java (1.0-1) unstable; urgency=low
+
+  * Initial release
+
+ -- Adriaan Peeters apeet...@lashout.net  Tue, 20 Nov 2007 21:03:42 +0100

Deleted: tags/libgrinvin-graphs-java/1.2-2/debian/control
===
--- trunk/libgrinvin-graphs-java/debian/control 2011-08-08 16:13:11 UTC (rev 
14080)
+++ tags/libgrinvin-graphs-java/1.2-2/debian/control2011-08-08 17:33:18 UTC 
(rev 14082)
@@ -1,21 +0,0 @@
-Source: libgrinvin-graphs-java
-Section: contrib/libs
-Priority: optional
-Maintainer: Debian Java Maintainers 
pkg-java-maintainers@lists.alioth.debian.org
-Uploaders: Adriaan Peeters apeet...@lashout.net
-Homepage: http://www.grinvin.org/
-Build-Depends: debhelper ( 5.0.0), cdbs, ant, java-gcj-compat-dev
-Vcs-Svn: svn://svn.debian.org/pkg-java/trunk/libgrinvin-graphs-java/
-Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/libgrinvin-graphs-java/
-Standards-Version: 3.8.0
-
-Package: libgrinvin-graphs-java
-Architecture: all
-Recommends: libgrinvin-core-java
-Description: interactive software package for studying graphs (standard graphs)
- GrInvIn is a software package for studying graphs, their properties
- (invariants) and the relations between these properties. It has been designed
- to optimally support the user in learning graph theory by means of examples
- and by experimenting with graphs and their properties.
- .
- This package contains the standard graphs.

Copied: tags/libgrinvin-graphs-java/1.2-2/debian/control (from rev 14081, 
trunk/libgrinvin-graphs-java/debian/control)
===
--- tags/libgrinvin-graphs-java/1.2-2/debian/control
(rev 0)
+++ tags/libgrinvin-graphs-java/1.2-2/debian/control2011-08-08 17:33:18 UTC 
(rev 14082)
@@ -0,0 +1,20 @@
+Source: libgrinvin-graphs-java
+Section: contrib/libs
+Priority: optional
+Maintainer: Debian QA Group packa...@qa.debian.org
+Homepage: http://www.grinvin.org/
+Build-Depends: debhelper ( 5.0.0), cdbs, ant, java-gcj-compat-dev
+Vcs-Svn: svn://svn.debian.org/pkg-java/trunk/libgrinvin-graphs-java/
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/libgrinvin-graphs-java/
+Standards-Version: 3.8.0
+
+Package: libgrinvin-graphs-java
+Architecture: all
+Recommends: libgrinvin-core-java
+Description: interactive software package for studying graphs (standard graphs)
+ GrInvIn is a software package for studying graphs, their properties
+ (invariants) and the relations between these properties. It has been designed
+ to optimally support the user in learning graph theory by means of examples
+ and by experimenting with graphs and their properties.
+ .
+ This package contains the standard graphs.



[pkg-java] r14083 - old trunk

2011-08-08 Thread Torsten Werner
Author: twerner
Date: 2011-08-08 17:34:37 + (Mon, 08 Aug 2011)
New Revision: 14083

Added:
   old/libgrinvin-graphs-java/
Removed:
   trunk/libgrinvin-graphs-java/
Log:
orphaning package



___
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] r14084 - trunk/libgrinvin-help-java/debian

2011-08-08 Thread Torsten Werner
Author: twerner
Date: 2011-08-08 17:38:03 + (Mon, 08 Aug 2011)
New Revision: 14084

Modified:
   trunk/libgrinvin-help-java/debian/changelog
   trunk/libgrinvin-help-java/debian/control
Log:
* QA upload.
* Orphaning package.

Modified: trunk/libgrinvin-help-java/debian/changelog
===
--- trunk/libgrinvin-help-java/debian/changelog 2011-08-08 17:34:37 UTC (rev 
14083)
+++ trunk/libgrinvin-help-java/debian/changelog 2011-08-08 17:38:03 UTC (rev 
14084)
@@ -1,3 +1,10 @@
+libgrinvin-help-java (1.2-2) unstable; urgency=low
+
+  * QA upload.
+  * Orphaning package.
+
+ -- Torsten Werner twer...@debian.org  Mon, 08 Aug 2011 19:37:37 +0200
+
 libgrinvin-help-java (1.2-1) unstable; urgency=low
 
   * New upstream release

Modified: trunk/libgrinvin-help-java/debian/control
===
--- trunk/libgrinvin-help-java/debian/control   2011-08-08 17:34:37 UTC (rev 
14083)
+++ trunk/libgrinvin-help-java/debian/control   2011-08-08 17:38:03 UTC (rev 
14084)
@@ -1,8 +1,7 @@
 Source: libgrinvin-help-java
 Section: contrib/libs
 Priority: optional
-Maintainer: Debian Java Maintainers 
pkg-java-maintainers@lists.alioth.debian.org
-Uploaders: Adriaan Peeters apeet...@lashout.net
+Maintainer: Debian QA Group packa...@qa.debian.org
 Homepage: http://www.grinvin.org/
 Build-Depends: debhelper ( 5.0.0), cdbs, ant, java-gcj-compat-dev
 Vcs-Svn: svn://svn.debian.org/pkg-java/trunk/libgrinvin-help-java/


___
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] r14085 - in tags/libgrinvin-help-java: . 1.2-2/debian

2011-08-08 Thread Torsten Werner
Author: twerner
Date: 2011-08-08 17:39:37 + (Mon, 08 Aug 2011)
New Revision: 14085

Added:
   tags/libgrinvin-help-java/1.2-2/
   tags/libgrinvin-help-java/1.2-2/debian/changelog
   tags/libgrinvin-help-java/1.2-2/debian/control
Removed:
   tags/libgrinvin-help-java/1.2-2/debian/changelog
   tags/libgrinvin-help-java/1.2-2/debian/control
Log:
[svn-buildpackage] Tagging libgrinvin-help-java 1.2-2

Deleted: tags/libgrinvin-help-java/1.2-2/debian/changelog
===
--- trunk/libgrinvin-help-java/debian/changelog 2011-08-08 17:34:37 UTC (rev 
14083)
+++ tags/libgrinvin-help-java/1.2-2/debian/changelog2011-08-08 17:39:37 UTC 
(rev 14085)
@@ -1,16 +0,0 @@
-libgrinvin-help-java (1.2-1) unstable; urgency=low
-
-  * New upstream release
-  * Added debian/watch file
-  * debian/control:
-- Bumped Standards-Version to 3.8.0, no changes needed
-  * debian/copyright:
-- Updated copyright years
-
- -- Adriaan Peeters apeet...@lashout.net  Wed, 01 Oct 2008 23:11:53 +0200
-
-libgrinvin-help-java (1.0-1) unstable; urgency=low
-
-  * Initial release
-
- -- Adriaan Peeters apeet...@lashout.net  Wed, 21 Nov 2007 17:28:37 +0100

Copied: tags/libgrinvin-help-java/1.2-2/debian/changelog (from rev 14084, 
trunk/libgrinvin-help-java/debian/changelog)
===
--- tags/libgrinvin-help-java/1.2-2/debian/changelog
(rev 0)
+++ tags/libgrinvin-help-java/1.2-2/debian/changelog2011-08-08 17:39:37 UTC 
(rev 14085)
@@ -0,0 +1,23 @@
+libgrinvin-help-java (1.2-2) unstable; urgency=low
+
+  * QA upload.
+  * Orphaning package.
+
+ -- Torsten Werner twer...@debian.org  Mon, 08 Aug 2011 19:37:37 +0200
+
+libgrinvin-help-java (1.2-1) unstable; urgency=low
+
+  * New upstream release
+  * Added debian/watch file
+  * debian/control:
+- Bumped Standards-Version to 3.8.0, no changes needed
+  * debian/copyright:
+- Updated copyright years
+
+ -- Adriaan Peeters apeet...@lashout.net  Wed, 01 Oct 2008 23:11:53 +0200
+
+libgrinvin-help-java (1.0-1) unstable; urgency=low
+
+  * Initial release
+
+ -- Adriaan Peeters apeet...@lashout.net  Wed, 21 Nov 2007 17:28:37 +0100

Deleted: tags/libgrinvin-help-java/1.2-2/debian/control
===
--- trunk/libgrinvin-help-java/debian/control   2011-08-08 17:34:37 UTC (rev 
14083)
+++ tags/libgrinvin-help-java/1.2-2/debian/control  2011-08-08 17:39:37 UTC 
(rev 14085)
@@ -1,21 +0,0 @@
-Source: libgrinvin-help-java
-Section: contrib/libs
-Priority: optional
-Maintainer: Debian Java Maintainers 
pkg-java-maintainers@lists.alioth.debian.org
-Uploaders: Adriaan Peeters apeet...@lashout.net
-Homepage: http://www.grinvin.org/
-Build-Depends: debhelper ( 5.0.0), cdbs, ant, java-gcj-compat-dev
-Vcs-Svn: svn://svn.debian.org/pkg-java/trunk/libgrinvin-help-java/
-Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/libgrinvin-help-java/
-Standards-Version: 3.8.0
-
-Package: libgrinvin-help-java
-Architecture: all
-Recommends: libgrinvin-core-java
-Description: interactive software package for studying graphs (help files)
- GrInvIn is a software package for studying graphs, their properties
- (invariants) and the relations between these properties. It has been designed
- to optimally support the user in learning graph theory by means of examples
- and by experimenting with graphs and their properties.
- .
- This package contains the online help files.

Copied: tags/libgrinvin-help-java/1.2-2/debian/control (from rev 14084, 
trunk/libgrinvin-help-java/debian/control)
===
--- tags/libgrinvin-help-java/1.2-2/debian/control  
(rev 0)
+++ tags/libgrinvin-help-java/1.2-2/debian/control  2011-08-08 17:39:37 UTC 
(rev 14085)
@@ -0,0 +1,20 @@
+Source: libgrinvin-help-java
+Section: contrib/libs
+Priority: optional
+Maintainer: Debian QA Group packa...@qa.debian.org
+Homepage: http://www.grinvin.org/
+Build-Depends: debhelper ( 5.0.0), cdbs, ant, java-gcj-compat-dev
+Vcs-Svn: svn://svn.debian.org/pkg-java/trunk/libgrinvin-help-java/
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/libgrinvin-help-java/
+Standards-Version: 3.8.0
+
+Package: libgrinvin-help-java
+Architecture: all
+Recommends: libgrinvin-core-java
+Description: interactive software package for studying graphs (help files)
+ GrInvIn is a software package for studying graphs, their properties
+ (invariants) and the relations between these properties. It has been designed
+ to optimally support the user in learning graph theory by means of examples
+ and by experimenting with graphs and their properties.
+ .
+ This package contains the online help files.


___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org

[pkg-java] r14086 - old trunk

2011-08-08 Thread Torsten Werner
Author: twerner
Date: 2011-08-08 17:41:17 + (Mon, 08 Aug 2011)
New Revision: 14086

Added:
   old/libgrinvin-help-java/
Removed:
   trunk/libgrinvin-help-java/
Log:
orphaning package


___
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] r14087 - trunk/libgrinvin-invariants-java/debian

2011-08-08 Thread Torsten Werner
Author: twerner
Date: 2011-08-08 17:45:31 + (Mon, 08 Aug 2011)
New Revision: 14087

Modified:
   trunk/libgrinvin-invariants-java/debian/changelog
   trunk/libgrinvin-invariants-java/debian/control
Log:
* QA upload.
* Orphaning package.

Modified: trunk/libgrinvin-invariants-java/debian/changelog
===
--- trunk/libgrinvin-invariants-java/debian/changelog   2011-08-08 17:41:17 UTC 
(rev 14086)
+++ trunk/libgrinvin-invariants-java/debian/changelog   2011-08-08 17:45:31 UTC 
(rev 14087)
@@ -1,3 +1,10 @@
+libgrinvin-invariants-java (1.2-2) unstable; urgency=low
+
+  * QA upload.
+  * Orphaning package.
+
+ -- Torsten Werner twer...@debian.org  Mon, 08 Aug 2011 19:45:05 +0200
+
 libgrinvin-invariants-java (1.2-1) unstable; urgency=low
 
   * New upstream release

Modified: trunk/libgrinvin-invariants-java/debian/control
===
--- trunk/libgrinvin-invariants-java/debian/control 2011-08-08 17:41:17 UTC 
(rev 14086)
+++ trunk/libgrinvin-invariants-java/debian/control 2011-08-08 17:45:31 UTC 
(rev 14087)
@@ -1,8 +1,7 @@
 Source: libgrinvin-invariants-java
 Section: contrib/libs
 Priority: optional
-Maintainer: Debian Java Maintainers 
pkg-java-maintainers@lists.alioth.debian.org
-Uploaders: Adriaan Peeters apeet...@lashout.net
+Maintainer: Debian QA Group packa...@qa.debian.org
 Homepage: http://www.grinvin.org/
 Build-Depends: debhelper ( 5.0.0), cdbs, ant, java-gcj-compat-dev
 Build-Depends-Indep: libgrinvin-core-java (= 1.2)


___
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] r14088 - in tags/libgrinvin-invariants-java: . 1.2-2/debian

2011-08-08 Thread Torsten Werner
Author: twerner
Date: 2011-08-08 17:50:50 + (Mon, 08 Aug 2011)
New Revision: 14088

Added:
   tags/libgrinvin-invariants-java/1.2-2/
   tags/libgrinvin-invariants-java/1.2-2/debian/changelog
   tags/libgrinvin-invariants-java/1.2-2/debian/control
Removed:
   tags/libgrinvin-invariants-java/1.2-2/debian/changelog
   tags/libgrinvin-invariants-java/1.2-2/debian/control
Log:
[svn-buildpackage] Tagging libgrinvin-invariants-java 1.2-2

Deleted: tags/libgrinvin-invariants-java/1.2-2/debian/changelog
===
--- trunk/libgrinvin-invariants-java/debian/changelog   2011-08-08 17:41:17 UTC 
(rev 14086)
+++ tags/libgrinvin-invariants-java/1.2-2/debian/changelog  2011-08-08 
17:50:50 UTC (rev 14088)
@@ -1,33 +0,0 @@
-libgrinvin-invariants-java (1.2-1) unstable; urgency=low
-
-  * New upstream release
-  * debian/control:
-- Bumped Standards-Version to 3.8.0, no changes needed
-- Updated Depends and Build-Depends to libgrinvin-core-java (= 1.2)
-  * debian/changelog:
-- Updated copyright years
-
- -- Adriaan Peeters apeet...@lashout.net  Thu, 02 Oct 2008 10:32:00 +0200
-
-libgrinvin-invariants-java (1.0.2-1) unstable; urgency=low
-
-  * New upstream release
-- Fixes another error in DominationNumber invariant computer
-
- -- Adriaan Peeters apeet...@lashout.net  Mon, 26 May 2008 15:21:22 +0200
-
-libgrinvin-invariants-java (1.0.1-1) unstable; urgency=low
-
-  * New upstream release
-- Fixes error in DominationNumber and LongestInducedCycle invariant
-  computers
-  * Added debian/watch file
-  * Bumped Standards-Version to 3.7.3, no changes needed
-
- -- Adriaan Peeters apeet...@lashout.net  Thu, 03 Jan 2008 14:47:39 +0100
-
-libgrinvin-invariants-java (1.0-1) unstable; urgency=low
-
-  * Initial release
-
- -- Adriaan Peeters apeet...@lashout.net  Wed, 21 Nov 2007 13:51:29 +0100

Copied: tags/libgrinvin-invariants-java/1.2-2/debian/changelog (from rev 14087, 
trunk/libgrinvin-invariants-java/debian/changelog)
===
--- tags/libgrinvin-invariants-java/1.2-2/debian/changelog  
(rev 0)
+++ tags/libgrinvin-invariants-java/1.2-2/debian/changelog  2011-08-08 
17:50:50 UTC (rev 14088)
@@ -0,0 +1,40 @@
+libgrinvin-invariants-java (1.2-2) unstable; urgency=low
+
+  * QA upload.
+  * Orphaning package.
+
+ -- Torsten Werner twer...@debian.org  Mon, 08 Aug 2011 19:45:05 +0200
+
+libgrinvin-invariants-java (1.2-1) unstable; urgency=low
+
+  * New upstream release
+  * debian/control:
+- Bumped Standards-Version to 3.8.0, no changes needed
+- Updated Depends and Build-Depends to libgrinvin-core-java (= 1.2)
+  * debian/changelog:
+- Updated copyright years
+
+ -- Adriaan Peeters apeet...@lashout.net  Thu, 02 Oct 2008 10:32:00 +0200
+
+libgrinvin-invariants-java (1.0.2-1) unstable; urgency=low
+
+  * New upstream release
+- Fixes another error in DominationNumber invariant computer
+
+ -- Adriaan Peeters apeet...@lashout.net  Mon, 26 May 2008 15:21:22 +0200
+
+libgrinvin-invariants-java (1.0.1-1) unstable; urgency=low
+
+  * New upstream release
+- Fixes error in DominationNumber and LongestInducedCycle invariant
+  computers
+  * Added debian/watch file
+  * Bumped Standards-Version to 3.7.3, no changes needed
+
+ -- Adriaan Peeters apeet...@lashout.net  Thu, 03 Jan 2008 14:47:39 +0100
+
+libgrinvin-invariants-java (1.0-1) unstable; urgency=low
+
+  * Initial release
+
+ -- Adriaan Peeters apeet...@lashout.net  Wed, 21 Nov 2007 13:51:29 +0100

Deleted: tags/libgrinvin-invariants-java/1.2-2/debian/control
===
--- trunk/libgrinvin-invariants-java/debian/control 2011-08-08 17:41:17 UTC 
(rev 14086)
+++ tags/libgrinvin-invariants-java/1.2-2/debian/control2011-08-08 
17:50:50 UTC (rev 14088)
@@ -1,22 +0,0 @@
-Source: libgrinvin-invariants-java
-Section: contrib/libs
-Priority: optional
-Maintainer: Debian Java Maintainers 
pkg-java-maintainers@lists.alioth.debian.org
-Uploaders: Adriaan Peeters apeet...@lashout.net
-Homepage: http://www.grinvin.org/
-Build-Depends: debhelper ( 5.0.0), cdbs, ant, java-gcj-compat-dev
-Build-Depends-Indep: libgrinvin-core-java (= 1.2)
-Vcs-Svn: svn://svn.debian.org/pkg-java/trunk/libgrinvin-invariants-java/
-Vcs-Browser: 
http://svn.debian.org/wsvn/pkg-java/trunk/libgrinvin-invariants-java/
-Standards-Version: 3.8.0
-
-Package: libgrinvin-invariants-java
-Architecture: all
-Depends: java-gcj-compat | java1-runtime | java2-runtime, libgrinvin-core-java 
(= 1.2)
-Description: interactive software package for studying graphs (graph 
invariants)
- GrInvIn is a software package for studying graphs, their properties
- (invariants) and the relations between these properties. It has been designed
- to optimally support the user in learning graph theory by means of examples
- and by experimenting with graphs and their properties.
- 

[pkg-java] r14089 - old trunk

2011-08-08 Thread Torsten Werner
Author: twerner
Date: 2011-08-08 17:51:33 + (Mon, 08 Aug 2011)
New Revision: 14089

Added:
   old/libgrinvin-invariants-java/
Removed:
   trunk/libgrinvin-invariants-java/
Log:
orphaning package


___
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] r14090 - trunk/libhiglayout-java/debian

2011-08-08 Thread Torsten Werner
Author: twerner
Date: 2011-08-08 17:57:55 + (Mon, 08 Aug 2011)
New Revision: 14090

Modified:
   trunk/libhiglayout-java/debian/changelog
   trunk/libhiglayout-java/debian/control
Log:
* QA upload.
* Orphaning package.

Modified: trunk/libhiglayout-java/debian/changelog
===
--- trunk/libhiglayout-java/debian/changelog2011-08-08 17:51:33 UTC (rev 
14089)
+++ trunk/libhiglayout-java/debian/changelog2011-08-08 17:57:55 UTC (rev 
14090)
@@ -1,3 +1,10 @@
+libhiglayout-java (1.0-5) unstable; urgency=low
+
+  * QA upload.
+  * Orphaning package.
+
+ -- Torsten Werner twer...@debian.org  Mon, 08 Aug 2011 19:57:14 +0200
+
 libhiglayout-java (1.0-4) unstable; urgency=low
 
   * There is not reason to keep it out of main now: DFSG-free and

Modified: trunk/libhiglayout-java/debian/control
===
--- trunk/libhiglayout-java/debian/control  2011-08-08 17:51:33 UTC (rev 
14089)
+++ trunk/libhiglayout-java/debian/control  2011-08-08 17:57:55 UTC (rev 
14090)
@@ -1,8 +1,7 @@
 Source: libhiglayout-java
 Section: libs
 Priority: optional
-Maintainer: Debian Java Maintainers 
pkg-java-maintainers@lists.alioth.debian.org
-Uploaders: Vincent Fourmond fourm...@debian.org
+Maintainer: Debian QA Group packa...@qa.debian.org
 Build-Depends-Indep: java-gcj-compat-dev
 Build-Depends: cdbs, debhelper (= 5), dpatch
 Standards-Version: 3.7.3


___
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] r14091 - in tags/libhiglayout-java: . 1.0-5/debian

2011-08-08 Thread Torsten Werner
Author: twerner
Date: 2011-08-08 17:59:23 + (Mon, 08 Aug 2011)
New Revision: 14091

Added:
   tags/libhiglayout-java/1.0-5/
   tags/libhiglayout-java/1.0-5/debian/changelog
   tags/libhiglayout-java/1.0-5/debian/control
Removed:
   tags/libhiglayout-java/1.0-5/debian/changelog
   tags/libhiglayout-java/1.0-5/debian/control
Log:
[svn-buildpackage] Tagging libhiglayout-java 1.0-5

Deleted: tags/libhiglayout-java/1.0-5/debian/changelog
===
--- trunk/libhiglayout-java/debian/changelog2011-08-08 17:51:33 UTC (rev 
14089)
+++ tags/libhiglayout-java/1.0-5/debian/changelog   2011-08-08 17:59:23 UTC 
(rev 14091)
@@ -1,32 +0,0 @@
-libhiglayout-java (1.0-4) unstable; urgency=low
-
-  * There is not reason to keep it out of main now: DFSG-free and
-depends/build-depends only on free software. However, 
-packages depending on it might stay out of main for a while, though.
-
- -- Vincent Fourmond fourm...@debian.org  Fri, 29 Feb 2008 21:12:10 +0100
-
-libhiglayout-java (1.0-3) unstable; urgency=low
-
-  * Now team-maintained
-  * Updated Standards version to 3.7.3, no changes needed
-  * Added Homepage + VCS fields
-  * Added a watchfile
-  * Switched to java-gcj-compat-dev for building, and updated dependencies
-accordingly.
-
- -- Vincent Fourmond fourm...@debian.org  Tue, 01 Jan 2008 19:51:30 +0100
-
-libhiglayout-java (1.0-2) unstable; urgency=low
-
-  * Fix dependencies so build-depends only relies on packages 
-in main (Closes: #452821)
-
- -- Vincent Fourmond fourm...@debian.org  Mon, 26 Nov 2007 20:27:15 +0100
-
-libhiglayout-java (1.0-1) unstable; urgency=low
-
-  * Initial release (Closes: #444595)
-
- -- Vincent Fourmond fourm...@debian.org  Sun, 30 Sep 2007 11:26:54 +0200
-

Copied: tags/libhiglayout-java/1.0-5/debian/changelog (from rev 14090, 
trunk/libhiglayout-java/debian/changelog)
===
--- tags/libhiglayout-java/1.0-5/debian/changelog   
(rev 0)
+++ tags/libhiglayout-java/1.0-5/debian/changelog   2011-08-08 17:59:23 UTC 
(rev 14091)
@@ -0,0 +1,39 @@
+libhiglayout-java (1.0-5) unstable; urgency=low
+
+  * QA upload.
+  * Orphaning package.
+
+ -- Torsten Werner twer...@debian.org  Mon, 08 Aug 2011 19:57:14 +0200
+
+libhiglayout-java (1.0-4) unstable; urgency=low
+
+  * There is not reason to keep it out of main now: DFSG-free and
+depends/build-depends only on free software. However, 
+packages depending on it might stay out of main for a while, though.
+
+ -- Vincent Fourmond fourm...@debian.org  Fri, 29 Feb 2008 21:12:10 +0100
+
+libhiglayout-java (1.0-3) unstable; urgency=low
+
+  * Now team-maintained
+  * Updated Standards version to 3.7.3, no changes needed
+  * Added Homepage + VCS fields
+  * Added a watchfile
+  * Switched to java-gcj-compat-dev for building, and updated dependencies
+accordingly.
+
+ -- Vincent Fourmond fourm...@debian.org  Tue, 01 Jan 2008 19:51:30 +0100
+
+libhiglayout-java (1.0-2) unstable; urgency=low
+
+  * Fix dependencies so build-depends only relies on packages 
+in main (Closes: #452821)
+
+ -- Vincent Fourmond fourm...@debian.org  Mon, 26 Nov 2007 20:27:15 +0100
+
+libhiglayout-java (1.0-1) unstable; urgency=low
+
+  * Initial release (Closes: #444595)
+
+ -- Vincent Fourmond fourm...@debian.org  Sun, 30 Sep 2007 11:26:54 +0200
+

Deleted: tags/libhiglayout-java/1.0-5/debian/control
===
--- trunk/libhiglayout-java/debian/control  2011-08-08 17:51:33 UTC (rev 
14089)
+++ tags/libhiglayout-java/1.0-5/debian/control 2011-08-08 17:59:23 UTC (rev 
14091)
@@ -1,23 +0,0 @@
-Source: libhiglayout-java
-Section: libs
-Priority: optional
-Maintainer: Debian Java Maintainers 
pkg-java-maintainers@lists.alioth.debian.org
-Uploaders: Vincent Fourmond fourm...@debian.org
-Build-Depends-Indep: java-gcj-compat-dev
-Build-Depends: cdbs, debhelper (= 5), dpatch
-Standards-Version: 3.7.3
-Homepage: http://www.autel.cz/dmi/tutorial.html
-Vcs-Svn: svn://svn.debian.org/svn/pkg-java/packages/trunk/libhiglayout-java/
-Vcs-Browser: 
http://svn.debian.org/wsvn/pkg-java/packages/trunk/libhiglayout-java/
-
-
-Package: libhiglayout-java
-Architecture: all
-Depends: java-gcj-compat | java1-runtime | java2-runtime
-Description: An easy-to-use layout manager for Java
- higlayout is a layout manager for Java. It provides a nice basis to
- create dialog boxes and the like. It manages neatly preferred size and
- window resizing. 
- .
- You probably won't be very intersted in this package unless you want
- to develop freecol

Copied: tags/libhiglayout-java/1.0-5/debian/control (from rev 14090, 
trunk/libhiglayout-java/debian/control)
===
--- tags/libhiglayout-java/1.0-5/debian/control (rev 0)
+++ tags/libhiglayout-java/1.0-5/debian/control 2011-08-08 

[pkg-java] r14092 - old trunk

2011-08-08 Thread Torsten Werner
Author: twerner
Date: 2011-08-08 18:00:19 + (Mon, 08 Aug 2011)
New Revision: 14092

Added:
   old/libhiglayout-java/
Removed:
   trunk/libhiglayout-java/
Log:
orphaning package


___
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] r14093 - trunk/libi18n-java/debian

2011-08-08 Thread Torsten Werner
Author: twerner
Date: 2011-08-08 18:03:20 + (Mon, 08 Aug 2011)
New Revision: 14093

Modified:
   trunk/libi18n-java/debian/changelog
   trunk/libi18n-java/debian/control
Log:
* QA upload.
* Orphaning package.

Modified: trunk/libi18n-java/debian/changelog
===
--- trunk/libi18n-java/debian/changelog 2011-08-08 18:00:19 UTC (rev 14092)
+++ trunk/libi18n-java/debian/changelog 2011-08-08 18:03:20 UTC (rev 14093)
@@ -1,3 +1,10 @@
+libi18n-java (0.1.3a-4) unstable; urgency=low
+
+  * QA upload.
+  * Orphaning package.
+
+ -- Torsten Werner twer...@debian.org  Mon, 08 Aug 2011 20:02:49 +0200
+
 libi18n-java (0.1.3a-3) unstable; urgency=low
 
   * (Build-)Depends on default-jdk.

Modified: trunk/libi18n-java/debian/control
===
--- trunk/libi18n-java/debian/control   2011-08-08 18:00:19 UTC (rev 14092)
+++ trunk/libi18n-java/debian/control   2011-08-08 18:03:20 UTC (rev 14093)
@@ -1,8 +1,7 @@
 Source: libi18n-java
 Section: java
 Priority: optional
-Maintainer: Debian Java Maintainers 
pkg-java-maintainers@lists.alioth.debian.org
-Uploaders: Arnaud Vandyck av...@debian.org, Michael Koch konque...@gmx.de
+Maintainer: Debian QA Group packa...@qa.debian.org
 Build-Depends: debhelper (= 7), cdbs, ant, default-jdk
 Standards-Version: 3.8.3
 Homepage: http://jhraigniac.freesurf.fr/i18n-lib/


___
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] r14094 - in tags/libi18n-java: . 0.1.3a-4/debian

2011-08-08 Thread Torsten Werner
Author: twerner
Date: 2011-08-08 18:04:54 + (Mon, 08 Aug 2011)
New Revision: 14094

Added:
   tags/libi18n-java/0.1.3a-4/
   tags/libi18n-java/0.1.3a-4/debian/changelog
   tags/libi18n-java/0.1.3a-4/debian/control
Removed:
   tags/libi18n-java/0.1.3a-4/debian/changelog
   tags/libi18n-java/0.1.3a-4/debian/control
Log:
[svn-buildpackage] Tagging libi18n-java 0.1.3a-4

Deleted: tags/libi18n-java/0.1.3a-4/debian/changelog
===
--- trunk/libi18n-java/debian/changelog 2011-08-08 18:00:19 UTC (rev 14092)
+++ tags/libi18n-java/0.1.3a-4/debian/changelog 2011-08-08 18:04:54 UTC (rev 
14094)
@@ -1,63 +0,0 @@
-libi18n-java (0.1.3a-3) unstable; urgency=low
-
-  * (Build-)Depends on default-jdk.
-  * Build-Depends on debhelper = 7.
-  * Moved Build-Depends-Indep to Build-Depens.
-  * Moved package to section 'java'.
-  * Let package Depends on ${misc:Depends}.
-  * Added Homepage field.
-  * Removed Wolfgang and added myelf to Uploaders.
-  * Updated Standards-Version to 3.8.3.
-
- -- Michael Koch konque...@gmx.de  Tue, 15 Sep 2009 08:05:30 +0200
-
-libi18n-java (0.1.3a-2) unstable; urgency=low
-
-  * kaffe compiler transition
-  * Bumped debhelper version to fix linda error
-  * Remove old libi18n-java.links file to fix link failure to jar
-  * Added myself to uploaders
-
- -- Wolfgang Baer wb...@gmx.de  Mon, 16 Jan 2006 11:29:59 +0100
-
-libi18n-java (0.1.3a-1) unstable; urgency=low
-
-  * New upstream release, built from sources (closes: #323071).
-  * built with kaffe, can move to main (closes: #306772).
-  * debian/build.xml: added.
-  * Standards-Version: 3.6.2; no change needed.
-
- -- Arnaud Vandyck av...@debian.org  Fri,  7 Oct 2005 17:55:16 +0200
-
-libi18n-java (0.1.2.0.1-1) unstable; urgency=low
-
-  * Old upstream release! Last upstream breaks with argouml 0.14 so I did
-downgrade! If your are using libi18n-java 0.1, you don't need to
-update. This is just a work around package. Also, this package is not
-build from sources but it's just a transition (closes: #222955,
-#221408).
-  * debian/control:
-- Uploaders: changed to my Debian email address.
-
- -- Arnaud Vandyck av...@debian.org  Wed, 17 Dec 2003 18:05:01 +0100
-
-libi18n-java (0.1.2-2) unstable; urgency=low
-
-  * org/workingfrog/i18n/util/Translator.java (localize): added a patch to
-maintain backward compatibility with argouml 0.14 (closes:
-#221408). It's basically a copy/paste from the previous release.
-
- -- Arnaud Vandyck av...@debian.org  Thu, 20 Nov 2003 14:50:59 +0100
-
-libi18n-java (0.1.2-1) unstable; urgency=low
-
-  * New upstream release
-
- -- Arnaud Vandyck av...@debian.org  Sun, 16 Nov 2003 01:53:02 +0100
-
-libi18n-java (0.1-1) unstable; urgency=low
-
-  * Initial Release (closes: #203148).
-
- -- Arnaud Vandyck arnaud.vand...@ulg.ac.be  Mon, 28 Jul 2003 02:50:33 +0200
-

Copied: tags/libi18n-java/0.1.3a-4/debian/changelog (from rev 14093, 
trunk/libi18n-java/debian/changelog)
===
--- tags/libi18n-java/0.1.3a-4/debian/changelog (rev 0)
+++ tags/libi18n-java/0.1.3a-4/debian/changelog 2011-08-08 18:04:54 UTC (rev 
14094)
@@ -0,0 +1,70 @@
+libi18n-java (0.1.3a-4) unstable; urgency=low
+
+  * QA upload.
+  * Orphaning package.
+
+ -- Torsten Werner twer...@debian.org  Mon, 08 Aug 2011 20:02:49 +0200
+
+libi18n-java (0.1.3a-3) unstable; urgency=low
+
+  * (Build-)Depends on default-jdk.
+  * Build-Depends on debhelper = 7.
+  * Moved Build-Depends-Indep to Build-Depens.
+  * Moved package to section 'java'.
+  * Let package Depends on ${misc:Depends}.
+  * Added Homepage field.
+  * Removed Wolfgang and added myelf to Uploaders.
+  * Updated Standards-Version to 3.8.3.
+
+ -- Michael Koch konque...@gmx.de  Tue, 15 Sep 2009 08:05:30 +0200
+
+libi18n-java (0.1.3a-2) unstable; urgency=low
+
+  * kaffe compiler transition
+  * Bumped debhelper version to fix linda error
+  * Remove old libi18n-java.links file to fix link failure to jar
+  * Added myself to uploaders
+
+ -- Wolfgang Baer wb...@gmx.de  Mon, 16 Jan 2006 11:29:59 +0100
+
+libi18n-java (0.1.3a-1) unstable; urgency=low
+
+  * New upstream release, built from sources (closes: #323071).
+  * built with kaffe, can move to main (closes: #306772).
+  * debian/build.xml: added.
+  * Standards-Version: 3.6.2; no change needed.
+
+ -- Arnaud Vandyck av...@debian.org  Fri,  7 Oct 2005 17:55:16 +0200
+
+libi18n-java (0.1.2.0.1-1) unstable; urgency=low
+
+  * Old upstream release! Last upstream breaks with argouml 0.14 so I did
+downgrade! If your are using libi18n-java 0.1, you don't need to
+update. This is just a work around package. Also, this package is not
+build from sources but it's just a transition (closes: #222955,
+#221408).
+  * debian/control:
+- Uploaders: changed to my Debian email address.
+
+ -- Arnaud Vandyck av...@debian.org  Wed, 17 Dec 2003 18:05:01 +0100
+

[pkg-java] r14095 - old trunk

2011-08-08 Thread Torsten Werner
Author: twerner
Date: 2011-08-08 18:06:08 + (Mon, 08 Aug 2011)
New Revision: 14095

Added:
   old/libi18n-java/
Removed:
   trunk/libi18n-java/
Log:
orphaning package


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


Bug#637130: O: libgrinvin-graphs-java

2011-08-08 Thread Torsten Werner
Package: wnpp
Severity: normal

Hi,

I am orphaning the package in behalf of the Java team because:
- it hasn't been maintained for a long time
- it has only orphaned reverse dependencies
- it has a low popcon value
Feel free to re-introduce it to the team if want to actively maintain it.

Torsten



__
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#637131: O: libgrinvin-help-java

2011-08-08 Thread Torsten Werner
Package: wnpp
Severity: normal

Hi,

I am orphaning the package in behalf of the Java team because:
- it hasn't been maintained for a long time
- it has no reverse dependencies
- it has a low popcon value
Feel free to re-introduce it to the team if want to actively maintain it.

Torsten



__
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#637133: O: libgrinvin-invariants-java

2011-08-08 Thread Torsten Werner
Package: wnpp
Severity: normal

Hi,

I am orphaning the package in behalf of the Java team because:
- it hasn't been maintained for a long time
- it has only orphaned reverse dependencies
- it has a low popcon value
Feel free to re-introduce it to the team if want to actively maintain it.

Torsten



__
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#637134: O: libhiglayout-java -- An easy-to-use layout manager for Java

2011-08-08 Thread Torsten Werner
Package: wnpp
Severity: normal


Hi,

I am orphaning the package in behalf of the Java team because:
- it hasn't been maintained for a long time
- it has no reverse dependencies
- it has a low popcon value
Feel free to re-introduce it to the team if want to actively maintain it.

Torsten



__
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#637135: O: libi18n-java

2011-08-08 Thread Torsten Werner
Package: wnpp
Severity: normal

Hi,

I am orphaning the package in behalf of the Java team because:
- it hasn't been maintained for a long time
- it has no reverse dependencies
- it has a low popcon value
Feel free to re-introduce it to the team if want to actively maintain it.

Torsten



__
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] r14096 - in trunk/libitext1-java/debian: . source

2011-08-08 Thread Torsten Werner
Author: twerner
Date: 2011-08-08 19:00:13 + (Mon, 08 Aug 2011)
New Revision: 14096

Modified:
   trunk/libitext1-java/debian/changelog
   trunk/libitext1-java/debian/control
   trunk/libitext1-java/debian/rules
   trunk/libitext1-java/debian/source/format
Log:
Switch to source format 3.0.

Modified: trunk/libitext1-java/debian/changelog
===
--- trunk/libitext1-java/debian/changelog   2011-08-08 18:06:08 UTC (rev 
14095)
+++ trunk/libitext1-java/debian/changelog   2011-08-08 19:00:13 UTC (rev 
14096)
@@ -1,15 +1,19 @@
-libitext1-java (1.4-4) UNRELEASED; urgency=low
+libitext1-java (1.4-4) unstable; urgency=low
 
   * Team upload.
+
+  [ Miguel Landaeta ]
   * Clarify licensing of some files that were suspected to be non-free.
 (Closes: #600338).
   * Bump Standards-Version to 3.9.1. No changes were required.
   * Remove redundant Section header for libitext1-java binary package.
   * Add missing invocation of mh_clean in clean target.
-  * Indicate debian source format 1.0.
 
- -- Miguel Landaeta mig...@miguel.cc  Wed, 20 Oct 2010 21:28:25 -0430
+  [ Torsten Werner ]
+  * Switch to source format 3.0.
 
+ -- Torsten Werner twer...@debian.org  Mon, 08 Aug 2011 20:59:23 +0200
+
 libitext1-java (1.4-3) unstable; urgency=low
 
   * Removed Gerardo Curiel from Uploaders (Closes: #553102).

Modified: trunk/libitext1-java/debian/control
===
--- trunk/libitext1-java/debian/control 2011-08-08 18:06:08 UTC (rev 14095)
+++ trunk/libitext1-java/debian/control 2011-08-08 19:00:13 UTC (rev 14096)
@@ -3,7 +3,7 @@
 Priority: optional
 Maintainer: Debian Java Maintainers 
pkg-java-maintainers@lists.alioth.debian.org
 Uploaders: Michael Koch konque...@gmx.de, Ludovic Claude 
ludovic.cla...@laposte.net
-Build-Depends: ant, cdbs, debhelper (= 7), default-jdk, quilt
+Build-Depends: ant, cdbs, debhelper (= 7), default-jdk
 Build-Depends-Indep: libservlet2.5-java, maven-repo-helper
 Standards-Version: 3.9.1
 Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/libitext1-java

Modified: trunk/libitext1-java/debian/rules
===
--- trunk/libitext1-java/debian/rules   2011-08-08 18:06:08 UTC (rev 14095)
+++ trunk/libitext1-java/debian/rules   2011-08-08 19:00:13 UTC (rev 14096)
@@ -2,7 +2,6 @@
 
 include /usr/share/cdbs/1/rules/debhelper.mk
 include /usr/share/cdbs/1/class/ant.mk
-include /usr/share/cdbs/1/rules/patchsys-quilt.mk
 
 PACKAGE := $(DEB_SOURCE_PACKAGE)
 VERSION := $(DEB_UPSTREAM_VERSION)

Modified: trunk/libitext1-java/debian/source/format
===
--- trunk/libitext1-java/debian/source/format   2011-08-08 18:06:08 UTC (rev 
14095)
+++ trunk/libitext1-java/debian/source/format   2011-08-08 19:00:13 UTC (rev 
14096)
@@ -1 +1 @@
-1.0
+3.0 (quilt)


___
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] r14097 - trunk/libitext1-java/debian

2011-08-08 Thread Torsten Werner
Author: twerner
Date: 2011-08-08 19:01:37 + (Mon, 08 Aug 2011)
New Revision: 14097

Removed:
   trunk/libitext1-java/debian/README.source
Log:
remove README.source


Deleted: trunk/libitext1-java/debian/README.source
===
--- trunk/libitext1-java/debian/README.source   2011-08-08 19:00:13 UTC (rev 
14096)
+++ trunk/libitext1-java/debian/README.source   2011-08-08 19:01:37 UTC (rev 
14097)
@@ -1,8 +0,0 @@
-Patch System
-
-
-This package uses quilt to manage all modifications to the upstream
-source. Changes are stored in the source package as diffs in
-debian/patches and applied during the build.
-
-See /usr/share/doc/quilt/README.source for a detailed explanation.


___
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] r14098 - in tags/libitext1-java: . 1.4-4/debian 1.4-4/debian/source

2011-08-08 Thread Torsten Werner
Author: twerner
Date: 2011-08-08 19:03:05 + (Mon, 08 Aug 2011)
New Revision: 14098

Added:
   tags/libitext1-java/1.4-4/
   tags/libitext1-java/1.4-4/debian/changelog
   tags/libitext1-java/1.4-4/debian/control
   tags/libitext1-java/1.4-4/debian/rules
   tags/libitext1-java/1.4-4/debian/source/format
Removed:
   tags/libitext1-java/1.4-4/debian/README.source
   tags/libitext1-java/1.4-4/debian/changelog
   tags/libitext1-java/1.4-4/debian/control
   tags/libitext1-java/1.4-4/debian/rules
   tags/libitext1-java/1.4-4/debian/source/format
Log:
[svn-buildpackage] Tagging libitext1-java 1.4-4

Deleted: tags/libitext1-java/1.4-4/debian/README.source
===
--- trunk/libitext1-java/debian/README.source   2011-08-08 18:06:08 UTC (rev 
14095)
+++ tags/libitext1-java/1.4-4/debian/README.source  2011-08-08 19:03:05 UTC 
(rev 14098)
@@ -1,8 +0,0 @@
-Patch System
-
-
-This package uses quilt to manage all modifications to the upstream
-source. Changes are stored in the source package as diffs in
-debian/patches and applied during the build.
-
-See /usr/share/doc/quilt/README.source for a detailed explanation.

Deleted: tags/libitext1-java/1.4-4/debian/changelog
===
--- trunk/libitext1-java/debian/changelog   2011-08-08 18:06:08 UTC (rev 
14095)
+++ tags/libitext1-java/1.4-4/debian/changelog  2011-08-08 19:03:05 UTC (rev 
14098)
@@ -1,35 +0,0 @@
-libitext1-java (1.4-4) UNRELEASED; urgency=low
-
-  * Team upload.
-  * Clarify licensing of some files that were suspected to be non-free.
-(Closes: #600338).
-  * Bump Standards-Version to 3.9.1. No changes were required.
-  * Remove redundant Section header for libitext1-java binary package.
-  * Add missing invocation of mh_clean in clean target.
-  * Indicate debian source format 1.0.
-
- -- Miguel Landaeta mig...@miguel.cc  Wed, 20 Oct 2010 21:28:25 -0430
-
-libitext1-java (1.4-3) unstable; urgency=low
-
-  * Removed Gerardo Curiel from Uploaders (Closes: #553102).
-  * Build-Depends on libservlet2.5-java instead of libservlet2.3-java.
-  * Build-Depends on debhelper (= 7).
-  * Added debian/README.source.
-  * Updated Standards-Version to 3.8.3.
-
- -- Michael Koch konque...@gmx.de  Wed, 04 Nov 2009 23:46:15 +0100
-
-libitext1-java (1.4-2) unstable; urgency=low
-
-  * Upload to unstable.
-
- -- Torsten Werner twer...@debian.org  Sun, 16 Aug 2009 13:39:13 +0200
-
-libitext1-java (1.4-1) experimental; urgency=low
-
-  * Initial release -- iText version 1 is still needed for doxia. (Closes:
-#524870)
-
- -- Ludovic Claude ludovic.cla...@laposte.net  Sat, 18 Apr 2009 23:49:59 
+0100
-

Copied: tags/libitext1-java/1.4-4/debian/changelog (from rev 14096, 
trunk/libitext1-java/debian/changelog)
===
--- tags/libitext1-java/1.4-4/debian/changelog  (rev 0)
+++ tags/libitext1-java/1.4-4/debian/changelog  2011-08-08 19:03:05 UTC (rev 
14098)
@@ -0,0 +1,39 @@
+libitext1-java (1.4-4) unstable; urgency=low
+
+  * Team upload.
+
+  [ Miguel Landaeta ]
+  * Clarify licensing of some files that were suspected to be non-free.
+(Closes: #600338).
+  * Bump Standards-Version to 3.9.1. No changes were required.
+  * Remove redundant Section header for libitext1-java binary package.
+  * Add missing invocation of mh_clean in clean target.
+
+  [ Torsten Werner ]
+  * Switch to source format 3.0.
+
+ -- Torsten Werner twer...@debian.org  Mon, 08 Aug 2011 20:59:23 +0200
+
+libitext1-java (1.4-3) unstable; urgency=low
+
+  * Removed Gerardo Curiel from Uploaders (Closes: #553102).
+  * Build-Depends on libservlet2.5-java instead of libservlet2.3-java.
+  * Build-Depends on debhelper (= 7).
+  * Added debian/README.source.
+  * Updated Standards-Version to 3.8.3.
+
+ -- Michael Koch konque...@gmx.de  Wed, 04 Nov 2009 23:46:15 +0100
+
+libitext1-java (1.4-2) unstable; urgency=low
+
+  * Upload to unstable.
+
+ -- Torsten Werner twer...@debian.org  Sun, 16 Aug 2009 13:39:13 +0200
+
+libitext1-java (1.4-1) experimental; urgency=low
+
+  * Initial release -- iText version 1 is still needed for doxia. (Closes:
+#524870)
+
+ -- Ludovic Claude ludovic.cla...@laposte.net  Sat, 18 Apr 2009 23:49:59 
+0100
+

Deleted: tags/libitext1-java/1.4-4/debian/control
===
--- trunk/libitext1-java/debian/control 2011-08-08 18:06:08 UTC (rev 14095)
+++ tags/libitext1-java/1.4-4/debian/control2011-08-08 19:03:05 UTC (rev 
14098)
@@ -1,24 +0,0 @@
-Source: libitext1-java
-Section: java
-Priority: optional
-Maintainer: Debian Java Maintainers 
pkg-java-maintainers@lists.alioth.debian.org
-Uploaders: Michael Koch konque...@gmx.de, Ludovic Claude 
ludovic.cla...@laposte.net
-Build-Depends: ant, cdbs, debhelper (= 7), default-jdk, quilt
-Build-Depends-Indep: libservlet2.5-java, maven-repo-helper

Processing of libitext1-java_1.4-4_amd64.changes

2011-08-08 Thread Debian FTP Masters
libitext1-java_1.4-4_amd64.changes uploaded successfully to localhost
along with the files:
  libitext1-java_1.4-4.dsc
  libitext1-java_1.4-4.debian.tar.gz
  libitext1-java_1.4-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.


libitext1-java_1.4-4_amd64.changes ACCEPTED into unstable

2011-08-08 Thread Debian FTP Masters



Accepted:
libitext1-java_1.4-4.debian.tar.gz
  to main/libi/libitext1-java/libitext1-java_1.4-4.debian.tar.gz
libitext1-java_1.4-4.dsc
  to main/libi/libitext1-java/libitext1-java_1.4-4.dsc
libitext1-java_1.4-4_all.deb
  to main/libi/libitext1-java/libitext1-java_1.4-4_all.deb


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

Announcing to debian-devel-chan...@lists.debian.org
Closing bugs: 600338 


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] r14099 - in trunk/libjazzy-java/debian: . source

2011-08-08 Thread Torsten Werner
Author: twerner
Date: 2011-08-08 19:24:22 + (Mon, 08 Aug 2011)
New Revision: 14099

Added:
   trunk/libjazzy-java/debian/source/
   trunk/libjazzy-java/debian/source/format
Modified:
   trunk/libjazzy-java/debian/changelog
   trunk/libjazzy-java/debian/compat
   trunk/libjazzy-java/debian/control
   trunk/libjazzy-java/debian/rules
Log:
* Team upload
* New upstream release.
* Add real Homepage header. (Closes: #615367)
* Add Vcs-Svn header.
* Remove Arnaud from Uploaders list; no uploader left.
* Change Build-Depends: default-jdk.
* Adapt dependencies to current Java policy.
* Change Section: java.
* Switch to debhelper level 7.
* Update Standards-Version: 3.9.1.
* Switch to source format 3.0.

Modified: trunk/libjazzy-java/debian/changelog
===
--- trunk/libjazzy-java/debian/changelog2011-08-08 19:03:05 UTC (rev 
14098)
+++ trunk/libjazzy-java/debian/changelog2011-08-08 19:24:22 UTC (rev 
14099)
@@ -1,3 +1,19 @@
+libjazzy-java (0.5.2-1) unstable; urgency=low
+
+  * Team upload
+  * New upstream release.
+  * Add real Homepage header. (Closes: #615367)
+  * Add Vcs-Svn header.
+  * Remove Arnaud from Uploaders list; no uploader left.
+  * Change Build-Depends: default-jdk.
+  * Adapt dependencies to current Java policy.
+  * Change Section: java.
+  * Switch to debhelper level 7.
+  * Update Standards-Version: 3.9.1.
+  * Switch to source format 3.0.
+
+ -- Torsten Werner twer...@debian.org  Mon, 08 Aug 2011 21:23:25 +0200
+
 libjazzy-java (0.5.1a-3) unstable; urgency=low
 
   * debian/control: change section to libs

Modified: trunk/libjazzy-java/debian/compat
===
--- trunk/libjazzy-java/debian/compat   2011-08-08 19:03:05 UTC (rev 14098)
+++ trunk/libjazzy-java/debian/compat   2011-08-08 19:24:22 UTC (rev 14099)
@@ -1 +1 @@
-4
+7

Modified: trunk/libjazzy-java/debian/control
===
--- trunk/libjazzy-java/debian/control  2011-08-08 19:03:05 UTC (rev 14098)
+++ trunk/libjazzy-java/debian/control  2011-08-08 19:24:22 UTC (rev 14099)
@@ -1,20 +1,19 @@
 Source: libjazzy-java
-Section: libs
+Section: java
 Priority: optional
 Maintainer: Debian Java Maintainers 
pkg-java-maintainers@lists.alioth.debian.org
 Uploaders: Arnaud Vandyck av...@debian.org
-Build-Depends-Indep: debhelper (= 4.2.30), cdbs (= 0.4.8), ant, 
java-gcj-compat-dev
-Standards-Version: 3.7.2
+Build-Depends: debhelper (= 7), cdbs (= 0.4.8), ant, default-jdk
+Standards-Version: 3.9.1
+Homepage: http://jazzy.sourceforge.net
+Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/libjazzy-java
 
 Package: libjazzy-java
 Architecture: all
-Depends: java-gcj-compat | java1-runtime | java2-runtime
-Suggests: java-virtual-machine
+Depends: ${misc:Depends}
 Description: spell checker java library
  Jazzy is a 100% pure Java library implementing a spell checking
  algorithm similar to aspell. It may be used to spell check a variety
  of sources and can be added by java devlopers who want to add spell
  checking functionality to java applications easily.
- .
- Homepage: http://jazzy.sourceforge.net/
 

Modified: trunk/libjazzy-java/debian/rules
===
--- trunk/libjazzy-java/debian/rules2011-08-08 19:03:05 UTC (rev 14098)
+++ trunk/libjazzy-java/debian/rules2011-08-08 19:24:22 UTC (rev 14099)
@@ -7,11 +7,11 @@
 include /usr/share/cdbs/1/rules/debhelper.mk
 include /usr/share/cdbs/1/class/ant.mk
 
-JAVA_HOME_DIRS   := /usr/lib/jvm/java-gcj
+JAVA_HOME_DIRS   := /usr/lib/jvm/default-java
 DEB_ANT_BUILD_TARGET := library-all library-core library-swing examples javadoc
 
 LIBRARY=jazzy
-VERSION=0.5.1
+VERSION=0.5.2
 
 install/libjazzy-java::
install -m 644 dist/lib/jazzy.jar 
debian/libjazzy-java/usr/share/java/jazzy-$(VERSION).jar

Added: trunk/libjazzy-java/debian/source/format
===
--- trunk/libjazzy-java/debian/source/format(rev 0)
+++ trunk/libjazzy-java/debian/source/format2011-08-08 19:24:22 UTC (rev 
14099)
@@ -0,0 +1 @@
+3.0 (quilt)


___
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] r14100 - in tags/libjazzy-java: . 0.5.2-1/debian

2011-08-08 Thread Torsten Werner
Author: twerner
Date: 2011-08-08 19:26:13 + (Mon, 08 Aug 2011)
New Revision: 14100

Added:
   tags/libjazzy-java/0.5.2-1/
   tags/libjazzy-java/0.5.2-1/debian/changelog
   tags/libjazzy-java/0.5.2-1/debian/compat
   tags/libjazzy-java/0.5.2-1/debian/control
   tags/libjazzy-java/0.5.2-1/debian/rules
   tags/libjazzy-java/0.5.2-1/debian/source/
Removed:
   tags/libjazzy-java/0.5.2-1/debian/changelog
   tags/libjazzy-java/0.5.2-1/debian/compat
   tags/libjazzy-java/0.5.2-1/debian/control
   tags/libjazzy-java/0.5.2-1/debian/rules
Log:
[svn-buildpackage] Tagging libjazzy-java 0.5.2-1

Deleted: tags/libjazzy-java/0.5.2-1/debian/changelog
===
--- trunk/libjazzy-java/debian/changelog2011-08-08 19:03:05 UTC (rev 
14098)
+++ tags/libjazzy-java/0.5.2-1/debian/changelog 2011-08-08 19:26:13 UTC (rev 
14100)
@@ -1,69 +0,0 @@
-libjazzy-java (0.5.1a-3) unstable; urgency=low
-
-  * debian/control: change section to libs
-
- -- Arnaud Vandyck av...@debian.org  Wed, 25 Apr 2007 13:23:26 +0200
-
-libjazzy-java (0.5.1a-2) unstable; urgency=low
-
-  * debian/copyright: added copyright holder and date and corrected the
-reference of the LGPL on Debian system.
-
- -- Arnaud Vandyck av...@debian.org  Thu, 29 Mar 2007 16:44:18 +0200
-
-libjazzy-java (0.5.1a-1) unstable; urgency=low
-
-  * renamed the source tar gz to move to main.
-
- -- Arnaud Vandyck av...@debian.org  Fri,  2 Feb 2007 16:15:55 +0100
-
-libjazzy-java (0.5.1-2) unstable; urgency=low
-
-  * move to main (thanks to Andreas Jochens for the patch and tests)
-(closes: #391170).
-  * debian/control: 
-+ removed Wolfgang Baër from uploaders
-+ build with java-gcj-compat-dev, runtime dependency java-gcj-compat
-+ standards-version to 3.7.2, nothing to do.
-  * debian/rules: removed unecessary stuff, changed JAVA_HOME_DIRS to
-match java-gcj-compat-dev
-  * debian/ant.properties: added to set java version target (1.4)
-
- -- Arnaud Vandyck av...@debian.org  Thu,  1 Feb 2007 11:44:20 +0100
-
-libjazzy-java (0.5.1-1) unstable; urgency=low
-
-  * New upstream release
-  * Changed libant1.6-java build-dep to ant
-  * Support the JAVA_HOME directories used by java-package (closes: #306767)
-  * Changed Depends to kaffe | java1-runtime | java2-runtim
-as the core stuff is runnable by all vm's in debian
-  * Standards-Version 3.6.2 - no changes
-  * Removed README.Debian
-  * Only build one jar for everything (small enough)
-  * Moved install/link files to rules
-  * Added myself to uploaders
-
-  * Upload sponsored by Arnaud Vandyck
-
- -- Wolfgang Baer wb...@gmx.de  Tue, 16 Aug 2005 20:37:19 +0200
-
-libjazzy-java (0.5-3) unstable; urgency=low
-
-  * build with ant1.6
-
- -- Arnaud Vandyck av...@debian.org  Tue, 22 Mar 2005 11:53:26 +0100
-
-libjazzy-java (0.5-2) unstable; urgency=low
-
-  * easy the build on AMD64, thanks to Kaare Hviid for the patch (closes:
-#274845).
-
- -- Arnaud Vandyck av...@debian.org  Mon, 11 Oct 2004 11:04:52 +0200
-
-libjazzy-java (0.5-1) unstable; urgency=low
-
-  * Initial Release, closes: #211070.
-
- -- Arnaud Vandyck av...@debian.org  Mon, 10 May 2004 23:37:08 +0200
-

Copied: tags/libjazzy-java/0.5.2-1/debian/changelog (from rev 14099, 
trunk/libjazzy-java/debian/changelog)
===
--- tags/libjazzy-java/0.5.2-1/debian/changelog (rev 0)
+++ tags/libjazzy-java/0.5.2-1/debian/changelog 2011-08-08 19:26:13 UTC (rev 
14100)
@@ -0,0 +1,85 @@
+libjazzy-java (0.5.2-1) unstable; urgency=low
+
+  * Team upload
+  * New upstream release.
+  * Add real Homepage header. (Closes: #615367)
+  * Add Vcs-Svn header.
+  * Remove Arnaud from Uploaders list; no uploader left.
+  * Change Build-Depends: default-jdk.
+  * Adapt dependencies to current Java policy.
+  * Change Section: java.
+  * Switch to debhelper level 7.
+  * Update Standards-Version: 3.9.1.
+  * Switch to source format 3.0.
+
+ -- Torsten Werner twer...@debian.org  Mon, 08 Aug 2011 21:23:25 +0200
+
+libjazzy-java (0.5.1a-3) unstable; urgency=low
+
+  * debian/control: change section to libs
+
+ -- Arnaud Vandyck av...@debian.org  Wed, 25 Apr 2007 13:23:26 +0200
+
+libjazzy-java (0.5.1a-2) unstable; urgency=low
+
+  * debian/copyright: added copyright holder and date and corrected the
+reference of the LGPL on Debian system.
+
+ -- Arnaud Vandyck av...@debian.org  Thu, 29 Mar 2007 16:44:18 +0200
+
+libjazzy-java (0.5.1a-1) unstable; urgency=low
+
+  * renamed the source tar gz to move to main.
+
+ -- Arnaud Vandyck av...@debian.org  Fri,  2 Feb 2007 16:15:55 +0100
+
+libjazzy-java (0.5.1-2) unstable; urgency=low
+
+  * move to main (thanks to Andreas Jochens for the patch and tests)
+(closes: #391170).
+  * debian/control: 
++ removed Wolfgang Baër from uploaders
++ build with java-gcj-compat-dev, runtime dependency java-gcj-compat
++ standards-version to 3.7.2, nothing to do.
+  * 

Processing of libjazzy-java_0.5.2-1_amd64.changes

2011-08-08 Thread Debian FTP Masters
libjazzy-java_0.5.2-1_amd64.changes uploaded successfully to localhost
along with the files:
  libjazzy-java_0.5.2-1.dsc
  libjazzy-java_0.5.2.orig.tar.gz
  libjazzy-java_0.5.2-1.debian.tar.gz
  libjazzy-java_0.5.2-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.


libjazzy-java_0.5.2-1_amd64.changes ACCEPTED into unstable

2011-08-08 Thread Debian FTP Masters



Accepted:
libjazzy-java_0.5.2-1.debian.tar.gz
  to main/libj/libjazzy-java/libjazzy-java_0.5.2-1.debian.tar.gz
libjazzy-java_0.5.2-1.dsc
  to main/libj/libjazzy-java/libjazzy-java_0.5.2-1.dsc
libjazzy-java_0.5.2-1_all.deb
  to main/libj/libjazzy-java/libjazzy-java_0.5.2-1_all.deb
libjazzy-java_0.5.2.orig.tar.gz
  to main/libj/libjazzy-java/libjazzy-java_0.5.2.orig.tar.gz


Override entries for your package:
libjazzy-java_0.5.2-1.dsc - source java
libjazzy-java_0.5.2-1_all.deb - optional java

Announcing to debian-devel-chan...@lists.debian.org
Closing bugs: 615367 


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#600338: marked as done (May contain non-free data)

2011-08-08 Thread Debian Bug Tracking System
Your message dated Mon, 08 Aug 2011 19:17:20 +
with message-id e1qqvkc-0003gd...@franck.debian.org
and subject line Bug#600338: fixed in libitext1-java 1.4-4
has caused the Debian Bug report #600338,
regarding May contain non-free data
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
600338: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=600338
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: libitext1-java
Version: all
Severity: serious
Justification: Unmodifiable/distributable files
User: k...@kgoetz.id.au
Usertags: libreplanet

Per a redhat bug report [1] and a related debian bug [2], itext has a
number of non dfsg files.

/*
 * Copyright 1998 by Sun Microsystems, Inc.,
 * 901 San Antonio Road, Palo Alto, California, 94303, U.S.A.
 * All rights reserved.
 *
 * This software is the confidential and proprietary information
 * of Sun Microsystems, Inc. (Confidential Information).  You
 * shall not disclose such Confidential Information and shall use
 * it only in accordance with the terms of the license agreement
 * you entered into with Sun.
 */


[1] https://bugzilla.redhat.com/show_bug.cgi?id=236309
[2] http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=519466

Please make a dfsg free version of the package.
thanks,
kk

-- 
Karl Goetz, (Kamping_Kaiser / VK5FOSS)
Debian contributor / gNewSense Maintainer
http://www.kgoetz.id.au
No, I won't join your social networking group


signature.asc
Description: PGP signature
---End Message---
---BeginMessage---
Source: libitext1-java
Source-Version: 1.4-4

We believe that the bug you reported is fixed in the latest version of
libitext1-java, which is due to be installed in the Debian FTP archive:

libitext1-java_1.4-4.debian.tar.gz
  to main/libi/libitext1-java/libitext1-java_1.4-4.debian.tar.gz
libitext1-java_1.4-4.dsc
  to main/libi/libitext1-java/libitext1-java_1.4-4.dsc
libitext1-java_1.4-4_all.deb
  to main/libi/libitext1-java/libitext1-java_1.4-4_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 600...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Torsten Werner twer...@debian.org (supplier of updated libitext1-java package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 08 Aug 2011 20:59:23 +0200
Source: libitext1-java
Binary: libitext1-java
Architecture: source all
Version: 1.4-4
Distribution: unstable
Urgency: low
Maintainer: Debian Java Maintainers 
pkg-java-maintainers@lists.alioth.debian.org
Changed-By: Torsten Werner twer...@debian.org
Description: 
 libitext1-java - Java Library to generate PDF on the Fly
Closes: 600338
Changes: 
 libitext1-java (1.4-4) unstable; urgency=low
 .
   * Team upload.
 .
   [ Miguel Landaeta ]
   * Clarify licensing of some files that were suspected to be non-free.
 (Closes: #600338).
   * Bump Standards-Version to 3.9.1. No changes were required.
   * Remove redundant Section header for libitext1-java binary package.
   * Add missing invocation of mh_clean in clean target.
 .
   [ Torsten Werner ]
   * Switch to source format 3.0.
Checksums-Sha1: 
 1bc65d76ddcb046494455214025065f9c26e0096 1396 libitext1-java_1.4-4.dsc
 51c304821f8a806b47e14a76719a66f44c6e79a4 7253 
libitext1-java_1.4-4.debian.tar.gz
 894c22fe6c87554e6aeeb4d77e2ac7317ef22fe4 1273908 libitext1-java_1.4-4_all.deb
Checksums-Sha256: 
 e4a5cfebb01a976cfe0583cb3ef3a3b9a059d520c2821f1e84eca051ef57fe61 1396 
libitext1-java_1.4-4.dsc
 c97b5b55a2a210d867b8e0a84f7030f6d8c3a4308272e4a9962084f4f8e9861c 7253 
libitext1-java_1.4-4.debian.tar.gz
 6927ad405f8b6ebcef9fb653d9ebb2d488484963b6e19932dbeb491cf2f04cab 1273908 
libitext1-java_1.4-4_all.deb
Files: 
 397ff508e4fc40692376a335e4156064 1396 java optional libitext1-java_1.4-4.dsc
 870e12b580e7ab323ce14db3de99acb5 7253 java optional 
libitext1-java_1.4-4.debian.tar.gz
 14696c1648de8a41b1d96f9b3b540bf3 1273908 java optional 
libitext1-java_1.4-4_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iEYEARECAAYFAk5AMuAACgkQfY3dicTPjsPtQgCff9PB0pW9urFneE7l1gWQ5X2n
ASIAniOebEAkd+TKa+fX4QNjSs0sUlRU
=NHKS
-END PGP SIGNATURE-


---End Message---
__
This is the maintainer address of Debian's Java team

Bug#615367: marked as done (libjazzy-java: please use Homepage field to point to upstream homepage)

2011-08-08 Thread Debian Bug Tracking System
Your message dated Mon, 08 Aug 2011 19:32:20 +
with message-id e1qqvyi-0005lw...@franck.debian.org
and subject line Bug#615367: fixed in libjazzy-java 0.5.2-1
has caused the Debian Bug report #615367,
regarding libjazzy-java: please use Homepage field to point to upstream homepage
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
615367: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=615367
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: libjazzy-java
Severity: minor
User: debian...@lists.debian.org
Usertags: homepage-field

[ This is an automated bug report, part of the mass bug filing discussed
  at http://lists.debian.org/debian-devel/2011/02/msg00367.html. The
  submitter is Stefano Zacchiroli, reachable at z...@debian.org. ]

According to lintian, libjazzy-java uses its long description
to point to upstream homepage, following an old Developer's Reference
recommendation. That practice has various drawbacks, including the
inability to automatically process homepage information from
package-related services such as packages.d.o, the PTS, etc. Starting
from version 1.14.6, dpkg supports Homepage: as a regular field in
debian/control. You can check Debian Policy § 5.6.23 for more information
http://www.debian.org/doc/debian-policy/ch-controlfields.html#s-f-Homepage

Please remove the deprecated pseudo header from the long description of
libjazzy-java and turn it into a regular debian/control field.

In case of multiple binary packages, doing so would also allow to factor
out homepage information into the source stanza of debian/control,
instead of repeating it in each binary stanza.

Cheers.



---End Message---
---BeginMessage---
Source: libjazzy-java
Source-Version: 0.5.2-1

We believe that the bug you reported is fixed in the latest version of
libjazzy-java, which is due to be installed in the Debian FTP archive:

libjazzy-java_0.5.2-1.debian.tar.gz
  to main/libj/libjazzy-java/libjazzy-java_0.5.2-1.debian.tar.gz
libjazzy-java_0.5.2-1.dsc
  to main/libj/libjazzy-java/libjazzy-java_0.5.2-1.dsc
libjazzy-java_0.5.2-1_all.deb
  to main/libj/libjazzy-java/libjazzy-java_0.5.2-1_all.deb
libjazzy-java_0.5.2.orig.tar.gz
  to main/libj/libjazzy-java/libjazzy-java_0.5.2.orig.tar.gz



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 615...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Torsten Werner twer...@debian.org (supplier of updated libjazzy-java package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 08 Aug 2011 21:23:25 +0200
Source: libjazzy-java
Binary: libjazzy-java
Architecture: source all
Version: 0.5.2-1
Distribution: unstable
Urgency: low
Maintainer: Debian Java Maintainers 
pkg-java-maintainers@lists.alioth.debian.org
Changed-By: Torsten Werner twer...@debian.org
Description: 
 libjazzy-java - spell checker java library
Closes: 615367
Changes: 
 libjazzy-java (0.5.2-1) unstable; urgency=low
 .
   * Team upload
   * New upstream release.
   * Add real Homepage header. (Closes: #615367)
   * Add Vcs-Svn header.
   * Remove Arnaud from Uploaders list; no uploader left.
   * Change Build-Depends: default-jdk.
   * Adapt dependencies to current Java policy.
   * Change Section: java.
   * Switch to debhelper level 7.
   * Update Standards-Version: 3.9.1.
   * Switch to source format 3.0.
Checksums-Sha1: 
 948add6a649737e9ca7c17a578167d618b114c36 1232 libjazzy-java_0.5.2-1.dsc
 4de34b40c9017989e0739d9d8ef93438c52b5ea6 87880 libjazzy-java_0.5.2.orig.tar.gz
 134020206caf298d9e38e31e1065f191366a5de5 3291 
libjazzy-java_0.5.2-1.debian.tar.gz
 448ad36c4ea2e299eebb671aeee41059c26a2d90 309752 libjazzy-java_0.5.2-1_all.deb
Checksums-Sha256: 
 c919450c8548f727e2aed458164ff6d8d4f52c80b08b31e6143243d69dbc5ccb 1232 
libjazzy-java_0.5.2-1.dsc
 1f4e7377aa2d9ed69392773ba41c3d5de100d340a31bb688caa2d50383e511f3 87880 
libjazzy-java_0.5.2.orig.tar.gz
 be49dbc64a4f7db553b1076879718f03ce64f26486a771ffdda6727f41d6 3291 
libjazzy-java_0.5.2-1.debian.tar.gz
 440e95308070bb8c53cdf90a617c3a06d867c33c1ddafb189360c3f0891b4833 309752 
libjazzy-java_0.5.2-1_all.deb
Files: 
 58befb0cfda867338e2a488ac558c0a8 1232 java optional libjazzy-java_0.5.2-1.dsc
 

[pkg-java] r14101 - in trunk/libjboss-aop-java/debian: . patches

2011-08-08 Thread Torsten Werner
Author: twerner
Date: 2011-08-08 19:55:43 + (Mon, 08 Aug 2011)
New Revision: 14101

Added:
   
trunk/libjboss-aop-java/debian/patches/0001-add-class-org.jboss.lang.Enum.patch
   
trunk/libjboss-aop-java/debian/patches/0002-catch-exception-in-class-Condition.patch
   
trunk/libjboss-aop-java/debian/patches/0003-add-method-createDocletTag-required-by-qdox.patch
Removed:
   trunk/libjboss-aop-java/debian/patches/catch_exception.diff
   trunk/libjboss-aop-java/debian/patches/enum.diff
   trunk/libjboss-aop-java/debian/patches/qdox.diff
Modified:
   trunk/libjboss-aop-java/debian/changelog
   trunk/libjboss-aop-java/debian/patches/series
   trunk/libjboss-aop-java/debian/watch
Log:
* Update debian/watch.
* Reformat patches.

Modified: trunk/libjboss-aop-java/debian/changelog
===
--- trunk/libjboss-aop-java/debian/changelog2011-08-08 19:26:13 UTC (rev 
14100)
+++ trunk/libjboss-aop-java/debian/changelog2011-08-08 19:55:43 UTC (rev 
14101)
@@ -1,3 +1,10 @@
+libjboss-aop-java (2.0.1.GA-2) unstable; urgency=low
+
+  * Update debian/watch.
+  * Reformat patches.
+
+ -- Torsten Werner twer...@debian.org  Mon, 08 Aug 2011 21:49:17 +0200
+
 libjboss-aop-java (2.0.1.GA-1) unstable; urgency=low
 
   * New upstream release

Added: 
trunk/libjboss-aop-java/debian/patches/0001-add-class-org.jboss.lang.Enum.patch
===
--- 
trunk/libjboss-aop-java/debian/patches/0001-add-class-org.jboss.lang.Enum.patch 
(rev 0)
+++ 
trunk/libjboss-aop-java/debian/patches/0001-add-class-org.jboss.lang.Enum.patch 
2011-08-08 19:55:43 UTC (rev 14101)
@@ -0,0 +1,87 @@
+From: Debian Java Maintainers pkg-java-maintainers@lists.alioth.debian.org
+Date: Mon, 8 Aug 2011 21:39:30 +0200
+Subject: [PATCH] add class org.jboss.lang.Enum
+
+---
+ src/aspect-framework/main/org/jboss/lang/Enum.java |   71 
+ 1 files changed, 71 insertions(+), 0 deletions(-)
+ create mode 100644 src/aspect-framework/main/org/jboss/lang/Enum.java
+
+diff --git a/src/aspect-framework/main/org/jboss/lang/Enum.java 
b/src/aspect-framework/main/org/jboss/lang/Enum.java
+new file mode 100644
+index 000..0c2cb6b
+--- /dev/null
 b/src/aspect-framework/main/org/jboss/lang/Enum.java
+@@ -0,0 +1,71 @@
++/*
++  * JBoss, Home of Professional Open Source
++  * Copyright 2005, JBoss Inc., and individual contributors as indicated
++  * by the @authors tag. See the copyright.txt in the distribution for a
++  * full listing of individual contributors.
++  *
++  * This is free software; you can redistribute it and/or modify it
++  * under the terms of the GNU Lesser General Public License as
++  * published by the Free Software Foundation; either version 2.1 of
++  * the License, or (at your option) any later version.
++  *
++  * This software is distributed in the hope that it will be useful,
++  * but WITHOUT ANY WARRANTY; without even the implied warranty of
++  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
++  * Lesser General Public License for more details.
++  *
++  * You should have received a copy of the GNU Lesser General Public
++  * License along with this software; if not, write to the Free
++  * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
++  * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
++  */
++package org.jboss.lang;
++
++/**
++ * Base class for JDK 1.4 Enums
++ *
++ * @author a href=mailto:b...@jboss.org;Bill Burke/a
++ * @version $Revision: 37406 $
++ *
++ **/
++public abstract class Enum implements java.io.Serializable
++{
++   protected final transient String name;
++   protected final int ordinal;
++
++   protected Enum(String name, int ordinal)
++   {
++  this.name = name;
++  this.ordinal = ordinal;
++   }
++   public String toString()
++   {
++  return name;
++   }
++
++   public String name()
++   {
++  return name;
++   }
++
++   public int ordinal()
++   {
++  return ordinal;
++   }
++
++   public boolean equals(Object o)
++   {
++  if (o == this) return true;
++  if (o == null) return false;
++  if (!(o instanceof Enum)) return false;
++  if (!o.getClass().equals(this.getClass())) return false;
++  Enum en = (Enum)o;
++  return en.ordinal == this.ordinal;
++   }
++
++   public int hashCode()
++   {
++  return name.hashCode();
++   }
++
++}
+-- 

Added: 
trunk/libjboss-aop-java/debian/patches/0002-catch-exception-in-class-Condition.patch
===
--- 
trunk/libjboss-aop-java/debian/patches/0002-catch-exception-in-class-Condition.patch
(rev 0)
+++ 
trunk/libjboss-aop-java/debian/patches/0002-catch-exception-in-class-Condition.patch
2011-08-08 19:55:43 UTC (rev 14101)
@@ -0,0 +1,24 @@
+From: Debian Java Maintainers pkg-java-maintainers@lists.alioth.debian.org
+Date: Mon, 8 

[pkg-java] r14102 - in trunk/libjboss-aop-java/debian: . source

2011-08-08 Thread Torsten Werner
Author: twerner
Date: 2011-08-08 19:57:45 + (Mon, 08 Aug 2011)
New Revision: 14102

Added:
   trunk/libjboss-aop-java/debian/source/
   trunk/libjboss-aop-java/debian/source/format
Modified:
   trunk/libjboss-aop-java/debian/changelog
   trunk/libjboss-aop-java/debian/control
   trunk/libjboss-aop-java/debian/rules
Log:
* Switch to source format 3.0.
* Remove useless Depends.

Modified: trunk/libjboss-aop-java/debian/changelog
===
--- trunk/libjboss-aop-java/debian/changelog2011-08-08 19:55:43 UTC (rev 
14101)
+++ trunk/libjboss-aop-java/debian/changelog2011-08-08 19:57:45 UTC (rev 
14102)
@@ -2,8 +2,10 @@
 
   * Update debian/watch.
   * Reformat patches.
+  * Switch to source format 3.0.
+  * Remove useless Depends.
 
- -- Torsten Werner twer...@debian.org  Mon, 08 Aug 2011 21:49:17 +0200
+ -- Torsten Werner twer...@debian.org  Mon, 08 Aug 2011 21:57:06 +0200
 
 libjboss-aop-java (2.0.1.GA-1) unstable; urgency=low
 

Modified: trunk/libjboss-aop-java/debian/control
===
--- trunk/libjboss-aop-java/debian/control  2011-08-08 19:55:43 UTC (rev 
14101)
+++ trunk/libjboss-aop-java/debian/control  2011-08-08 19:57:45 UTC (rev 
14102)
@@ -3,7 +3,7 @@
 Priority: optional
 Maintainer: Debian Java Maintainers 
pkg-java-maintainers@lists.alioth.debian.org
 Uploaders: Varun Hiremath va...@debian.org, Torsten Werner 
twer...@debian.org
-Build-Depends: cdbs, debhelper (= 6), quilt
+Build-Depends: cdbs, debhelper (= 6)
 Build-Depends-Indep: ant, default-jdk, libjavassist-java (= 3.6), 
  libtrove-java, libqdox-java, junit, libcommons-logging-java, ant-optional,
  liblog4j1.2-java, bsh, libservlet2.4-java, libjboss-common-java,
@@ -18,7 +18,7 @@
 
 Package: libjboss-aop-java
 Architecture: all
-Depends: ${shlibs:Depends}, ${misc:Depends}, default-jre | java2-runtime
+Depends: ${misc:Depends}
 Description: JBoss Aspect Oriented Programming (AOP) framework
  JBoss AOP is a 100% Pure Java aspected oriented framework usuable in
  any programming environment or tightly integrated with our

Modified: trunk/libjboss-aop-java/debian/rules
===
--- trunk/libjboss-aop-java/debian/rules2011-08-08 19:55:43 UTC (rev 
14101)
+++ trunk/libjboss-aop-java/debian/rules2011-08-08 19:57:45 UTC (rev 
14102)
@@ -2,7 +2,6 @@
 
 include /usr/share/cdbs/1/class/ant.mk
 include /usr/share/cdbs/1/rules/debhelper.mk
-include /usr/share/cdbs/1/rules/patchsys-quilt.mk
 
 JAVA_HOME:= /usr/lib/jvm/default-java
 DEB_ANT_BUILD_TARGET := jar

Added: trunk/libjboss-aop-java/debian/source/format
===
--- trunk/libjboss-aop-java/debian/source/format
(rev 0)
+++ trunk/libjboss-aop-java/debian/source/format2011-08-08 19:57:45 UTC 
(rev 14102)
@@ -0,0 +1 @@
+3.0 (quilt)


___
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] r14103 - in tags/libjboss-aop-java: . 2.0.1.GA-2/debian 2.0.1.GA-2/debian/patches

2011-08-08 Thread Torsten Werner
Author: twerner
Date: 2011-08-08 19:59:22 + (Mon, 08 Aug 2011)
New Revision: 14103

Added:
   tags/libjboss-aop-java/2.0.1.GA-2/
   tags/libjboss-aop-java/2.0.1.GA-2/debian/changelog
   tags/libjboss-aop-java/2.0.1.GA-2/debian/control
   
tags/libjboss-aop-java/2.0.1.GA-2/debian/patches/0001-add-class-org.jboss.lang.Enum.patch
   
tags/libjboss-aop-java/2.0.1.GA-2/debian/patches/0002-catch-exception-in-class-Condition.patch
   
tags/libjboss-aop-java/2.0.1.GA-2/debian/patches/0003-add-method-createDocletTag-required-by-qdox.patch
   tags/libjboss-aop-java/2.0.1.GA-2/debian/patches/series
   tags/libjboss-aop-java/2.0.1.GA-2/debian/rules
   tags/libjboss-aop-java/2.0.1.GA-2/debian/source/
   tags/libjboss-aop-java/2.0.1.GA-2/debian/watch
Removed:
   tags/libjboss-aop-java/2.0.1.GA-2/debian/changelog
   tags/libjboss-aop-java/2.0.1.GA-2/debian/control
   tags/libjboss-aop-java/2.0.1.GA-2/debian/patches/catch_exception.diff
   tags/libjboss-aop-java/2.0.1.GA-2/debian/patches/enum.diff
   tags/libjboss-aop-java/2.0.1.GA-2/debian/patches/qdox.diff
   tags/libjboss-aop-java/2.0.1.GA-2/debian/patches/series
   tags/libjboss-aop-java/2.0.1.GA-2/debian/rules
   tags/libjboss-aop-java/2.0.1.GA-2/debian/watch
Log:
[svn-buildpackage] Tagging libjboss-aop-java 2.0.1.GA-2

Deleted: tags/libjboss-aop-java/2.0.1.GA-2/debian/changelog
===
--- trunk/libjboss-aop-java/debian/changelog2011-08-08 19:26:13 UTC (rev 
14100)
+++ tags/libjboss-aop-java/2.0.1.GA-2/debian/changelog  2011-08-08 19:59:22 UTC 
(rev 14103)
@@ -1,93 +0,0 @@
-libjboss-aop-java (2.0.1.GA-1) unstable; urgency=low
-
-  * New upstream release
-  * Disable compiler warnings.
-  * Add patch qdox.diff thanks to Luke Cycon. (Closes: #543073)
-  * Switch to default-java.
-  * Update Standards-Version: 3.8.3.
-  * Change Section: java.
-  * Improve get-orig-source target in debian/rules.
-  * Convert copyright file to dep5 format.
-  * Rename and improve README.Debian-source.
-
- -- Torsten Werner twer...@debian.org  Fri, 18 Sep 2009 13:42:41 +0200
-
-libjboss-aop-java (2.0.0.SP1-1) unstable; urgency=low
-
-  * New upstream release
-
- -- Torsten Werner twer...@debian.org  Thu, 04 Dec 2008 22:56:45 +0100
-
-libjboss-aop-java (2.0.0.GA+dak1-1) unstable; urgency=low
-
-  * Add class org.jboss.aop.lang.Enum as patch enum.diff from version 1.5 to
-support jbossas4.
-  * Move package to main.
-
- -- Torsten Werner twer...@debian.org  Tue, 18 Nov 2008 19:26:37 +0100
-
-libjboss-aop-java (2.0.0.GA-1) unstable; urgency=low
-
-  * New upstream release
-  * Improve description.
-
- -- Torsten Werner twer...@debian.org  Sat, 08 Nov 2008 22:13:47 +0100
-
-libjboss-aop-java (2.0.0.CR13-1) unstable; urgency=low
-
-  * New upstream release
-  * Bump Standards-Version to 3.8.0
-
- -- Varun Hiremath va...@debian.org  Mon, 23 Jun 2008 17:50:07 +0530
-
-libjboss-aop-java (2.0.0.CR8-2) unstable; urgency=low
-
-  * Merge jboss-aspects.jar into jboss-aop.jar to avoid conflicts with
-libjboss-aspects-java (Closes: #480690)
-
- -- Varun Hiremath va...@debian.org  Tue, 20 May 2008 10:06:36 +0530
-
-libjboss-aop-java (2.0.0.CR8-1) unstable; urgency=low
-
-  * New update release
-
- -- Varun Hiremath va...@debian.org  Thu, 01 May 2008 11:05:43 +0530
-
-libjboss-aop-java (2.0.0.CR4-2) unstable; urgency=low
-
-  [ Varun Hiremath ]
-  * Add libjboss-reflect-java and libjboss-metadata-java to Build-Depends
-  * debian/rules: Update jar names
-
-  [ Michael Koch ]
-  * Use http:// URL instead of https:// URL in watch file.
-
- -- Varun Hiremath va...@debian.org  Wed, 23 Apr 2008 14:46:02 +0530
-
-libjboss-aop-java (2.0.0.CR4-1) unstable; urgency=low
-
-  * New upstream release
-  * Bump debhelper compat to 6
-
- -- Varun Hiremath va...@debian.org  Sun, 03 Feb 2008 01:31:44 +0530
-
-libjboss-aop-java (2.0.0.CR3-1) unstable; urgency=low
-
-  * New upstream release
-  * Minor fixes in debian/orig-tar.sh
-
- -- Varun Hiremath va...@debian.org  Sun, 13 Jan 2008 02:46:11 +0530
-
-libjboss-aop-java (2.0.0.CR1-1) unstable; urgency=low
-
-  * new upstream release
-  * Change Standards-Version: 3.7.3.
-  * Add missing Build-Depends: ant-optional.
-
- -- Torsten Werner twer...@debian.org  Sun, 16 Dec 2007 19:12:26 +0100
-
-libjboss-aop-java (2.0.0~beta2-1) unstable; urgency=low
-
-  * Initial release (Closes: #450765)
-
- -- Varun Hiremath varunhirem...@gmail.com  Tue, 24 Apr 2007 17:19:10 +0530

Copied: tags/libjboss-aop-java/2.0.1.GA-2/debian/changelog (from rev 14102, 
trunk/libjboss-aop-java/debian/changelog)
===
--- tags/libjboss-aop-java/2.0.1.GA-2/debian/changelog  
(rev 0)
+++ tags/libjboss-aop-java/2.0.1.GA-2/debian/changelog  2011-08-08 19:59:22 UTC 
(rev 14103)
@@ -0,0 +1,102 @@
+libjboss-aop-java (2.0.1.GA-2) unstable; urgency=low
+
+  * Update debian/watch.
+  * Reformat patches.
+  * Switch to source format 3.0.
+  * Remove 

Processing of libjboss-aop-java_2.0.1.GA-2_amd64.changes

2011-08-08 Thread Debian FTP Masters
libjboss-aop-java_2.0.1.GA-2_amd64.changes uploaded successfully to localhost
along with the files:
  libjboss-aop-java_2.0.1.GA-2.dsc
  libjboss-aop-java_2.0.1.GA-2.debian.tar.gz
  libjboss-aop-java_2.0.1.GA-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.


[pkg-java] r14104 - trunk/libjboss-classloader-java/debian

2011-08-08 Thread Torsten Werner
Author: twerner
Date: 2011-08-08 20:25:13 + (Mon, 08 Aug 2011)
New Revision: 14104

Modified:
   trunk/libjboss-classloader-java/debian/changelog
   trunk/libjboss-classloader-java/debian/rules
Log:
New (but not newest 2.2.1.GA) upstream release.

Modified: trunk/libjboss-classloader-java/debian/changelog
===
--- trunk/libjboss-classloader-java/debian/changelog2011-08-08 19:59:22 UTC 
(rev 14103)
+++ trunk/libjboss-classloader-java/debian/changelog2011-08-08 20:25:13 UTC 
(rev 14104)
@@ -1,3 +1,9 @@
+libjboss-classloader-java (2.0.5.GA-1) unstable; urgency=low
+
+  * New (but not newest 2.2.1.GA) upstream release.
+
+ -- Torsten Werner twer...@debian.org  Mon, 08 Aug 2011 22:03:04 +0200
+
 libjboss-classloader-java (2.0.2.GA-1) unstable; urgency=low
 
   * New upstream release

Modified: trunk/libjboss-classloader-java/debian/rules
===
--- trunk/libjboss-classloader-java/debian/rules2011-08-08 19:59:22 UTC 
(rev 14103)
+++ trunk/libjboss-classloader-java/debian/rules2011-08-08 20:25:13 UTC 
(rev 14104)
@@ -21,4 +21,4 @@
done
 
 get-orig-source:
-   -uscan --upstream-version 0
+   uscan --download-version $(DEB_UPSTREAM_VERSION) --force-download 
--rename


___
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] r14105 - in trunk/libjboss-classloader-java/debian: . source

2011-08-08 Thread Torsten Werner
Author: twerner
Date: 2011-08-08 20:34:35 + (Mon, 08 Aug 2011)
New Revision: 14105

Added:
   trunk/libjboss-classloader-java/debian/source/
   trunk/libjboss-classloader-java/debian/source/format
Modified:
   trunk/libjboss-classloader-java/debian/changelog
   trunk/libjboss-classloader-java/debian/control
Log:
* Newer (but not newest 2.2.1.GA, not even 2.0.9.GA) upstream release.
  2.0.7.GA FTBFS currently.
* Remove Build-Depends: quilt.
* Clean up Depends.
* Switch to source format 3.0.
* Change Section: java.

Modified: trunk/libjboss-classloader-java/debian/changelog
===
--- trunk/libjboss-classloader-java/debian/changelog2011-08-08 20:25:13 UTC 
(rev 14104)
+++ trunk/libjboss-classloader-java/debian/changelog2011-08-08 20:34:35 UTC 
(rev 14105)
@@ -1,8 +1,13 @@
-libjboss-classloader-java (2.0.5.GA-1) unstable; urgency=low
+libjboss-classloader-java (2.0.6.GA-1) unstable; urgency=low
 
-  * New (but not newest 2.2.1.GA) upstream release.
+  * Newer (but not newest 2.2.1.GA, not even 2.0.9.GA) upstream release.
+2.0.7.GA FTBFS currently.
+  * Remove Build-Depends: quilt.
+  * Clean up Depends.
+  * Switch to source format 3.0.
+  * Change Section: java.
 
- -- Torsten Werner twer...@debian.org  Mon, 08 Aug 2011 22:03:04 +0200
+ -- Torsten Werner twer...@debian.org  Mon, 08 Aug 2011 22:34:13 +0200
 
 libjboss-classloader-java (2.0.2.GA-1) unstable; urgency=low
 

Modified: trunk/libjboss-classloader-java/debian/control
===
--- trunk/libjboss-classloader-java/debian/control  2011-08-08 20:25:13 UTC 
(rev 14104)
+++ trunk/libjboss-classloader-java/debian/control  2011-08-08 20:34:35 UTC 
(rev 14105)
@@ -1,9 +1,9 @@
 Source: libjboss-classloader-java
-Section: libs
+Section: java
 Priority: optional
 Maintainer: Debian Java Maintainers 
pkg-java-maintainers@lists.alioth.debian.org
 Uploaders: Varun Hiremath va...@debian.org, Torsten Werner 
twer...@debian.org
-Build-Depends: cdbs, debhelper (= 6), quilt
+Build-Depends: cdbs, debhelper (= 6)
 Build-Depends-Indep: ant, openjdk-6-jdk, junit, libjboss-common-java,
  libjboss-test-java, libjboss-xml-binding-java, libjboss-vfs-java,
  libjboss-integration-java, libjboss-reflect-java, libjboss-managed-java, 
@@ -15,7 +15,7 @@
 
 Package: libjboss-classloader-java
 Architecture: all
-Depends: ${shlibs:Depends}, ${misc:Depends}, java-gcj-compat | java1-runtime | 
java2-runtime
+Depends: ${misc:Depends}
 Description: JBoss Classloader
  A J2EE certified platform for developing and deploying enterprise Java
  applications, Web applications, and Portals, JBoss Application Server

Added: trunk/libjboss-classloader-java/debian/source/format
===
--- trunk/libjboss-classloader-java/debian/source/format
(rev 0)
+++ trunk/libjboss-classloader-java/debian/source/format2011-08-08 
20:34:35 UTC (rev 14105)
@@ -0,0 +1 @@
+3.0 (quilt)


___
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] r14106 - trunk/libjboss-classloader-java/debian

2011-08-08 Thread Torsten Werner
Author: twerner
Date: 2011-08-08 20:36:22 + (Mon, 08 Aug 2011)
New Revision: 14106

Modified:
   trunk/libjboss-classloader-java/debian/rules
Log:
fix debian/rules


Modified: trunk/libjboss-classloader-java/debian/rules
===
--- trunk/libjboss-classloader-java/debian/rules2011-08-08 20:34:35 UTC 
(rev 14105)
+++ trunk/libjboss-classloader-java/debian/rules2011-08-08 20:36:22 UTC 
(rev 14106)
@@ -2,7 +2,6 @@
 
 include /usr/share/cdbs/1/class/ant.mk
 include /usr/share/cdbs/1/rules/debhelper.mk
-include /usr/share/cdbs/1/rules/patchsys-quilt.mk
 
 JAVA_HOME  := /usr/lib/jvm/java-6-openjdk
 DEB_ANT_BUILD_TARGET   := jar


___
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] r14107 - in tags/libjboss-classloader-java: . 2.0.6.GA-1/debian

2011-08-08 Thread Torsten Werner
Author: twerner
Date: 2011-08-08 20:44:54 + (Mon, 08 Aug 2011)
New Revision: 14107

Added:
   tags/libjboss-classloader-java/2.0.6.GA-1/
   tags/libjboss-classloader-java/2.0.6.GA-1/debian/changelog
   tags/libjboss-classloader-java/2.0.6.GA-1/debian/control
   tags/libjboss-classloader-java/2.0.6.GA-1/debian/rules
   tags/libjboss-classloader-java/2.0.6.GA-1/debian/source/
Removed:
   tags/libjboss-classloader-java/2.0.6.GA-1/debian/changelog
   tags/libjboss-classloader-java/2.0.6.GA-1/debian/control
   tags/libjboss-classloader-java/2.0.6.GA-1/debian/rules
Log:
[svn-buildpackage] Tagging libjboss-classloader-java 2.0.6.GA-1

Deleted: tags/libjboss-classloader-java/2.0.6.GA-1/debian/changelog
===
--- trunk/libjboss-classloader-java/debian/changelog2011-08-08 19:59:22 UTC 
(rev 14103)
+++ tags/libjboss-classloader-java/2.0.6.GA-1/debian/changelog  2011-08-08 
20:44:54 UTC (rev 14107)
@@ -1,43 +0,0 @@
-libjboss-classloader-java (2.0.2.GA-1) unstable; urgency=low
-
-  * New upstream release
-
- -- Torsten Werner twer...@debian.org  Tue, 17 Feb 2009 21:54:26 +0100
-
-libjboss-classloader-java (2.0.1.GA-1) unstable; urgency=low
-
-  * New upstream release
-
- -- Torsten Werner twer...@debian.org  Thu, 04 Dec 2008 23:05:47 +0100
-
-libjboss-classloader-java (2.0.0.CR5+dak1-1) unstable; urgency=low
-
-  * Move package to main.
-
- -- Torsten Werner twer...@debian.org  Tue, 18 Nov 2008 20:39:04 +0100
-
-libjboss-classloader-java (2.0.0.CR5-1) unstable; urgency=low
-
-  * New upstream release
-
- -- Torsten Werner twer...@debian.org  Sat, 08 Nov 2008 22:21:16 +0100
-
-libjboss-classloader-java (2.0.0~Beta12-2) unstable; urgency=low
-
-  * Switch to Build-Depends: openjdk-6.
-  * Reformat debian/copyright slightly.
-
- -- Torsten Werner twer...@debian.org  Sun, 17 Aug 2008 03:52:37 +0200
-
-libjboss-classloader-java (2.0.0~Beta12-1) unstable; urgency=low
-
-  * New upstream release
-  * Bump Standards-Version to 3.8.0
-
- -- Varun Hiremath va...@debian.org  Sun, 22 Jun 2008 19:22:21 +0530
-
-libjboss-classloader-java (2.0.0~Beta11-1) unstable; urgency=low
-
-  * Initial release
-
- -- Varun Hiremath va...@debian.org  Sat, 12 Apr 2008 12:03:35 +0530

Copied: tags/libjboss-classloader-java/2.0.6.GA-1/debian/changelog (from rev 
14105, trunk/libjboss-classloader-java/debian/changelog)
===
--- tags/libjboss-classloader-java/2.0.6.GA-1/debian/changelog  
(rev 0)
+++ tags/libjboss-classloader-java/2.0.6.GA-1/debian/changelog  2011-08-08 
20:44:54 UTC (rev 14107)
@@ -0,0 +1,54 @@
+libjboss-classloader-java (2.0.6.GA-1) unstable; urgency=low
+
+  * Newer (but not newest 2.2.1.GA, not even 2.0.9.GA) upstream release.
+2.0.7.GA FTBFS currently.
+  * Remove Build-Depends: quilt.
+  * Clean up Depends.
+  * Switch to source format 3.0.
+  * Change Section: java.
+
+ -- Torsten Werner twer...@debian.org  Mon, 08 Aug 2011 22:34:13 +0200
+
+libjboss-classloader-java (2.0.2.GA-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Torsten Werner twer...@debian.org  Tue, 17 Feb 2009 21:54:26 +0100
+
+libjboss-classloader-java (2.0.1.GA-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Torsten Werner twer...@debian.org  Thu, 04 Dec 2008 23:05:47 +0100
+
+libjboss-classloader-java (2.0.0.CR5+dak1-1) unstable; urgency=low
+
+  * Move package to main.
+
+ -- Torsten Werner twer...@debian.org  Tue, 18 Nov 2008 20:39:04 +0100
+
+libjboss-classloader-java (2.0.0.CR5-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Torsten Werner twer...@debian.org  Sat, 08 Nov 2008 22:21:16 +0100
+
+libjboss-classloader-java (2.0.0~Beta12-2) unstable; urgency=low
+
+  * Switch to Build-Depends: openjdk-6.
+  * Reformat debian/copyright slightly.
+
+ -- Torsten Werner twer...@debian.org  Sun, 17 Aug 2008 03:52:37 +0200
+
+libjboss-classloader-java (2.0.0~Beta12-1) unstable; urgency=low
+
+  * New upstream release
+  * Bump Standards-Version to 3.8.0
+
+ -- Varun Hiremath va...@debian.org  Sun, 22 Jun 2008 19:22:21 +0530
+
+libjboss-classloader-java (2.0.0~Beta11-1) unstable; urgency=low
+
+  * Initial release
+
+ -- Varun Hiremath va...@debian.org  Sat, 12 Apr 2008 12:03:35 +0530

Deleted: tags/libjboss-classloader-java/2.0.6.GA-1/debian/control
===
--- trunk/libjboss-classloader-java/debian/control  2011-08-08 19:59:22 UTC 
(rev 14103)
+++ tags/libjboss-classloader-java/2.0.6.GA-1/debian/control2011-08-08 
20:44:54 UTC (rev 14107)
@@ -1,29 +0,0 @@
-Source: libjboss-classloader-java
-Section: libs
-Priority: optional
-Maintainer: Debian Java Maintainers 
pkg-java-maintainers@lists.alioth.debian.org
-Uploaders: Varun Hiremath va...@debian.org, Torsten Werner 
twer...@debian.org
-Build-Depends: cdbs, debhelper (= 6), quilt
-Build-Depends-Indep: ant, openjdk-6-jdk, junit, libjboss-common-java,
- 

Processing of libjboss-classloader-java_2.0.6.GA-1_amd64.changes

2011-08-08 Thread Debian FTP Masters
libjboss-classloader-java_2.0.6.GA-1_amd64.changes uploaded successfully to 
localhost
along with the files:
  libjboss-classloader-java_2.0.6.GA-1.dsc
  libjboss-classloader-java_2.0.6.GA.orig.tar.gz
  libjboss-classloader-java_2.0.6.GA-1.debian.tar.gz
  libjboss-classloader-java_2.0.6.GA-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.


libjboss-aop-java_2.0.1.GA-2_amd64.changes ACCEPTED into unstable

2011-08-08 Thread Debian FTP Masters



Accepted:
libjboss-aop-java_2.0.1.GA-2.debian.tar.gz
  to main/libj/libjboss-aop-java/libjboss-aop-java_2.0.1.GA-2.debian.tar.gz
libjboss-aop-java_2.0.1.GA-2.dsc
  to main/libj/libjboss-aop-java/libjboss-aop-java_2.0.1.GA-2.dsc
libjboss-aop-java_2.0.1.GA-2_all.deb
  to main/libj/libjboss-aop-java/libjboss-aop-java_2.0.1.GA-2_all.deb


Override entries for your package:
libjboss-aop-java_2.0.1.GA-2.dsc - source java
libjboss-aop-java_2.0.1.GA-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.


libjboss-classloader-java_2.0.6.GA-1_amd64.changes ACCEPTED into unstable

2011-08-08 Thread Debian FTP Masters



Accepted:
libjboss-classloader-java_2.0.6.GA-1.debian.tar.gz
  to 
main/libj/libjboss-classloader-java/libjboss-classloader-java_2.0.6.GA-1.debian.tar.gz
libjboss-classloader-java_2.0.6.GA-1.dsc
  to 
main/libj/libjboss-classloader-java/libjboss-classloader-java_2.0.6.GA-1.dsc
libjboss-classloader-java_2.0.6.GA-1_all.deb
  to 
main/libj/libjboss-classloader-java/libjboss-classloader-java_2.0.6.GA-1_all.deb
libjboss-classloader-java_2.0.6.GA.orig.tar.gz
  to 
main/libj/libjboss-classloader-java/libjboss-classloader-java_2.0.6.GA.orig.tar.gz


Override entries for your package:
libjboss-classloader-java_2.0.6.GA-1.dsc - source java
libjboss-classloader-java_2.0.6.GA-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.


[SCM] eclipse - Powerful IDE written in java - Debian package. annotated tag, debian/3.7-exp-1, created. debian/3.7-exp-1

2011-08-08 Thread Niels Thykier
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project eclipse - Powerful IDE written in java - Debian package..

The annotated tag, debian/3.7-exp-1 has been created
at  c31c8a3c434c4fd039a8862079881ce05edc14fd (tag)
   tagging  570e68ee7f070b71c41e55cc9ac1aeeead4d65e1 (commit)
  replaces  debian/3.6.2-exp-1
 tagged by  Niels Thykier
on  Tue Aug 9 00:03:41 2011 +0200

- Log -
Tag for debian 3.7~exp-1

Adnan Hodzic (6):
  fixed libjetty-java and sat4j build dep versioning
  fixed libjetty-java and sat4j build dep versioning
  updated my previous commit
  allowed backported versions (=2.2.0-1)
  revised my previous commit
  added backported version for libjetty-java as well

Andres Mejia (1):
  Update to my @debian.org email.

Benjamin Drung (13):
  Shorten bug link.
  Release 3.5.2-8 to Debian unstable.
  Add local-options to set unapply-patches by default.
  Ignore .pc directory.
  debian/extra/eclipse: Actually, don't export UBUNTU_MENUPROXY=0 here 
because that affects launched applications too.  Instead, it is blacklisted by 
appmenu-gtk.
  Update debian/changelog.
  Update my email address.
  Unapply all patches.
  Merge branch 'master-3.6'
  Update git-buildpackage configuration after merge.
  Drop backported patches.
  Drop buildArch=x86 from build.properties.
  Readd upstream patches that were dropped in master-3.6 merge.

Niels Thykier (31):
  Added patch for pde-build to make it stop writing to ~/workspace,
  Use mh_clean for cleaning up after maven-repo-helper and bumped S-V to 
3.9.1
  Set dist.
  Install the NEWS file in eclipse-platform instead of eclipse,
  Set dist.
  Imported debdiffs from TJ and Didier Roche.
  Improved description of bp-osgi-ignore-root-CA.patch
  Backport fix for LP: #600584
  Bump depends for sat4j (Closes: #612738)
  Backported patch for CVE-2010-4647 (Closes: #611849)
  Revert Add local-options to set unapply-patches by default.
  Set dist to unstable
  Bumped (Build-)Depends for ant and lucene2
  Backported patch to improve ant 1.8.2 support
  Release into unstable
  Updated the basic control files to 3.7
  Fixed the version constrains for sat4j
  Refreshed some of the debian patches
  Refreshed eclipse-manpage.patch as well
  Refreshed another patch and uncommented two unused patches
  Refreshed the patch enough for it to apply with offset
  Refreshed remaining patches
  Dumped patch applied upstream
  Removed some more unused patches
  Skip osgi-services.patch for now
  Enabled the osgi-services.patch
  Imported eclipse 3.7~exp tarballs
  Imported eclipse 3.7~exp packaging
  Merge branch 'upstream'
  Updated packaging to ensure a sane build environment
  Release into experimental

---


hooks/post-receive
-- 
eclipse - Powerful IDE written in java - Debian package.

___
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] eclipse - Powerful IDE written in java - Debian package. annotated tag, upstream/3.7-exp, created. upstream/3.7-exp

2011-08-08 Thread Niels Thykier
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project eclipse - Powerful IDE written in java - Debian package..

The annotated tag, upstream/3.7-exp has been created
at  b322b36adf5a1bf3bb202b4c300ddeb217658fac (tag)
   tagging  0c6dea33e33cbba78091790077572cfae5bc1bc9 (commit)
 tagged by  Niels Thykier
on  Tue Aug 9 00:03:12 2011 +0200

- Log -
Tag for upstream 3.7~exp

Benjamin Drung (102):
  Initial import of the upstream tarballs.
  Merge upstream trunk branch.
  Merge upstream trunk branch.
  Merge upstream trunk branch.
  Merge upstream trunk branch (supports version 3.5.1 now).
  remove source tarball for eclipse 3.5.0
  add source tarball for eclipse 3.5.1
  fix file name
  Merge upstream trunk branch.
  Merge upstream trunk branch.
  Merge upstream trunk branch.
  Replace eclipse-R3_5_1-fetched-src.tar.bz2 with corrected one.
  Merge upstream trunk branch.
  Merge upstream trunk branch.
  Extract eclipse-R3_5_1-fetched-src.tar.bz2 to eclipse-3.5.1.
  Remove CVS directories.
  Remove prebuilt binaries for Microsoft Windows from source.
  Remove prebuilt ELF object from source.
  Remove eclipse binaries from source.
  Merge upstream trunk branch.
  Merge upstream trunk branch.
  Merge upstream trunk branch.
  Merge upstream trunk branch.
  Merge upstream trunk branch.
  Merge upstream trunk branch.
  Merge upstream trunk branch.
  Import eclipse-build 0.4 RC6.
  Remove version string from eclipse directory.
  Remove a bunch of precompiled jar files.
  Import eclipse-build R3.5.2 branch (revision 24233).
  Import eclipse 3.5.2 snapshot (eclipse-vM20100210-0800-fetched-src).
  Fix file permissions of scripts to 755.
  Remove unused jar files.
  Remove binary .a files.
  Remove unused binary jar files.
  Repack source jar files.
  Import eclipse-build R3.5.2 branch (revision 24254).
  Drop unrequired plugins/org.mortbay.jetty_5*.jar.
  Import eclipse-build R3.5.2 branch (revision 24268).
  Import eclipse-build R3.5.2 branch (revision 24273).
  Import eclipse-build symlinkDependencies branch (revision 24279).
  Remove files that are not part of 
eclipse-vM20100210-0800-fetched-src-nojars.tar.bz2.
  Import eclipse-build symlinkDependencies branch (revision 24284).
  Import eclipse-build symlinkDependencies branch (revision 24285).
  Import eclipse-build symlinkDependencies branch (revision 24287).
  Import eclipse-build symlinkDependencies branch (revision 24288).
  Remove source jar files.
  Import eclipse-build symlinkDependencies branch (revision 24290).
  Import eclipse-build symlinkDependencies branch (revision 24298).
  Import eclipse 3.5.2 (eclipse-3.5.2-src.tar.bz2).
  Import eclipse-build symlinkDependencies branch (revision 24302).
  Remove unused .class files.
  Import eclipse-build symlinkDependencies branch (revision 24304).
  Remove precompiled org.eclipse.osgi.util and extract src.zip.
  Import eclipse-build symlinkDependencies branch (revision 24320).
  Import eclipse-build symlinkDependencies branch (revision 24322).
  Import eclipse-build symlinkDependencies branch (revision 24325).
  Import eclipse-build symlinkDependencies branch (revision 24326).
  Import eclipse-build symlinkDependencies branch (revision 24327).
  Import eclipse-build trunk branch (revision 24349).
  Import eclipse-build 0.5.0~RC0.
  Add featureVersions.properties and pluginVersions.properties to eclipse 
source.
  Revert Remove precompiled org.eclipse.osgi.util and extract src.zip.
  Import eclipse-build trunk branch (revision 24376).
  Remove unrequired .zip files from source.
  Remove unrequired .cvsignore files.
  Extract org.eclipse.osgi.util src.zip and remove precompiled .class files.
  Import eclipse-build trunk branch (revision 24427).
  Remove remaining unrequired .zip files from source.
  Remove unnecessary *...args files and some *.xml files.
  Import eclipse-build 0.5.0.
  Import eclipse 3.5.2 (eclipse-3.5.2-src.tar.bz2) and remove binaries.
  Import a post-RC4 release of eclipse 3.6.0 (eclipse-3.6.0-src.tar.bz2).
  Import eclipse-build 3.6 branch (revision 25021).
  Remove binaries.
  Import eclipse-build 3.6 branch (revision 25024).
  Import a newer post-RC4 release of eclipse 3.6.0 
(eclipse-3.6.0-src.tar.bz2).
  Extract org.eclipse.osgi.services source zip.
  Import eclipse-build 3.6 branch (revision 25131).
  Remove osgi.util src.zip.
  Import eclipse-build 3.6 branch (revision 25179).
  Import eclipse-build 3.6 branch (revision 25239).
  Import eclipse-build 3.6 branch (revision 25246).
 

Processing of eclipse_3.7~exp-1_amd64.changes

2011-08-08 Thread Debian FTP Masters
eclipse_3.7~exp-1_amd64.changes uploaded successfully to localhost
along with the files:
  eclipse_3.7~exp-1.dsc
  eclipse_3.7~exp.orig-eclipse.tar.bz2
  eclipse_3.7~exp.orig.tar.bz2
  eclipse_3.7~exp-1.debian.tar.gz
  eclipse_3.7~exp-1_all.deb
  eclipse-jdt_3.7~exp-1_amd64.deb
  eclipse-pde_3.7~exp-1_amd64.deb
  eclipse-platform_3.7~exp-1_amd64.deb
  eclipse-platform-data_3.7~exp-1_all.deb
  eclipse-plugin-cvs_3.7~exp-1_all.deb
  eclipse-rcp_3.7~exp-1_amd64.deb
  libequinox-osgi-java_3.7~exp-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.


eclipse_3.7~exp-1_amd64.changes ACCEPTED into experimental

2011-08-08 Thread Debian FTP Masters



Accepted:
eclipse-jdt_3.7~exp-1_amd64.deb
  to main/e/eclipse/eclipse-jdt_3.7~exp-1_amd64.deb
eclipse-pde_3.7~exp-1_amd64.deb
  to main/e/eclipse/eclipse-pde_3.7~exp-1_amd64.deb
eclipse-platform-data_3.7~exp-1_all.deb
  to main/e/eclipse/eclipse-platform-data_3.7~exp-1_all.deb
eclipse-platform_3.7~exp-1_amd64.deb
  to main/e/eclipse/eclipse-platform_3.7~exp-1_amd64.deb
eclipse-plugin-cvs_3.7~exp-1_all.deb
  to main/e/eclipse/eclipse-plugin-cvs_3.7~exp-1_all.deb
eclipse-rcp_3.7~exp-1_amd64.deb
  to main/e/eclipse/eclipse-rcp_3.7~exp-1_amd64.deb
eclipse_3.7~exp-1.debian.tar.gz
  to main/e/eclipse/eclipse_3.7~exp-1.debian.tar.gz
eclipse_3.7~exp-1.dsc
  to main/e/eclipse/eclipse_3.7~exp-1.dsc
eclipse_3.7~exp-1_all.deb
  to main/e/eclipse/eclipse_3.7~exp-1_all.deb
eclipse_3.7~exp.orig-eclipse.tar.bz2
  to main/e/eclipse/eclipse_3.7~exp.orig-eclipse.tar.bz2
eclipse_3.7~exp.orig.tar.bz2
  to main/e/eclipse/eclipse_3.7~exp.orig.tar.bz2
libequinox-osgi-java_3.7~exp-1_all.deb
  to main/e/eclipse/libequinox-osgi-java_3.7~exp-1_all.deb


Override entries for your package:
eclipse-jdt_3.7~exp-1_amd64.deb - optional devel
eclipse-pde_3.7~exp-1_amd64.deb - optional devel
eclipse-platform-data_3.7~exp-1_all.deb - optional devel
eclipse-platform_3.7~exp-1_amd64.deb - optional devel
eclipse-plugin-cvs_3.7~exp-1_all.deb - optional devel
eclipse-rcp_3.7~exp-1_amd64.deb - optional devel
eclipse_3.7~exp-1.dsc - source devel
eclipse_3.7~exp-1_all.deb - optional devel
libequinox-osgi-java_3.7~exp-1_all.deb - optional java

Announcing to debian-devel-chan...@lists.debian.org
Closing bugs: 631061 


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#631061: marked as done (FTBFS against iceweasel 4.0 or 5.0)

2011-08-08 Thread Debian Bug Tracking System
Your message dated Mon, 08 Aug 2011 22:18:01 +
with message-id e1qqy93-0003hh...@franck.debian.org
and subject line Bug#631061: fixed in eclipse 3.7~exp-1
has caused the Debian Bug report #631061,
regarding FTBFS against iceweasel 4.0 or 5.0
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
631061: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=631061
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: eclipse
Version: 3.6.2-1
Severity: serious
Tags: wheezy experimental sid
User: pkg-mozilla-maintain...@lists.alioth.debian.org
Usertags: xulrunner-2.0

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Hi,

Since the release team started filing bugs for this, I assume it would be good
to add eclipse to the tracking. :)

~Niels



-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iQIcBAEBCAAGBQJN/ksaAAoJEAVLu599gGRCCmYP/jDxj+pSOAb/F7holxUSP/hC
xRPhjkBYhgQgiU9cGIK9VnZMLalpQyMx0Vj68fEWLPQIgOM/6GwHC3nYIM9yPuLA
pYvIgsOAvm32RAljfEEjbX+nUqTA0MTEZ+EVsNaOBtaeRngq1Qoi5oJHLfalrKVa
c6Oy9nG+9QbnQ84UKISq1jeomZvH39gnDI4N+6An+3om4rsWY26dfp4VS/cVbJ51
PKlazsk5IKhQL5EqMAZOaPZDolrOrg3qyrfbMXw3KdpNw2WKvREBkoEPa8dUopkH
wS8xY9EDrj8rzc9YzwlVIRb1WHZO2vV27BJBC6MDsNo+lJP+LDoRKyxJXSidFmjV
0W1aBPVWbx6LSuGjBtmomSYQ2ceVOpTY6NCpJjvrUS4kN/vquU1VnganOWFqPL+0
At9BUC1e0fzZnV4bhEnGLNcL4ptSnBx6ykbtRPbJOi1ssAbunFpczZ1K9cVGLghg
svBHcr+3nI0hwMuj+MlI37l+uXbZrJDHSRTjWeGDVc6NNojxNnguIeCqbTRUQ23Q
sqPOriuL9XPfGZQXEouwdv1gYZZq/Ab9u3XoFyh56bKcNXUvxMSVEpCuuuIZA1W0
jfPe+UHH9Pk5gxnqxwQ7v7izrGFt4eNZSRGTwA0TwNgHGIfEk6XOWE/Nf7cmo6aR
XZgZQGUQ2FXo8fpXUOBL
=LzON
-END PGP SIGNATURE-


---End Message---
---BeginMessage---
Source: eclipse
Source-Version: 3.7~exp-1

We believe that the bug you reported is fixed in the latest version of
eclipse, which is due to be installed in the Debian FTP archive:

eclipse-jdt_3.7~exp-1_amd64.deb
  to main/e/eclipse/eclipse-jdt_3.7~exp-1_amd64.deb
eclipse-pde_3.7~exp-1_amd64.deb
  to main/e/eclipse/eclipse-pde_3.7~exp-1_amd64.deb
eclipse-platform-data_3.7~exp-1_all.deb
  to main/e/eclipse/eclipse-platform-data_3.7~exp-1_all.deb
eclipse-platform_3.7~exp-1_amd64.deb
  to main/e/eclipse/eclipse-platform_3.7~exp-1_amd64.deb
eclipse-plugin-cvs_3.7~exp-1_all.deb
  to main/e/eclipse/eclipse-plugin-cvs_3.7~exp-1_all.deb
eclipse-rcp_3.7~exp-1_amd64.deb
  to main/e/eclipse/eclipse-rcp_3.7~exp-1_amd64.deb
eclipse_3.7~exp-1.debian.tar.gz
  to main/e/eclipse/eclipse_3.7~exp-1.debian.tar.gz
eclipse_3.7~exp-1.dsc
  to main/e/eclipse/eclipse_3.7~exp-1.dsc
eclipse_3.7~exp-1_all.deb
  to main/e/eclipse/eclipse_3.7~exp-1_all.deb
eclipse_3.7~exp.orig-eclipse.tar.bz2
  to main/e/eclipse/eclipse_3.7~exp.orig-eclipse.tar.bz2
eclipse_3.7~exp.orig.tar.bz2
  to main/e/eclipse/eclipse_3.7~exp.orig.tar.bz2
libequinox-osgi-java_3.7~exp-1_all.deb
  to main/e/eclipse/libequinox-osgi-java_3.7~exp-1_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 631...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Niels Thykier ni...@thykier.net (supplier of updated eclipse package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 8 Aug 2011 23:15:00 +0200
Source: eclipse
Binary: eclipse eclipse-jdt eclipse-pde eclipse-platform eclipse-platform-data 
eclipse-plugin-cvs eclipse-rcp libequinox-osgi-java
Architecture: source all amd64
Version: 3.7~exp-1
Distribution: experimental
Urgency: low
Maintainer: Debian Orbital Alignment Team 
pkg-java-maintainers@lists.alioth.debian.org
Changed-By: Niels Thykier ni...@thykier.net
Description: 
 eclipse- Extensible Tool Platform and Java IDE
 eclipse-jdt - Eclipse Java Development Tools (JDT)
 eclipse-pde - Eclipse Plug-in Development Environment (PDE)
 eclipse-platform - Eclipse platform without plug-ins to develop any language
 eclipse-platform-data - Eclipse platform without plug-ins to develop any 
language (data)
 eclipse-plugin-cvs - Eclipse Team Integration (CVS support)
 eclipse-rcp - Eclipse Rich Client Platform (RCP)
 libequinox-osgi-java - Equinox OSGi framework
Closes: 631061
Changes: 
 eclipse (3.7~exp-1) experimental; urgency=low
 .
   [ Andres Mejia ]
   * Update to my @debian.org email.
 .
   [ Niels Thykier ]
   * New upstream release.
  

Processing of libjboss-deployers-java_2.0.4.GA-1_amd64.changes

2011-08-08 Thread Debian FTP Masters
libjboss-deployers-java_2.0.4.GA-1_amd64.changes uploaded successfully to 
localhost
along with the files:
  libjboss-deployers-java_2.0.4.GA-1.dsc
  libjboss-deployers-java_2.0.4.GA.orig.tar.gz
  libjboss-deployers-java_2.0.4.GA-1.debian.tar.gz
  libjboss-deployers-java_2.0.4.GA-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] r14108 - in trunk/libjboss-deployers-java/debian: . source

2011-08-08 Thread Torsten Werner
Author: twerner
Date: 2011-08-08 22:24:21 + (Mon, 08 Aug 2011)
New Revision: 14108

Added:
   trunk/libjboss-deployers-java/debian/source/
   trunk/libjboss-deployers-java/debian/source/format
Modified:
   trunk/libjboss-deployers-java/debian/changelog
   trunk/libjboss-deployers-java/debian/control
   trunk/libjboss-deployers-java/debian/rules
Log:
* Newer (but not newest 2.2.2.GA) upstream release.
  Version 2.0.5.GA and higher FTBFS.
* Change Section: java.
* Remove Build-Depends: quilt.
* Clean up Depends.
* Switch to source version 3.0.

Modified: trunk/libjboss-deployers-java/debian/changelog
===
--- trunk/libjboss-deployers-java/debian/changelog  2011-08-08 20:44:54 UTC 
(rev 14107)
+++ trunk/libjboss-deployers-java/debian/changelog  2011-08-08 22:24:21 UTC 
(rev 14108)
@@ -1,3 +1,14 @@
+libjboss-deployers-java (2.0.4.GA-1) unstable; urgency=low
+
+  * Newer (but not newest 2.2.2.GA) upstream release.
+Version 2.0.5.GA and higher FTBFS.
+  * Change Section: java.
+  * Remove Build-Depends: quilt.
+  * Clean up Depends.
+  * Switch to source version 3.0.
+
+ -- Torsten Werner twer...@debian.org  Tue, 09 Aug 2011 00:22:19 +0200
+
 libjboss-deployers-java (2.0.3.GA-1) unstable; urgency=low
 
   * New upstream release

Modified: trunk/libjboss-deployers-java/debian/control
===
--- trunk/libjboss-deployers-java/debian/control2011-08-08 20:44:54 UTC 
(rev 14107)
+++ trunk/libjboss-deployers-java/debian/control2011-08-08 22:24:21 UTC 
(rev 14108)
@@ -1,9 +1,9 @@
 Source: libjboss-deployers-java
-Section: libs
+Section: java
 Priority: optional
 Maintainer: Debian Java Maintainers 
pkg-java-maintainers@lists.alioth.debian.org
 Uploaders: Varun Hiremath va...@debian.org, Torsten Werner 
twer...@debian.org
-Build-Depends: cdbs, debhelper (= 6), quilt
+Build-Depends: cdbs, debhelper (= 6)
 Build-Depends-Indep: ant, openjdk-6-jdk, libjboss-common-java,
  libjboss-xml-binding-java, libjboss-vfs-java, libjboss-microcontainer-java, 
  libjboss-metadata-java, libjboss-classloader-java, libjboss-reflect-java,
@@ -15,7 +15,7 @@
 
 Package: libjboss-deployers-java
 Architecture: all
-Depends: ${shlibs:Depends}, ${misc:Depends}, java-gcj-compat | java1-runtime | 
java2-runtime
+Depends: ${misc:Depends}
 Description: JBoss Deployment Framework
  A J2EE certified platform for developing and deploying enterprise Java
  applications, Web applications, and Portals, JBoss Application Server

Modified: trunk/libjboss-deployers-java/debian/rules
===
--- trunk/libjboss-deployers-java/debian/rules  2011-08-08 20:44:54 UTC (rev 
14107)
+++ trunk/libjboss-deployers-java/debian/rules  2011-08-08 22:24:21 UTC (rev 
14108)
@@ -2,7 +2,6 @@
 
 include /usr/share/cdbs/1/class/ant.mk
 include /usr/share/cdbs/1/rules/debhelper.mk
-include /usr/share/cdbs/1/rules/patchsys-quilt.mk
 
 JAVA_HOME  := /usr/lib/jvm/java-6-openjdk
 DEB_ANT_BUILD_TARGET   := jar
@@ -22,4 +21,4 @@
done
 
 get-orig-source:
-   -uscan --upstream-version 0
+   uscan --download-version $(DEB_UPSTREAM_VERSION) --force-download 
--rename

Added: trunk/libjboss-deployers-java/debian/source/format
===
--- trunk/libjboss-deployers-java/debian/source/format  
(rev 0)
+++ trunk/libjboss-deployers-java/debian/source/format  2011-08-08 22:24:21 UTC 
(rev 14108)
@@ -0,0 +1 @@
+3.0 (quilt)


___
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] r14109 - in tags/libjboss-deployers-java: . 2.0.4.GA-1/debian

2011-08-08 Thread Torsten Werner
Author: twerner
Date: 2011-08-08 22:27:35 + (Mon, 08 Aug 2011)
New Revision: 14109

Added:
   tags/libjboss-deployers-java/2.0.4.GA-1/
   tags/libjboss-deployers-java/2.0.4.GA-1/debian/changelog
   tags/libjboss-deployers-java/2.0.4.GA-1/debian/control
   tags/libjboss-deployers-java/2.0.4.GA-1/debian/rules
   tags/libjboss-deployers-java/2.0.4.GA-1/debian/source/
Removed:
   tags/libjboss-deployers-java/2.0.4.GA-1/debian/changelog
   tags/libjboss-deployers-java/2.0.4.GA-1/debian/control
   tags/libjboss-deployers-java/2.0.4.GA-1/debian/rules
Log:
[svn-buildpackage] Tagging libjboss-deployers-java 2.0.4.GA-1

Deleted: tags/libjboss-deployers-java/2.0.4.GA-1/debian/changelog
===
--- trunk/libjboss-deployers-java/debian/changelog  2011-08-08 20:44:54 UTC 
(rev 14107)
+++ tags/libjboss-deployers-java/2.0.4.GA-1/debian/changelog2011-08-08 
22:27:35 UTC (rev 14109)
@@ -1,45 +0,0 @@
-libjboss-deployers-java (2.0.3.GA-1) unstable; urgency=low
-
-  * New upstream release
-
- -- Torsten Werner twer...@debian.org  Thu, 04 Dec 2008 23:32:08 +0100
-
-libjboss-deployers-java (2.0.0.CR5+dak1-1) unstable; urgency=low
-
-  * Move package to main.
-
- -- Torsten Werner twer...@debian.org  Tue, 18 Nov 2008 20:34:11 +0100
-
-libjboss-deployers-java (2.0.0.CR5-1) unstable; urgency=low
-
-  * New upstream release
-  * Add Build-Depends: libjboss-integration-java.
-
- -- Torsten Werner twer...@debian.org  Sun, 09 Nov 2008 21:54:27 +0100
-
-libjboss-deployers-java (2.0.0~Beta18-2) unstable; urgency=low
-
-  * Switch to Build-Depends: openjdk-6-jdk.
-  * Reformat debian/copyright slightly.
-
- -- Torsten Werner twer...@debian.org  Sun, 17 Aug 2008 03:56:42 +0200
-
-libjboss-deployers-java (2.0.0~Beta18-1) unstable; urgency=low
-
-  * New upstream release
-
- -- Varun Hiremath va...@debian.org  Sun, 06 Jul 2008 01:14:30 +0530
-
-libjboss-deployers-java (2.0.0~Beta17-1) unstable; urgency=low
-
-  * New upstream release
-  * Bump Standards-Version to 3.8.0
-  * Add libjavassist-java to Build-Depends
-
- -- Varun Hiremath va...@debian.org  Sun, 22 Jun 2008 19:44:39 +0530
-
-libjboss-deployers-java (2.0.0~Beta14-1) unstable; urgency=low
-
-  * Initial release
-
- -- Varun Hiremath va...@debian.org  Sat, 12 Apr 2008 22:30:31 +0530

Copied: tags/libjboss-deployers-java/2.0.4.GA-1/debian/changelog (from rev 
14108, trunk/libjboss-deployers-java/debian/changelog)
===
--- tags/libjboss-deployers-java/2.0.4.GA-1/debian/changelog
(rev 0)
+++ tags/libjboss-deployers-java/2.0.4.GA-1/debian/changelog2011-08-08 
22:27:35 UTC (rev 14109)
@@ -0,0 +1,56 @@
+libjboss-deployers-java (2.0.4.GA-1) unstable; urgency=low
+
+  * Newer (but not newest 2.2.2.GA) upstream release.
+Version 2.0.5.GA and higher FTBFS.
+  * Change Section: java.
+  * Remove Build-Depends: quilt.
+  * Clean up Depends.
+  * Switch to source version 3.0.
+
+ -- Torsten Werner twer...@debian.org  Tue, 09 Aug 2011 00:22:19 +0200
+
+libjboss-deployers-java (2.0.3.GA-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Torsten Werner twer...@debian.org  Thu, 04 Dec 2008 23:32:08 +0100
+
+libjboss-deployers-java (2.0.0.CR5+dak1-1) unstable; urgency=low
+
+  * Move package to main.
+
+ -- Torsten Werner twer...@debian.org  Tue, 18 Nov 2008 20:34:11 +0100
+
+libjboss-deployers-java (2.0.0.CR5-1) unstable; urgency=low
+
+  * New upstream release
+  * Add Build-Depends: libjboss-integration-java.
+
+ -- Torsten Werner twer...@debian.org  Sun, 09 Nov 2008 21:54:27 +0100
+
+libjboss-deployers-java (2.0.0~Beta18-2) unstable; urgency=low
+
+  * Switch to Build-Depends: openjdk-6-jdk.
+  * Reformat debian/copyright slightly.
+
+ -- Torsten Werner twer...@debian.org  Sun, 17 Aug 2008 03:56:42 +0200
+
+libjboss-deployers-java (2.0.0~Beta18-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Varun Hiremath va...@debian.org  Sun, 06 Jul 2008 01:14:30 +0530
+
+libjboss-deployers-java (2.0.0~Beta17-1) unstable; urgency=low
+
+  * New upstream release
+  * Bump Standards-Version to 3.8.0
+  * Add libjavassist-java to Build-Depends
+
+ -- Varun Hiremath va...@debian.org  Sun, 22 Jun 2008 19:44:39 +0530
+
+libjboss-deployers-java (2.0.0~Beta14-1) unstable; urgency=low
+
+  * Initial release
+
+ -- Varun Hiremath va...@debian.org  Sat, 12 Apr 2008 22:30:31 +0530

Deleted: tags/libjboss-deployers-java/2.0.4.GA-1/debian/control
===
--- trunk/libjboss-deployers-java/debian/control2011-08-08 20:44:54 UTC 
(rev 14107)
+++ tags/libjboss-deployers-java/2.0.4.GA-1/debian/control  2011-08-08 
22:27:35 UTC (rev 14109)
@@ -1,29 +0,0 @@
-Source: libjboss-deployers-java
-Section: libs
-Priority: optional
-Maintainer: Debian Java Maintainers 
pkg-java-maintainers@lists.alioth.debian.org
-Uploaders: Varun Hiremath va...@debian.org, Torsten Werner 

libjboss-deployers-java_2.0.4.GA-1_amd64.changes ACCEPTED into unstable

2011-08-08 Thread Debian FTP Masters



Accepted:
libjboss-deployers-java_2.0.4.GA-1.debian.tar.gz
  to 
main/libj/libjboss-deployers-java/libjboss-deployers-java_2.0.4.GA-1.debian.tar.gz
libjboss-deployers-java_2.0.4.GA-1.dsc
  to main/libj/libjboss-deployers-java/libjboss-deployers-java_2.0.4.GA-1.dsc
libjboss-deployers-java_2.0.4.GA-1_all.deb
  to 
main/libj/libjboss-deployers-java/libjboss-deployers-java_2.0.4.GA-1_all.deb
libjboss-deployers-java_2.0.4.GA.orig.tar.gz
  to 
main/libj/libjboss-deployers-java/libjboss-deployers-java_2.0.4.GA.orig.tar.gz


Override entries for your package:
libjboss-deployers-java_2.0.4.GA-1.dsc - source java
libjboss-deployers-java_2.0.4.GA-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.


[SCM] eclipse - Powerful IDE written in java - Debian package. branch, master, updated. debian/3.7-exp-1

2011-08-08 Thread Niels Thykier
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project eclipse - Powerful IDE written in java - Debian package..

The branch, master has been updated
   via  570e68ee7f070b71c41e55cc9ac1aeeead4d65e1 (commit)
  from  27fb96571802e0b439f32e697f73ea805f49f406 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit 570e68ee7f070b71c41e55cc9ac1aeeead4d65e1
Author: Niels Thykier ni...@thykier.net
Date:   Mon Aug 8 23:30:41 2011 +0200

Release into experimental

---

Summary of changes:
 debian/changelog |5 +++--
 debian/compat|2 +-
 debian/control   |2 +-
 debian/rules |4 ++--
 4 files changed, 7 insertions(+), 6 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 2cce738..f6b6978 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-eclipse (3.7~exp-1) UNRELEASED; urgency=low
+eclipse (3.7~exp-1) experimental; urgency=low
 
   [ Andres Mejia ]
   * Update to my @debian.org email.
@@ -9,8 +9,9 @@ eclipse (3.7~exp-1) UNRELEASED; urgency=low
   * Added Build-Conflicts to ensure xulrunner is not picked up if
 built in unclean chroots.
   * B-D on liblucene2-java (= 2.9.4+ds1-3~) due to #631234.
+  * Bump debhelper compat to 8.
 
- -- Andres Mejia ame...@debian.org  Sun, 17 Jul 2011 13:23:24 -0400
+ -- Niels Thykier ni...@thykier.net  Mon, 8 Aug 2011 23:15:00 +0200
 
 eclipse (3.6.2~exp-1) experimental; urgency=low
 
diff --git a/debian/compat b/debian/compat
index 7f8f011..45a4fb7 100644
--- a/debian/compat
+++ b/debian/compat
@@ -1 +1 @@
-7
+8
diff --git a/debian/control b/debian/control
index bca5cc5..69505a2 100644
--- a/debian/control
+++ b/debian/control
@@ -8,7 +8,7 @@ Uploaders: Niels Thykier ni...@thykier.net,
Andres Mejia ame...@debian.org
 Build-Depends: ant (= 1.8.2),
ant-optional,
-   debhelper (= 7.0.50~),
+   debhelper (= 8~),
default-jdk,
docbook2x,
junit (= 3.8.2-4),
diff --git a/debian/rules b/debian/rules
index e892ddc..5b83efd 100755
--- a/debian/rules
+++ b/debian/rules
@@ -54,7 +54,6 @@ override_dh_install:
debian/tmp/usr/lib/eclipse/about_files/webkit-bsd.txt \
debian/tmp/usr/lib/eclipse/about_files/pixman-licenses.txt \
debian/tmp/usr/lib/eclipse/about_files/about_cairo.html
-   chmod 0644 debian/tmp/usr/lib/eclipse/about_files/IJG_README
# Remove symlink and some cruft installed by the upstream install
rm -fr debian/tmp/usr/bin/*
# install the wrapper script
@@ -84,9 +83,10 @@ override_dh_install:
$(if $(wildcard 
debian/tmp/usr/lib/eclipse/plugins/org.eclipse.update.core.linux*.jar),dh_install
 -peclipse-platform 
debian/tmp/usr/lib/eclipse/plugins/org.eclipse.update.core.linux*.jar 
/usr/lib/eclipse/plugins)
mkdir $(SWT_SO_PATH)
find $(JNI_SO_PATH) -name 'libswt*.so' -exec mv {} $(SWT_SO_PATH) \;
-   find $(JNI_SO_PATH) -depth -type d -empty -delete
+   find $(JNI_SO_PATH) -depth -type d -a -empty -delete
# Check if we are doing a -B build
[ ! -d debian/eclipse-platform-data ] || debian/rules 
override_dh_install_indep
+   chmod 0644 debian/eclipse-rcp/usr/lib/eclipse/about_files/IJG_README
 
 # Operations on arch: all packages - not invoked if building with -B
 override_dh_install_indep:


hooks/post-receive
-- 
eclipse - Powerful IDE written in java - Debian package.

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