user-agent-utils 1.18-1 MIGRATED to testing

2015-10-24 Thread Debian testing watch
FYI: The status of the user-agent-utils source package
in Debian's testing distribution has changed.

  Previous version: 1.16-1
  Current version:  1.18-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 https://release.debian.org/testing-watch/ for more information.

__
This is the maintainer address of Debian's Java team
. 
Please use
debian-j...@lists.debian.org for discussions and questions.


sisu-plexus 0.3.2-1 MIGRATED to testing

2015-10-24 Thread Debian testing watch
FYI: The status of the sisu-plexus source package
in Debian's testing distribution has changed.

  Previous version: 0.3.1-2
  Current version:  0.3.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 https://release.debian.org/testing-watch/ for more information.

__
This is the maintainer address of Debian's Java team
. 
Please use
debian-j...@lists.debian.org for discussions and questions.


freeplane 1.3.15-3 MIGRATED to testing

2015-10-24 Thread Debian testing watch
FYI: The status of the freeplane source package
in Debian's testing distribution has changed.

  Previous version: 1.3.15-2
  Current version:  1.3.15-3

-- 
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 https://release.debian.org/testing-watch/ for more information.

__
This is the maintainer address of Debian's Java team
. 
Please use
debian-j...@lists.debian.org for discussions and questions.


sisu-inject 0.3.2-1 MIGRATED to testing

2015-10-24 Thread Debian testing watch
FYI: The status of the sisu-inject source package
in Debian's testing distribution has changed.

  Previous version: 0.3.1-2
  Current version:  0.3.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 https://release.debian.org/testing-watch/ for more information.

__
This is the maintainer address of Debian's Java team
. 
Please use
debian-j...@lists.debian.org for discussions and questions.


Bug#802858: activemq: FTBFS: Missing: jakarta-regexp:jakarta-regexp:jar:debian

2015-10-24 Thread Hans Joachim Desserud

I haven't tested this, but I notice that Ubuntu has a patch for this
package which adds libregexp-java as a build dependency in order to
fix a FTBFS issue. Hm... might be worth checking out :)

For details, see
http://patches.ubuntu.com/a/activemq/activemq_5.6.0+dfsg1-4+deb8u1ubuntu1.patch


--
mvh / best regards
Hans Joachim Desserud
http://desserud.org

__
This is the maintainer address of Debian's Java team
. 
Please use
debian-j...@lists.debian.org for discussions and questions.


reproducible.debian.net status changes for maven

2015-10-24 Thread Reproducible builds folks
2015-10-24 00:33 https://reproducible.debian.net/unstable/amd64/maven changed 
from unreproducible -> reproducible

__
This is the maintainer address of Debian's Java team
. 
Please use
debian-j...@lists.debian.org for discussions and questions.


reproducible.debian.net status changes for commons-vfs

2015-10-24 Thread Reproducible builds folks
2015-10-24 10:32 https://reproducible.debian.net/unstable/amd64/commons-vfs 
changed from unreproducible -> reproducible

__
This is the maintainer address of Debian's Java team
. 
Please use
debian-j...@lists.debian.org for discussions and questions.


reproducible.debian.net status changes for plexus-classworlds2

2015-10-24 Thread Reproducible builds folks
2015-10-24 16:58 
https://reproducible.debian.net/unstable/amd64/plexus-classworlds2 changed from 
unreproducible -> reproducible

__
This is the maintainer address of Debian's Java team
. 
Please use
debian-j...@lists.debian.org for discussions and questions.


reproducible.debian.net status changes for jffi

2015-10-24 Thread Reproducible builds folks
2015-10-24 03:23 https://reproducible.debian.net/unstable/amd64/jffi changed 
from unreproducible -> reproducible

__
This is the maintainer address of Debian's Java team
. 
Please use
debian-j...@lists.debian.org for discussions and questions.


reproducible.debian.net status changes for libjuniversalchardet-java

2015-10-24 Thread Reproducible builds folks
2015-10-24 09:13 
https://reproducible.debian.net/unstable/amd64/libjuniversalchardet-java 
changed from unreproducible -> reproducible

__
This is the maintainer address of Debian's Java team
. 
Please use
debian-j...@lists.debian.org for discussions and questions.


reproducible.debian.net status changes for javassist

2015-10-24 Thread Reproducible builds folks
2015-10-24 01:44 https://reproducible.debian.net/unstable/amd64/javassist 
changed from unreproducible -> reproducible

__
This is the maintainer address of Debian's Java team
. 
Please use
debian-j...@lists.debian.org for discussions and questions.


reproducible.debian.net status changes for libphonenumber

2015-10-24 Thread Reproducible builds folks
2015-10-24 01:20 https://reproducible.debian.net/unstable/amd64/libphonenumber 
changed from unreproducible -> reproducible

__
This is the maintainer address of Debian's Java team
. 
Please use
debian-j...@lists.debian.org for discussions and questions.


Bug#802907: maven-repo-helper: Wrong transformation of plugin dependencies

2015-10-24 Thread Emmanuel Bourg
Package: maven-repo-helper
Version: 1.8.12
Severity: normal

maven-repo-helper doesn't transform properly the plugin dependencies
when a plugin is ignored.

For example with this declaration:


  foo
  foo
  

  foo-dep
  foo-dep
  1.0

  


  bar
  bar
  

  bar-dep
  bar-dep
  2.0

  


Ignoring the plugin foo will result in this transformed pom:


  bar
  bar
  

  foo-dep
  foo-dep
  1.0

  


The dependencies of the ignored plugins are shifted and go to the next
plugin with dependencies instead of being ignored.

It's possible to reproduce this issue with the following test case
applied to the hibernate-validator-parent 4.3.2 pom:

@Test
public void testTransformPluginDependencies() throws Exception {
File pom = tmpDir.usePom("hibernate-validator-parent-4.3.2.Final.pom");
instance.getRulesFiles().addDefaultRules();
instance.getRulesFiles().get(IGNORE).add(new 
DependencyRule("org.jboss.maven.plugins maven-jdocbook-plugin"));
instance.transformPom(pom, tmpDir.updatedPom(), true, true, false, 
false, null, null);
POMReader reader = new POMReader();
POMInfo info2 = reader.readPom(tmpDir.read(tmpDir.updatedPom()));

List pluginDependencies = 
info2.getDependencies().get(PLUGIN_MANAGEMENT_DEPENDENCIES);
assertNotNull("null list", pluginDependencies);
assertEquals("number of plugin dependencies", 1, 
pluginDependencies.size());
assertEquals("dependency", 
"org.jboss.logging:jboss-logging-processor:jar:1.0.1.Final::null", 
pluginDependencies.get(0).toString());
}

__
This is the maintainer address of Debian's Java team
. 
Please use
debian-j...@lists.debian.org for discussions and questions.


antlr3.2_3.2-12_amd64.changes ACCEPTED into unstable, unstable

2015-10-24 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 03 Sep 2015 12:06:01 +0200
Source: antlr3.2
Binary: antlr3.2 antlr3.2-maven-plugin libantlr3.2-gunit-java 
antlr3.2-gunit-maven-plugin
Architecture: source all
Version: 3.2-12
Distribution: unstable
Urgency: medium
Maintainer: Debian Java Maintainers 

Changed-By: Emmanuel Bourg 
Description:
 antlr3.2   - language tool for constructing recognizers, compilers etc
 antlr3.2-gunit-maven-plugin - Maven plugin for gUnit, a unit test framework 
for ANTLR grammars
 antlr3.2-maven-plugin - Maven plugin for ANTLR 3.2
 libantlr3.2-gunit-java - Unit Test framework for ANTLR grammars
Changes:
 antlr3.2 (3.2-12) unstable; urgency=medium
 .
   * Cloned the package as antlr3.2 since some packages are incompatible
 with ANTLR 3.5
   * debian/watch: Watch the release tags on Github
Checksums-Sha1:
 0ba2eb1490ef4a60fd1da552099616e521947022 2451 antlr3.2_3.2-12.dsc
 04da26a0f3f6a8033501552c4843c2252c9985ea 810887 antlr3.2_3.2.orig.tar.gz
 a46769875b6254c8c16fb608c861c60db99f5310 62636 antlr3.2_3.2-12.debian.tar.xz
 12c6a58e87bf97f963dbc58b5a800fd385d831ef 19230 
antlr3.2-gunit-maven-plugin_3.2-12_all.deb
 3aa5fe69356dad09078a55c3c5022025cb367b38 22652 
antlr3.2-maven-plugin_3.2-12_all.deb
 57bd9fef2d4173ecf451bf71d0d8fdf824769ea8 988204 antlr3.2_3.2-12_all.deb
 8d3832ac6f8464f2fcb7260aa064ab4094696da9 263842 
libantlr3.2-gunit-java_3.2-12_all.deb
Checksums-Sha256:
 e08caa2a7a58962755784d241d89d830a8b778c799a6fb2dd990c2b791f4c39f 2451 
antlr3.2_3.2-12.dsc
 fca85b779064a06020bf37865c0c8b16df1ef25f4471392a36466b662ec0588a 810887 
antlr3.2_3.2.orig.tar.gz
 3f9ce66ec8eae3b40c34dcf66a9e58a641270f641e18e7184af1c4be86cff33e 62636 
antlr3.2_3.2-12.debian.tar.xz
 7f7fe4783df65e3edd0858765d89c0f25dfd6b70523eebdfd7aef9ceb1472838 19230 
antlr3.2-gunit-maven-plugin_3.2-12_all.deb
 aefbbd8886c14027a82c5fbaf811442ab7222d83e05d4c9161dae54dfa8f603a 22652 
antlr3.2-maven-plugin_3.2-12_all.deb
 cc41be09d22236b65d9d178784d51f7885fa474fdfeb658056f6c5d36c1ec2d7 988204 
antlr3.2_3.2-12_all.deb
 0ca764c55d3e0121f7f84517e35d94414c417990d68c174e076ef70664bb5842 263842 
libantlr3.2-gunit-java_3.2-12_all.deb
Files:
 af6a736c37ca2d551f7fdce5a6229856 2451 java optional antlr3.2_3.2-12.dsc
 21f74822c1f038bc0b4ca52b6ec07fd7 810887 java optional antlr3.2_3.2.orig.tar.gz
 a0f2f6665858215fce34a61eae789380 62636 java optional 
antlr3.2_3.2-12.debian.tar.xz
 5460cd2691fcff042f468c1a424942ee 19230 java optional 
antlr3.2-gunit-maven-plugin_3.2-12_all.deb
 a4bf060e5b47bd1046e55cce641ecb54 22652 java optional 
antlr3.2-maven-plugin_3.2-12_all.deb
 5a5c1caa9c4d2c3b5a1a53ed6fb8092a 988204 java optional antlr3.2_3.2-12_all.deb
 1a964df168eaa4449a94777443f3749e 263842 java optional 
libantlr3.2-gunit-java_3.2-12_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v2

iQIcBAEBCAAGBQJV6CS5AAoJEPUTxBnkudCsz/sQALZYYz4mARZMcOtPOQ8PJ/rD
NA00SwZjnshOnCdDNQE2gy+JesUfrGtJOhVk4sxQX4FEa7BWaXCXtxqHPFco8qxv
NCOcvEEHkpH3nkE3TzLCGCZq3R2J6PMebo6eghNQvtFk6JlSjvmMEcc63LoVXMRU
qoWJKU+FOtLWvf0vQUpWG5IaR8DP0z1a5O4ZTQEv/yEfqeK/r6PB2WVgdBLGymVc
2NbxFbRkZ1K33nUILz9JiYuzqNyVwv0zRxG4B1TeO1r6lcr4keytLhpmsuh+dcf9
86c4PkYQ6PrLNkQ9L2s19s7ufuNAgMfzbjvl24Vqu/c60E1g09Yxv4kfY6G1PSK2
ujlrmxZ1trKsnkVK+/ZWDJbm508OxEo4UcfHcVan2VgH8foSRFkxFkNxoPdlMFdi
p1GQ2PgXygcANwhic7U7RgCRfi43NkZgCA0Lg5eVWIS5R81mTtTfyvb/FVLvElJi
ivbfXj92AQ6G79abvtNRAzbBy3idsJfRpTiewcfN2u+97PkZq1su1g0Q+UWWV+0H
u0tRERo2/i2Vf3zMODyLimjZRcm4DznYaqzZYIY6W+W1MpdCWEES+3XwaCla1JfQ
3kkd09ZjSknhzlwreY5+GlDWOAPxoewYu+I1t32pv1VzOMdcaHq4uy+4mx9iwLGA
8PYzD0nDAd2CKkAtFkk8
=+R/Q
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

__
This is the maintainer address of Debian's Java team
. 
Please use
debian-j...@lists.debian.org for discussions and questions.


bookkeeper is marked for autoremoval from testing

2015-10-24 Thread Debian testing autoremoval watch
bookkeeper 4.2.4-2 is marked for autoremoval from testing on 2015-11-15

It is affected by these RC bugs:
802061: bookkeeper: FTBFS: Missing: org.jboss.netty:netty:jar:debian


__
This is the maintainer address of Debian's Java team
. 
Please use
debian-j...@lists.debian.org for discussions and questions.


jenkins-memory-monitor is marked for autoremoval from testing

2015-10-24 Thread Debian testing autoremoval watch
jenkins-memory-monitor 1.8-1 is marked for autoremoval from testing on 
2015-11-15

It is affected by these RC bugs:
802077: jenkins-memory-monitor: FTBFS: java.io.IOException: 'top' unavailable


__
This is the maintainer address of Debian's Java team
. 
Please use
debian-j...@lists.debian.org for discussions and questions.


Bug#727059: RE: freeplane: Wrong icon appears on GNOME 3 main and left panels

2015-10-24 Thread Felix Natter
hello Alessio,

did you make any progress with this?

I tend to close this, because it's a Ubuntu and not a Freeplane issue
(the behavior should be the same for other java apps).

What do you think?

Best Regards,
-- 
Felix Natter

__
This is the maintainer address of Debian's Java team
. 
Please use
debian-j...@lists.debian.org for discussions and questions.


Bug#802858: activemq: FTBFS: Missing: jakarta-regexp:jakarta-regexp:jar:debian

2015-10-24 Thread Chris West (Faux)
Source: activemq
Version: 5.6.0+dfsg1-4+deb8u1
Severity: serious
Justification: fails to build from source
Tags: sid stretch
User: reproducible-bui...@lists.alioth.debian.org
Usertags: ftbfs
X-Debbugs-CC: reproducible-bui...@lists.alioth.debian.org

Dear Maintainer,

The package fails to build:

[INFO] Building ActiveMQ :: Core
[INFO]task-segment: [install]
[INFO] 
[INFO] 
[ERROR] BUILD ERROR
[INFO] 
[INFO] Failed to resolve artifact.

Missing:
--
1) jakarta-regexp:jakarta-regexp:jar:debian

  Try downloading the file manually from the project website.

  Then, install it using the command: 
  mvn install:install-file -DgroupId=jakarta-regexp 
-DartifactId=jakarta-regexp -Dversion=debian -Dpackaging=jar 
-Dfile=/path/to/file

  Alternatively, if you host your own repository you can deploy the file there: 
  mvn deploy:deploy-file -DgroupId=jakarta-regexp 
-DartifactId=jakarta-regexp -Dversion=debian -Dpackaging=jar 
-Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]

  Path to dependency: 
1) org.apache.activemq:activemq-core:bundle:5.6.0
2) jakarta-regexp:jakarta-regexp:jar:debian

--
1 required artifact is missing.

for artifact: 
  org.apache.activemq:activemq-core:bundle:5.6.0

from the specified remote repositories:
  com.springsource.repository.bundles.external 
(http://repository.springsource.com/maven/bundles/external),
  apache.snapshots 
(https://repository.apache.org/content/repositories/snapshots/),
  central (https://repo1.maven.org/maven2),
  fusesource-snapshots 
(http://repo.fusesource.com/nexus/content/groups/public-snapshots)



NOTE: Maven is executing in offline mode. Any artifacts not already in your 
local
repository will be inaccessible.


Full build log:
https://reproducible.debian.net/rb-pkg/unstable/amd64/activemq.html

-- System Information:
Debian Release: stretch/sid
APT prefers unstable
APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)

__
This is the maintainer address of Debian's Java team
. 
Please use
debian-j...@lists.debian.org for discussions and questions.


Bug#714524: [freeplane] Keystrokes no longer recognised during use

2015-10-24 Thread Felix Natter
hi OmegaPhil,

can we close this bug now?

Best Regards,
-- 
Felix Natter

__
This is the maintainer address of Debian's Java team
. 
Please use
debian-j...@lists.debian.org for discussions and questions.


Bug#714524: [freeplane] Keystrokes no longer recognised during use

2015-10-24 Thread OmegaPhil
On 24/10/15 10:16, Felix Natter wrote:
> hi OmegaPhil,
> 
> can we close this bug now?
> 
> Best Regards,


Morning - the bug is still there, things remain at the state of the last
post on the Google code bug for ibus:
https://code.google.com/p/ibus/issues/detail?id=1733#c5

Since its so easy for me to work around it still isn't worth any serious
messing around in freeplane to fix.

I suppose you could close it here and that bug would be left, although
it would be less visible for freeplane users at that point (presumably
theres someone else in the world with my setup...).

Thanks





signature.asc
Description: OpenPGP digital signature
__
This is the maintainer address of Debian's Java team
. 
Please use
debian-j...@lists.debian.org for discussions and questions.