rhino 1.7R3-5 MIGRATED to testing

2012-02-24 Thread Debian testing watch
FYI: The status of the rhino source package
in Debian's testing distribution has changed.

  Previous version: 1.7R3-4
  Current version:  1.7R3-5

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

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


[SCM] UNNAMED PROJECT branch, master, updated. 0.40-2-gdabfbf1

2012-02-24 Thread Sylvestre Ledru
The following commit has been merged in the master branch:
commit 70517873a24d01ac3342f3b8f9eaecb3466bfc07
Author: Sylvestre Ledru sylvestre.le...@scilab-enterprises.com
Date:   Fri Feb 24 15:31:01 2012 +0100

Switch to the multiarch path

diff --git a/debian/changelog b/debian/changelog
index 802bfe1..98fb43a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+javatools (0.41) UNRELEASED; urgency=low
+
+  * Switch the OpenJDK6 path to the multiarch one.
+
+ -- Sylvestre Ledru sylves...@debian.org  Fri, 24 Feb 2012 15:31:11 +0100
+
 javatools (0.40) unstable; urgency=low
 
   * Fixed a regression jh_build (introduced in 0.38).
diff --git a/jh_makepkg b/jh_makepkg
index 9667ef4..a8516cf 100755
--- a/jh_makepkg
+++ b/jh_makepkg
@@ -273,7 +273,7 @@ case $COMP in
;;
open)
   COMPILER=openjdk-6-jdk
-  JAVA_HOME=/usr/lib/jvm/java-6-openjdk
+  JAVA_HOME=/usr/lib/jvm/java-6-openjdk-\$(shell dpkg-architecture 
-qDEB_HOST_ARCH)
   JVM=open
;;
 esac

-- 
UNNAMED PROJECT

___
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] UNNAMED PROJECT branch, master, updated. 0.40-2-gdabfbf1

2012-02-24 Thread Sylvestre Ledru
The following commit has been merged in the master branch:
commit dabfbf151bdc0a32138ce6ddd3d51c1f0ff1e207
Author: Sylvestre Ledru sylvestre.le...@scilab-enterprises.com
Date:   Fri Feb 24 15:33:23 2012 +0100

  * Remove the sun-java6 support since it has been
removed from the archive
  * Provide the support for OpenJDK 7

diff --git a/debian/changelog b/debian/changelog
index 98fb43a..0527d41 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,11 @@
 javatools (0.41) UNRELEASED; urgency=low
 
   * Switch the OpenJDK6 path to the multiarch one.
+  * Remove the sun-java6 support since it has been
+removed from the archive
+  * Provide the support for OpenJDK 7
 
- -- Sylvestre Ledru sylves...@debian.org  Fri, 24 Feb 2012 15:31:11 +0100
+ -- Sylvestre Ledru sylves...@debian.org  Fri, 24 Feb 2012 15:32:30 +0100
 
 javatools (0.40) unstable; urgency=low
 
diff --git a/jh_makepkg b/jh_makepkg
index a8516cf..00163c1 100755
--- a/jh_makepkg
+++ b/jh_makepkg
@@ -3,7 +3,7 @@
 # options:
 #make, maven, ant, byhand
 #app, library
-#gcj, sun
+#gcj
 
 COMPAT=8
 STANDARDS=3.9.2
@@ -32,10 +32,10 @@ syntax()
echo -e \t-k --makefiles: Builds with make
echo -e \t-n --none: Create own buildsystem
echo -e \tPick One:
-   echo -e \t-6 --sun6: Build with Sun Java 1.6 (package must be contrib)
echo -e \t-g --gcj: Build with gcj
echo -e \t-d --default: Build with default free platform compiler
echo -e \t-o --openjdk: Build with openjdk 6
+   echo -e \t-o7 --openjdk7: Build with openjdk 7
echo -e Environment Variables:
echo -e \tDEBEMAIL: Default maintainer email address
echo -e \tEMAIL: Default maintainer email address
@@ -44,7 +44,7 @@ syntax()
exit 1
 }
 
-ARGS=p package m maintainer e email v upstream l library a app t ant k 
makefile n none 6 sun6 g gcj o openjdk M maven d default parseargs $@
+ARGS=p package m maintainer e email v upstream l library a app t ant k 
makefile n none g gcj o openjdk o7 openjdk7 M maven d default parseargs $@
 
 BUILDDIR=`pwd`
 
@@ -222,18 +222,18 @@ if [ -n `getarg d default` ]; then
COMP=default
 elif [ -n `getarg g gcj` ]; then
COMP=gcj
-elif [ -n `getarg 6 sun6` ]; then
-   COMP=sun6
 elif [ -n `getarg o openjdk` ]; then
COMP=open
+elif [ -n `getarg o7 openjdk7` ]; then
+   COMP=open7
 else
-   echo Which Java runtime does it need? Free runtime, or Sun?
+   echo Which Java runtime does it need? Which free runtime?
echo Select:
echo -e \t[F] Default Free compiler/runtime (Default)
echo -e \t[G] GCJ
-   echo -e \t[6] Sun Java 1.6 (Package must be in contrib)
echo -e \t[o] OpenJDK 6
-   echo -n [FG6o] $ 
+   echo -e \t[o7] OpenJDK 7
+   echo -n [FGoo7] $ 
read t
echo
case $t in
@@ -241,9 +241,9 @@ else
  COMP=open
  echo Selected: OpenJDK 6
  ;;
-  6)
- COMP=sun6
- echo Selected: Sun 1.6
+  O7|o7)
+ COMP=open7
+ echo Selected: OpenJDK 7
  ;;
   g|G)
  COMP=gcj
@@ -265,17 +265,16 @@ case $COMP in
   COMPILER=default-jdk
   JAVA_HOME=/usr/lib/jvm/default-java
;;
-   sun6)
-  COMPILER=sun-java6-jdk
-  JAVA_HOME=/usr/lib/jvm/java-6-sun
-  CONTRIB=contrib/
-  JVM=sun6
-   ;;
open)
   COMPILER=openjdk-6-jdk
   JAVA_HOME=/usr/lib/jvm/java-6-openjdk-\$(shell dpkg-architecture 
-qDEB_HOST_ARCH)
   JVM=open
;;
+   open7)
+  COMPILER=openjdk-7-jdk
+  JAVA_HOME=/usr/lib/jvm/java-7-openjdk-\$(shell dpkg-architecture 
-qDEB_HOST_ARCH)
+  JVM=open7
+   ;;
 esac
 
 YEAR=$(date +%Y)

-- 
UNNAMED PROJECT

___
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] UNNAMED PROJECT branch, master, updated. 0.40-3-g1917a14

2012-02-24 Thread Sylvestre Ledru
The following commit has been merged in the master branch:
commit 1917a146f1b73eaf7cc9709c24689dd6ed706dea
Author: Sylvestre Ledru sylvestre.le...@scilab-enterprises.com
Date:   Fri Feb 24 15:52:18 2012 +0100

Update of the documentation regarding recent changes in jh_makepkg

diff --git a/jh_makepkg.1 b/jh_makepkg.1
index eb06557..846c4dc 100644
--- a/jh_makepkg.1
+++ b/jh_makepkg.1
@@ -30,11 +30,10 @@ Pick One:
 \fB\-k\fR \fB\-\-makefiles\fR: Build with make
 \fB\-n\fR \fB\-\-none\fR: Create own buildsystem
 Pick One:
-\fB\-5\fR \fB\-\-sun5\fR: Build with Sun Java 1.5 (package must be contrib)
-\fB\-6\fR \fB\-\-sun6\fR: Build with Sun Java 1.6 (package must be contrib)
 \fB\-g\fR \fB\-\-gcj\fR: Build with gcj
 \fB\-d\fR \fB\-\-default\fR: Build with default free compiler
 \fB\-o\fR \fB\-\-openjdk\fR: Build with OpenJDK 6
+\fB\-o7\fR \fB\-\-openjdk7\fR: Build with OpenJDK 7
 .SS Environment Variables:
 .IP
 DEBEMAIL: Default maintainer email address

-- 
UNNAMED PROJECT

___
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] UNNAMED PROJECT branch, master, updated. 0.40-4-g6bb599c

2012-02-24 Thread Sylvestre Ledru
The following commit has been merged in the master branch:
commit 6bb599c79644c11dd210e33089c14fac63e6f731
Author: Sylvestre Ledru sylvestre.le...@scilab-enterprises.com
Date:   Fri Feb 24 15:54:56 2012 +0100

  * Create the new package under the source format 3.0

diff --git a/debian/changelog b/debian/changelog
index 0527d41..b853f31 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -4,8 +4,9 @@ javatools (0.41) UNRELEASED; urgency=low
   * Remove the sun-java6 support since it has been
 removed from the archive
   * Provide the support for OpenJDK 7
+  * Create the new package under the source format 3.0
 
- -- Sylvestre Ledru sylves...@debian.org  Fri, 24 Feb 2012 15:32:30 +0100
+ -- Sylvestre Ledru sylves...@debian.org  Fri, 24 Feb 2012 15:54:07 +0100
 
 javatools (0.40) unstable; urgency=low
 
diff --git a/jh_makepkg b/jh_makepkg
index 00163c1..86e3370 100755
--- a/jh_makepkg
+++ b/jh_makepkg
@@ -279,6 +279,8 @@ esac
 
 YEAR=$(date +%Y)
 mkdir -p debian
+mkdir debian/source 
+echo '3.0 (quilt)'  debian/source/format
 cat  debian/control END
 Source: $SRCPACKAGE
 Section: ${CONTRIB}$SECTION

-- 
UNNAMED PROJECT

___
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] UNNAMED PROJECT branch, master, updated. 0.40-6-g990bdb4

2012-02-24 Thread Sylvestre Ledru
The following commit has been merged in the master branch:
commit 27ba01cd362b0ce81fa07f69dd5458b8cd494c28
Author: Sylvestre Ledru sylvestre.le...@scilab-enterprises.com
Date:   Fri Feb 24 16:21:52 2012 +0100

Better presentation

diff --git a/debian/changelog b/debian/changelog
index b853f31..99d757d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,11 +1,13 @@
 javatools (0.41) UNRELEASED; urgency=low
 
-  * Switch the OpenJDK6 path to the multiarch one.
-  * Remove the sun-java6 support since it has been
-removed from the archive
-  * Provide the support for OpenJDK 7
-  * Create the new package under the source format 3.0
-
+  * jh_makepkg: 
+   - Switch the OpenJDK6 path to the multiarch one.
+   - Remove the sun-java6 support since it has been
+ removed from the archive
+   - Provide the support for OpenJDK 7
+   - Create the new package under the source format 3.0
+   
+   
  -- Sylvestre Ledru sylves...@debian.org  Fri, 24 Feb 2012 15:54:07 +0100
 
 javatools (0.40) unstable; urgency=low

-- 
UNNAMED PROJECT

___
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] UNNAMED PROJECT branch, master, updated. 0.40-6-g990bdb4

2012-02-24 Thread Sylvestre Ledru
The following commit has been merged in the master branch:
commit 990bdb4ba9be007936af7ebeaba36328246af1b3
Author: Sylvestre Ledru sylvestre.le...@scilab-enterprises.com
Date:   Fri Feb 24 16:23:26 2012 +0100

-doc packages are now in the doc section.

diff --git a/debian/changelog b/debian/changelog
index 99d757d..727fd7b 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,14 +1,15 @@
 javatools (0.41) UNRELEASED; urgency=low
 
   * jh_makepkg: 
-   - Switch the OpenJDK6 path to the multiarch one.
-   - Remove the sun-java6 support since it has been
- removed from the archive
-   - Provide the support for OpenJDK 7
-   - Create the new package under the source format 3.0
+- Switch the OpenJDK6 path to the multiarch one.
+- Remove the sun-java6 support since it has been
+  removed from the archive
+- Provide the support for OpenJDK 7
+- Create the new package under the source format 3.0
+- -doc packages are now in the doc section.


- -- Sylvestre Ledru sylves...@debian.org  Fri, 24 Feb 2012 15:54:07 +0100
+ -- Sylvestre Ledru sylves...@debian.org  Fri, 24 Feb 2012 16:22:58 +0100
 
 javatools (0.40) unstable; urgency=low
 
diff --git a/jh_makepkg b/jh_makepkg
index 86e3370..9ebe504 100755
--- a/jh_makepkg
+++ b/jh_makepkg
@@ -304,6 +304,7 @@ if [ $TYPE = lib ] ; then
 
 Package: $BINPACKAGE-doc
 Architecture: all
+Section: doc
 Depends: \${java:Depends}, \${misc:Depends}
 Recommends: \${java:Recommends}
 Description: Short Description - doc

-- 
UNNAMED PROJECT

___
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-mylyn - Plug-in for eclipse - Debian package. branch, pristine-tar, updated. 359a294f44f97ef988f29ab7645acf82e79ed19b

2012-02-24 Thread Jakub Adam
The following commit has been merged in the pristine-tar branch:
commit 359a294f44f97ef988f29ab7645acf82e79ed19b
Author: Jakub Adam jakub.a...@ktknet.cz
Date:   Fri Feb 24 17:32:19 2012 +0100

pristine-tar data for eclipse-mylyn_3.6.4+dfsg1.orig.tar.bz2

diff --git a/eclipse-mylyn_3.6.4+dfsg1.orig.tar.bz2.delta 
b/eclipse-mylyn_3.6.4+dfsg1.orig.tar.bz2.delta
new file mode 100644
index 000..e6a3b11
Binary files /dev/null and b/eclipse-mylyn_3.6.4+dfsg1.orig.tar.bz2.delta differ
diff --git a/eclipse-mylyn_3.6.4+dfsg1.orig.tar.bz2.id 
b/eclipse-mylyn_3.6.4+dfsg1.orig.tar.bz2.id
new file mode 100644
index 000..c46abde
--- /dev/null
+++ b/eclipse-mylyn_3.6.4+dfsg1.orig.tar.bz2.id
@@ -0,0 +1 @@
+41287ef194dcc227dd883f09ca35705fbddf0d20

-- 
eclipse-mylyn - Plug-in for eclipse - 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-mylyn - Plug-in for eclipse - Debian package. branch, master, updated. upstream/3.6.4+fix1-44-g8799c5a

2012-02-24 Thread Jakub Adam
The following commit has been merged in the master branch:
commit 2e7303c6ed4b58f19d2a6776edd3186f57d01eea
Merge: 0610bb8486df07d505e0d857a0884579f020c96d 
41287ef194dcc227dd883f09ca35705fbddf0d20
Author: Jakub Adam jakub.a...@ktknet.cz
Date:   Fri Feb 24 17:25:19 2012 +0100

Merge tag 'upstream/3.6.4+dfsg1'


-- 
eclipse-mylyn - Plug-in for eclipse - 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-mylyn - Plug-in for eclipse - Debian package. branch, master, updated. upstream/3.6.4+fix1-44-g8799c5a

2012-02-24 Thread Jakub Adam
The following commit has been merged in the master branch:
commit 5c38cf638109571aff5154132a7afa76ff560a8a
Author: Jakub Adam jakub.a...@ktknet.cz
Date:   Fri Feb 24 17:26:03 2012 +0100

Updated d/changelog with new version

diff --git a/debian/changelog b/debian/changelog
index bf1b56c..a1166fd 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-eclipse-mylyn (3.6.4+fix1-1) UNRELEASED; urgency=low
+eclipse-mylyn (3.6.4+dfsg1-1) UNRELEASED; urgency=low
 
   * Initial release (Closes: #581422).
 

-- 
eclipse-mylyn - Plug-in for eclipse - 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


[pkg-java] r15793 - trunk/libgnumail-java/debian

2012-02-24 Thread Jakub Adam
Author: xhaakon-guest
Date: 2012-02-24 22:32:43 + (Fri, 24 Feb 2012)
New Revision: 15793

Modified:
   trunk/libgnumail-java/debian/changelog
   trunk/libgnumail-java/debian/control
Log:
Removed Michael Koch from Uploaders (Closes: #654066)

Modified: trunk/libgnumail-java/debian/changelog
===
--- trunk/libgnumail-java/debian/changelog  2012-02-23 22:56:36 UTC (rev 
15792)
+++ trunk/libgnumail-java/debian/changelog  2012-02-24 22:32:43 UTC (rev 
15793)
@@ -1,3 +1,9 @@
+libgnumail-java (1.1.2-7) UNRELEASED; urgency=low
+
+  * Removed Michael Koch from Uploaders (Closes: #654066).
+
+ -- Jakub Adam jakub.a...@ktknet.cz  Fri, 24 Feb 2012 23:27:11 +0100
+
 libgnumail-java (1.1.2-6) unstable; urgency=low
 
   [ Jakub Adam ]

Modified: trunk/libgnumail-java/debian/control
===
--- trunk/libgnumail-java/debian/control2012-02-23 22:56:36 UTC (rev 
15792)
+++ trunk/libgnumail-java/debian/control2012-02-24 22:32:43 UTC (rev 
15793)
@@ -2,8 +2,7 @@
 Section: java
 Priority: optional
 Maintainer: Debian Java Maintainers 
pkg-java-maintainers@lists.alioth.debian.org
-Uploaders: Michael Koch konque...@gmx.de,
-   Torsten Werner twer...@debian.org,
+Uploaders: Torsten Werner twer...@debian.org,
Jakub Adam jakub.a...@ktknet.cz
 Build-Depends: debhelper (= 8), cdbs (= 0.4.5.3), ant
 Build-Depends-Indep: default-jdk, libgnujaf-java, libgnuinet-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] r15794 - trunk/java-access-bridge/debian

2012-02-24 Thread Damien Raude-Morvan
Author: drazzib
Date: 2012-02-24 23:19:20 + (Fri, 24 Feb 2012)
New Revision: 15794

Modified:
   trunk/java-access-bridge/debian/changelog
   trunk/java-access-bridge/debian/control
   trunk/java-access-bridge/debian/copyright
Log:
* Bump Standards-Version to 3.9.3: no changes needed.
* libaccess-bridge-java needs to be marked as Multi-Arch: foreign.
  Patch from Benjamin Drung. (Closes: #655931).

Modified: trunk/java-access-bridge/debian/changelog
===
--- trunk/java-access-bridge/debian/changelog   2012-02-24 22:32:43 UTC (rev 
15793)
+++ trunk/java-access-bridge/debian/changelog   2012-02-24 23:19:20 UTC (rev 
15794)
@@ -1,3 +1,11 @@
+java-access-bridge (1.26.2-9) unstable; urgency=low
+
+  * Bump Standards-Version to 3.9.3: no changes needed.
+  * libaccess-bridge-java needs to be marked as Multi-Arch: foreign.
+Patch from Benjamin Drung. (Closes: #655931).
+
+ -- Damien Raude-Morvan draz...@debian.org  Sat, 25 Feb 2012 00:09:35 +0100
+
 java-access-bridge (1.26.2-8) unstable; urgency=medium
 
   * d/rules: Handle both multi-arch or single-arch openjdk-{6,7},

Modified: trunk/java-access-bridge/debian/control
===
--- trunk/java-access-bridge/debian/control 2012-02-24 22:32:43 UTC (rev 
15793)
+++ trunk/java-access-bridge/debian/control 2012-02-24 23:19:20 UTC (rev 
15794)
@@ -17,13 +17,15 @@
pkg-config,
x11-utils
 Build-Conflicts: dh-buildinfo
-Standards-Version: 3.9.2
+Standards-Version: 3.9.3
 Homepage: http://live.gnome.org/Java%20Access%20Bridge
 Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/java-access-bridge
 Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/java-access-bridge/
 
 Package: libaccess-bridge-java
+Multi-Arch: foreign
 Architecture: all
+Pre-Depends: ${misc:Pre-Depends}
 Depends: ${misc:Depends}
 Recommends: libaccess-bridge-java-jni
 Description: Java Access Bridge for GNOME

Modified: trunk/java-access-bridge/debian/copyright
===
--- trunk/java-access-bridge/debian/copyright   2012-02-24 22:32:43 UTC (rev 
15793)
+++ trunk/java-access-bridge/debian/copyright   2012-02-24 23:19:20 UTC (rev 
15794)
@@ -3,7 +3,7 @@
 
 It was downloaded from 
http://ftp.gnome.org/pub/GNOME/sources/java-access-bridge
 
-Upstream Authors: 
+Upstream Authors:
 
 Bill Haneman bill.hane...@sun.com
 Louise Miller
@@ -14,7 +14,7 @@
 Padraig O'Briain padraig.obri...@sun.com
 Darren Kenny darren.ke...@sun.com
 
-Copyright: 
+Copyright:
 
 Portions Copyright © 2002-2007 Bill Haneman bill.hane...@sun.com
 Portions Copyright © 2002-2007 Louise Miller


___
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] r15795 - in tags/java-access-bridge: . 1.26.2-9/debian

2012-02-24 Thread Damien Raude-Morvan
Author: drazzib
Date: 2012-02-24 23:19:47 + (Fri, 24 Feb 2012)
New Revision: 15795

Added:
   tags/java-access-bridge/1.26.2-9/
   tags/java-access-bridge/1.26.2-9/debian/changelog
   tags/java-access-bridge/1.26.2-9/debian/control
   tags/java-access-bridge/1.26.2-9/debian/copyright
Removed:
   tags/java-access-bridge/1.26.2-9/debian/changelog
   tags/java-access-bridge/1.26.2-9/debian/control
   tags/java-access-bridge/1.26.2-9/debian/copyright
Log:
[svn-buildpackage] Tagging java-access-bridge 1.26.2-9

Deleted: tags/java-access-bridge/1.26.2-9/debian/changelog
===
--- trunk/java-access-bridge/debian/changelog   2012-02-19 18:41:05 UTC (rev 
15789)
+++ tags/java-access-bridge/1.26.2-9/debian/changelog   2012-02-24 23:19:47 UTC 
(rev 15795)
@@ -1,195 +0,0 @@
-java-access-bridge (1.26.2-8) unstable; urgency=medium
-
-  * d/rules: Handle both multi-arch or single-arch openjdk-{6,7},
-it should help to fix FTBFS on ia64.
-  * d/control: Force a Depends on openjdk-7 for [hurd-any] even
-it's not, yet, ported. Will set a Dep-Wait state for buildd.
-
- -- Damien Raude-Morvan draz...@debian.org  Tue, 06 Sep 2011 23:52:05 +0200
-
-java-access-bridge (1.26.2-7) unstable; urgency=low
-
-  [ Niels Thykier ]
-  * Bumped debhelper compat to 8.
-  * Made the descriptions unique.
-  * Used © instead of (C) in the copyright file.
-  * Used the public Vcs-Svn link that does not require an alioth
-account.
-  * Remove unneeded dependency on JRE packages
-(Closes: #587566, #600664, #639952).
-
-  [ Damien Raude-Morvan ]
-  * Add myself as Uploaders.
-  * Switch to dpkg-source 3.0 (quilt) format:
-- Extract d/patches/use_accesscontroller_for_javaversion.diff
-  * Build with openjdk-7 under kfreebsd-any:
-- d/control: B-D depends on openjdk-7 [kfreebsd-any].
-- d/rules: check DEB_HOST_ARCH to choose JAVA_HOME.
-  * Handle multi-arch openjdk-{6-7}:
-- d/control: Append DEB_HOST_ARCH to java-1.x.y-openjdk
-  (Closes: #639951).
-  * Drop the compat symlinks in /usr/lib/jni, so that the package can be 
-Multi-Arch: same.
-  * For Multi-Arch add versionned B-D on cdbs (= 0.4.93)
-and debhelper (= 8.1.3).
-  * Use DEB_CONFIGURE_EXTRA_FLAGS to install to the multi-arch directory 
instead
-of moving files around.
-
- -- Damien Raude-Morvan draz...@debian.org  Sat, 03 Sep 2011 00:04:13 +0200
-
-java-access-bridge (1.26.2-6) unstable; urgency=low
-
-  * Install in a multiarch location, still provide compatibility symlinks.
-
- -- Matthias Klose d...@debian.org  Sat, 27 Aug 2011 14:14:34 +0200
-
-java-access-bridge (1.26.2-5) unstable; urgency=low
-
-  * Use an AccessController to access java.version property.
-
- -- Matthias Klose d...@debian.org  Fri, 16 Jul 2010 13:55:00 +0200
-
-java-access-bridge (1.26.2-4) unstable; urgency=low
-
-  * Build-depend on libgtk2.0-dev. Closes: #556804.
-
- -- Matthias Klose d...@debian.org  Fri, 08 Jan 2010 01:42:13 +0100
-
-java-access-bridge (1.26.2-3) unstable; urgency=low
-
-  * libaccess-bridge-java: Depend on -jre, not -jre-headless.
-
- -- Matthias Klose d...@debian.org  Tue, 06 Oct 2009 19:23:22 +0200
-
-java-access-bridge (1.26.2-2) unstable; urgency=low
-
-  * libaccess-bridge-java-jni: Depend on libaccess-bridge-java.
-
- -- Matthias Klose d...@debian.org  Sun, 04 Oct 2009 22:10:36 +0200
-
-java-access-bridge (1.26.2-1) unstable; urgency=low
-
-  * new upstream version
-
- -- Torsten Werner twer...@debian.org  Thu, 11 Jun 2009 22:42:13 +0200
-
-java-access-bridge (1.26.0-1) unstable; urgency=low
-
-  * Sync with Ubuntu:
-- new upstream version
-- new binary package libaccess-bridge-java-jni
-- remove debian/patches and quilt
-- minor cleanups
-  * Remove useless debian/dirs.
-  * Change Section: java.
-  * Add missing Depends: ${misc:Depends}.
-
- -- Torsten Werner twer...@debian.org  Sat, 16 May 2009 18:01:54 +0200
-
-java-access-bridge (1.26.0-0ubuntu5) karmic; urgency=low
-
-  * libaccess-bridge-java: Add recommendation on libaccess-bridge-java-jni.
-
- -- Matthias Klose d...@ubuntu.com  Wed, 13 May 2009 19:16:18 +0200
-
-java-access-bridge (1.26.0-0ubuntu4) karmic; urgency=low
-
-  * libaccess-bridge-java: Drop the dependency on libaccess-bridge-java-jni,
-until the package is built on sparc.
-
- -- Matthias Klose d...@ubuntu.com  Wed, 13 May 2009 11:04:28 +0200
-
-java-access-bridge (1.26.0-0ubuntu3) karmic; urgency=low
-
-  * Build dependencies are architecture specific now.
-
- -- Matthias Klose d...@ubuntu.com  Tue, 12 May 2009 13:47:50 +0200
-
-java-access-bridge (1.26.0-0ubuntu2) karmic; urgency=low
-
-  * Split out libaccess-bridge-java-jni. LP: #375347.
-
- -- Matthias Klose d...@ubuntu.com  Tue, 12 May 2009 13:07:11 +0200
-
-java-access-bridge (1.26.0-0ubuntu1) karmic; urgency=low
-
-  * New upstream release.
-
- -- Matthias Klose d...@ubuntu.com  Mon, 23 Mar 2009 20:21:22 +0100
-
-java-access-bridge (1.24.0-2) experimental; urgency=low
-
-  

Processing of java-access-bridge_1.26.2-9_amd64.changes

2012-02-24 Thread Debian FTP Masters
java-access-bridge_1.26.2-9_amd64.changes uploaded successfully to localhost
along with the files:
  java-access-bridge_1.26.2-9.dsc
  java-access-bridge_1.26.2-9.debian.tar.gz
  libaccess-bridge-java_1.26.2-9_all.deb
  libaccess-bridge-java-jni_1.26.2-9_amd64.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.


java-access-bridge_1.26.2-9_amd64.changes ACCEPTED into unstable

2012-02-24 Thread Debian FTP Masters



Accepted:
java-access-bridge_1.26.2-9.debian.tar.gz
  to main/j/java-access-bridge/java-access-bridge_1.26.2-9.debian.tar.gz
java-access-bridge_1.26.2-9.dsc
  to main/j/java-access-bridge/java-access-bridge_1.26.2-9.dsc
libaccess-bridge-java-jni_1.26.2-9_amd64.deb
  to main/j/java-access-bridge/libaccess-bridge-java-jni_1.26.2-9_amd64.deb
libaccess-bridge-java_1.26.2-9_all.deb
  to main/j/java-access-bridge/libaccess-bridge-java_1.26.2-9_all.deb


Override entries for your package:
java-access-bridge_1.26.2-9.dsc - source java
libaccess-bridge-java-jni_1.26.2-9_amd64.deb - optional java
libaccess-bridge-java_1.26.2-9_all.deb - optional java

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


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#655931: marked as done (java-access-bridge: Multi-arch package is not co-installable)

2012-02-24 Thread Debian Bug Tracking System
Your message dated Fri, 24 Feb 2012 23:33:12 +
with message-id e1s14du-zu...@franck.debian.org
and subject line Bug#655931: fixed in java-access-bridge 1.26.2-9
has caused the Debian Bug report #655931,
regarding java-access-bridge: Multi-arch package is not co-installable
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.)


-- 
655931: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=655931
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: java-access-bridge
Version: 1.26.2-8
Severity: normal
Tags: patch

The i386 and amd64 libaccess-bridge-java-jni packages are not co-installable.
libaccess-bridge-java needs to be marked as Multi-Arch: foreign (patch 
attached).
diff -Nru java-access-bridge-1.26.2/debian/control java-access-bridge-1.26.2/debian/control
--- java-access-bridge-1.26.2/debian/control	2011-09-06 23:50:54.0 +0200
+++ java-access-bridge-1.26.2/debian/control	2012-01-14 22:37:47.0 +0100
@@ -23,7 +23,9 @@
 Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/java-access-bridge/
 
 Package: libaccess-bridge-java
+Multi-Arch: foreign
 Architecture: all
+Pre-Depends: ${misc:Pre-Depends}
 Depends: ${misc:Depends}
 Recommends: libaccess-bridge-java-jni
 Description: Java Access Bridge for GNOME
---End Message---
---BeginMessage---
Source: java-access-bridge
Source-Version: 1.26.2-9

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

java-access-bridge_1.26.2-9.debian.tar.gz
  to main/j/java-access-bridge/java-access-bridge_1.26.2-9.debian.tar.gz
java-access-bridge_1.26.2-9.dsc
  to main/j/java-access-bridge/java-access-bridge_1.26.2-9.dsc
libaccess-bridge-java-jni_1.26.2-9_amd64.deb
  to main/j/java-access-bridge/libaccess-bridge-java-jni_1.26.2-9_amd64.deb
libaccess-bridge-java_1.26.2-9_all.deb
  to main/j/java-access-bridge/libaccess-bridge-java_1.26.2-9_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 655...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Damien Raude-Morvan draz...@debian.org (supplier of updated 
java-access-bridge 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: Sat, 25 Feb 2012 00:09:35 +0100
Source: java-access-bridge
Binary: libaccess-bridge-java libaccess-bridge-java-jni
Architecture: source all amd64
Version: 1.26.2-9
Distribution: unstable
Urgency: low
Maintainer: Debian Java maintainers 
pkg-java-maintainers@lists.alioth.debian.org
Changed-By: Damien Raude-Morvan draz...@debian.org
Description: 
 libaccess-bridge-java - Java Access Bridge for GNOME
 libaccess-bridge-java-jni - Java Access Bridge for GNOME (jni bindings)
Closes: 655931
Changes: 
 java-access-bridge (1.26.2-9) unstable; urgency=low
 .
   * Bump Standards-Version to 3.9.3: no changes needed.
   * libaccess-bridge-java needs to be marked as Multi-Arch: foreign.
 Patch from Benjamin Drung. (Closes: #655931).
Checksums-Sha1: 
 20fa5d278102d01cc8d0b3484bc505c9b95e34c5 2421 java-access-bridge_1.26.2-9.dsc
 4b443ed07a43b7b656e5e54892ab0720f4b58d99 4589 
java-access-bridge_1.26.2-9.debian.tar.gz
 01515631a1d266d045cda88ebef9cc12d4df858f 429828 
libaccess-bridge-java_1.26.2-9_all.deb
 a515214fa623d5ec716a6e6939f128e3c4cc7d84 6100 
libaccess-bridge-java-jni_1.26.2-9_amd64.deb
Checksums-Sha256: 
 b07f07391b381ee4a1ba9094aead7cde4d447fbf1512cfdc3475edf8a16385ce 2421 
java-access-bridge_1.26.2-9.dsc
 ef9aa7cf1d7152303661b7ca4f6d6ae42d6d024d590f7cd699ec945ca0d401ac 4589 
java-access-bridge_1.26.2-9.debian.tar.gz
 852f7cc236b2d23bd20b39f891657509b238affebece25ef3cac9588b723ca7a 429828 
libaccess-bridge-java_1.26.2-9_all.deb
 54116ef33d9fa270ec379903c56a10c65230cbe7ea3b52d40df00f7048bb3870 6100 
libaccess-bridge-java-jni_1.26.2-9_amd64.deb
Files: 
 6ba95b8828345be51eb2889a4c1390ae 2421 java optional 
java-access-bridge_1.26.2-9.dsc
 65402b1fe39558489a09685176f159b2 4589 java optional 
java-access-bridge_1.26.2-9.debian.tar.gz
 70b8a67ceba105427b4ab14bb5a95977 429828 java optional 
libaccess-bridge-java_1.26.2-9_all.deb
 6c3349952672a9075cacecd47e8f3caf 6100 java optional 
libaccess-bridge-java-jni_1.26.2-9_amd64.deb

-BEGIN PGP SIGNATURE-

Bug#661203: jenkins: Install reports chown jenkins:jenkins invalid group

2012-02-24 Thread Mark Waite
Package: jenkins
Version: 1.424.2+dfsg-2
Severity: normal

Dear Maintainer,

My Debian Wheezy system is configured to use the debian-stable repository
from jenkins-ci.org to download the latest stable Jenkins release.  Today
I performed my regular weekly update with aptitude and was surprised to
receive a new package named jenkins, along with a package named 
jenkins-common.

While installing the new packages from apttiude, a message was reported
chown jenkins:jenkins invalid group or something similar to that.

The message does not seem to have harmed the installation of Jenkins.

The machine had already been running a Jenkins version as delivered
by jenkins-ci.org, so this issue may be related to the transition
from a package provided by jenkins-ci.org to a package provided within
Debian itself.

Mark Waite


-- System Information:
Debian Release: wheezy/sid
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'testing'), (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 3.2.0-1-686-pae (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages jenkins depends on:
ii  adduser  3.113+nmu1
ii  daemon   0.6.4-1
ii  default-jre-headless [java6-runtime-headless]1:1.6-46
ii  jenkins-common   1.424.2+dfsg-2
ii  openjdk-6-jre-headless [java6-runtime-headless]  6b24~pre2-1
ii  psmisc   22.15-2

jenkins recommends no packages.

jenkins suggests no packages.

-- Configuration Files:
/etc/apt/sources.list.d/jenkins.list changed:
deb http://pkg.jenkins-ci.org/debian-stable binary/


-- no debconf 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.