[groovy] branch master updated (50deb53 -> b7674d9)

2017-09-07 Thread Felix Natter
This is an automated email from the git hooks/post-receive script.

fnatter-guest pushed a change to branch master
in repository groovy.

  from  50deb53   prepare QA upload
   new  b7674d9   revert to Team upload

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 debian/changelog | 2 +-
 debian/control   | 3 ++-
 2 files changed, 3 insertions(+), 2 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/groovy.git

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


[groovy] 01/01: revert to Team upload

2017-09-07 Thread Felix Natter
This is an automated email from the git hooks/post-receive script.

fnatter-guest pushed a commit to branch master
in repository groovy.

commit b7674d9c8434718bf4b35a5bb91c63cd07829e4f
Author: Felix Natter 
Date:   Thu Sep 7 21:09:12 2017 +0200

revert to Team upload
---
 debian/changelog | 2 +-
 debian/control   | 3 ++-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index a890317..a0cad66 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,6 @@
 groovy (2.4.8-2) unstable; urgency=high
 
-  * QA upload.
+  * Team upload.
   [ Miguel Landaeta ]
   * Remove myself from uploaders list. (Closes: #871857)
   * Update copyright info.
diff --git a/debian/control b/debian/control
index 6fc9cca..d9d1178 100644
--- a/debian/control
+++ b/debian/control
@@ -1,7 +1,8 @@
 Source: groovy
 Section: java
 Priority: optional
-Maintainer: Debian QA Group 
+Maintainer: Debian Java Maintainers 

+Uploaders: Felix Natter 
 Build-Depends:
  ant,
  ant-optional,

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/groovy.git

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


[groovy] branch master updated (5c14277 -> 50deb53)

2017-09-07 Thread Felix Natter
This is an automated email from the git hooks/post-receive script.

fnatter-guest pushed a change to branch master
in repository groovy.

  from  5c14277   Add missing bug number
   new  ced0ef1   backport GROOVY-8163 sandbox fix
   new  50deb53   prepare QA upload

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 debian/changelog|   9 +-
 debian/control  |   2 +-
 debian/patches/08_GROOVY-8163.patch | 477 
 debian/patches/series   |   1 +
 4 files changed, 485 insertions(+), 4 deletions(-)
 create mode 100644 debian/patches/08_GROOVY-8163.patch

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/groovy.git

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


[groovy] 01/02: backport GROOVY-8163 sandbox fix

2017-09-07 Thread Felix Natter
This is an automated email from the git hooks/post-receive script.

fnatter-guest pushed a commit to branch master
in repository groovy.

commit ced0ef139e0487f011650ca7894ba7936e659ddd
Author: Felix Natter 
Date:   Thu Sep 7 20:09:42 2017 +0200

backport GROOVY-8163 sandbox fix
---
 debian/patches/08_GROOVY-8163.patch | 477 
 debian/patches/series   |   1 +
 2 files changed, 478 insertions(+)

diff --git a/debian/patches/08_GROOVY-8163.patch 
b/debian/patches/08_GROOVY-8163.patch
new file mode 100644
index 000..088ec5f
--- /dev/null
+++ b/debian/patches/08_GROOVY-8163.patch
@@ -0,0 +1,477 @@
+From 0305a38a0cc8f4190a1486c460ebc6f712ad1a07 Mon Sep 17 00:00:00 2001
+From: Dimitry Polivaev 
+Date: Sat, 3 Jun 2017 20:03:18 +0200
+Subject: [PATCH] GROOVY-8163: Prevent CachedField and CachedMethod from
+ leaking access permissions (closes #532)
+
+---
+ src/main/groovy/lang/MetaClassImpl.java|   3 +
+ .../groovy/reflection/AccessPermissionChecker.java |  83 +++
+ .../reflection/CacheAccessControlException.java|  27 ++
+ .../codehaus/groovy/reflection/CachedField.java|   2 +
+ .../codehaus/groovy/reflection/CachedMethod.java   |   8 +
+ .../codehaus/groovy/reflection/SecurityTest.java   | 271 +
+ 6 files changed, 394 insertions(+)
+ create mode 100644 
src/main/org/codehaus/groovy/reflection/AccessPermissionChecker.java
+ create mode 100644 
src/main/org/codehaus/groovy/reflection/CacheAccessControlException.java
+ create mode 100644 src/test/org/codehaus/groovy/reflection/SecurityTest.java
+
+--- a/src/main/groovy/lang/MetaClassImpl.java
 b/src/main/groovy/lang/MetaClassImpl.java
+@@ -23,6 +23,7 @@
+ import org.codehaus.groovy.classgen.asm.BytecodeHelper;
+ import org.codehaus.groovy.control.CompilationUnit;
+ import org.codehaus.groovy.control.Phases;
++import org.codehaus.groovy.reflection.CacheAccessControlException;
+ import org.codehaus.groovy.reflection.CachedClass;
+ import org.codehaus.groovy.reflection.CachedConstructor;
+ import org.codehaus.groovy.reflection.CachedField;
+@@ -1809,6 +1810,9 @@
+ } catch (IllegalArgumentException e) {
+ // can't access the field directly but there may be a getter
+ mp = null;
++} catch (CacheAccessControlException e) {
++// can't access the field directly but there may be a getter
++mp = null;
+ }
+ }
+ 
+--- /dev/null
 b/src/main/org/codehaus/groovy/reflection/AccessPermissionChecker.java
+@@ -0,0 +1,83 @@
++/*
++ *  Licensed to the Apache Software Foundation (ASF) under one
++ *  or more contributor license agreements.  See the NOTICE file
++ *  distributed with this work for additional information
++ *  regarding copyright ownership.  The ASF licenses this file
++ *  to you under the Apache License, Version 2.0 (the
++ *  "License"); you may not use this file except in compliance
++ *  with the License.  You may obtain a copy of the License at
++ *
++ *http://www.apache.org/licenses/LICENSE-2.0
++ *
++ *  Unless required by applicable law or agreed to in writing,
++ *  software distributed under the License is distributed on an
++ *  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
++ *  KIND, either express or implied.  See the License for the
++ *  specific language governing permissions and limitations
++ *  under the License.
++ */
++package org.codehaus.groovy.reflection;
++
++import java.lang.reflect.Field;
++import java.lang.reflect.Method;
++import java.lang.reflect.Modifier;
++import java.lang.reflect.ReflectPermission;
++import java.security.AccessControlException;
++
++import groovy.lang.GroovyObject;
++
++class AccessPermissionChecker {
++
++private static final ReflectPermission REFLECT_PERMISSION = new 
ReflectPermission("suppressAccessChecks");
++
++private static void checkAccessPermission(Class declaringClass, final 
int modifiers, boolean isAccessible) {
++final SecurityManager securityManager = System.getSecurityManager();
++if (securityManager != null && isAccessible) {
++if (((modifiers & Modifier.PRIVATE) != 0
++|| ((modifiers & (Modifier.PUBLIC | 
Modifier.PROTECTED)) == 0
++ && 
packageCanNotBeAddedAnotherClass(declaringClass)))
++&& 
!GroovyObject.class.isAssignableFrom(declaringClass)) {
++securityManager.checkPermission(REFLECT_PERMISSION);
++}
++else if ((modifiers & (Modifier.PROTECTED)) != 0
++&& declaringClass.equals(ClassLoader.class)){
++securityManager.checkCreateClassLoader();
++}
++}
++}
++
++private static boolean packageCanNotBeAddedAnotherClass(Class 
declaringClass) {
++return declaringClass.getName().startsWith("java.");

[groovy] 02/02: prepare QA upload

2017-09-07 Thread Felix Natter
This is an automated email from the git hooks/post-receive script.

fnatter-guest pushed a commit to branch master
in repository groovy.

commit 50deb53b8d818840b0290b2bace40b2fc1911216
Author: Felix Natter 
Date:   Thu Sep 7 20:10:03 2017 +0200

prepare QA upload
---
 debian/changelog | 9 ++---
 debian/control   | 2 +-
 2 files changed, 7 insertions(+), 4 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 8b15943..a890317 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,10 +1,13 @@
-groovy (2.4.8-2) UNRELEASED; urgency=high
+groovy (2.4.8-2) unstable; urgency=high
 
-  * Team upload.
+  * QA upload.
+  [ Miguel Landaeta ]
   * Remove myself from uploaders list. (Closes: #871857)
   * Update copyright info.
+  [ Felix Natter ]
+  * Backport GROOVY-8163 fix from groovy 2.5.x
 
- -- Miguel Landaeta   Mon, 07 Aug 2017 10:16:06 +0100
+ -- Felix Natter   Thu, 07 Sep 2017 19:30:12 +0200
 
 groovy (2.4.8-1) unstable; urgency=high
 
diff --git a/debian/control b/debian/control
index a901b02..6fc9cca 100644
--- a/debian/control
+++ b/debian/control
@@ -1,7 +1,7 @@
 Source: groovy
 Section: java
 Priority: optional
-Maintainer: Debian Java Maintainers 

+Maintainer: Debian QA Group 
 Build-Depends:
  ant,
  ant-optional,

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/groovy.git

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


[unsafe-fences] 01/01: Upload to stretch-backports

2017-09-07 Thread Miguel Landaeta
This is an automated email from the git hooks/post-receive script.

nomadium pushed a commit to branch stretch-backports
in repository unsafe-fences.

commit d626cc9cd95a0ab06045de85afe191c37d0a858f
Author: Miguel Landaeta 
Date:   Thu Sep 7 18:22:06 2017 +0100

Upload to stretch-backports
---
 debian/changelog | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index 1afe926..0f87978 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+unsafe-fences (1.0-1~bpo9+1) stretch-backports; urgency=medium
+
+  * Rebuild for stretch-backports.
+
+ -- Miguel Landaeta   Fri, 25 Aug 2017 20:57:43 +0100
+
 unsafe-fences (1.0-1) unstable; urgency=medium
 
   * Initial release. (Closes: #856674)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/unsafe-fences.git

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


[unsafe-fences] branch stretch-backports created (now d626cc9)

2017-09-07 Thread Miguel Landaeta
This is an automated email from the git hooks/post-receive script.

nomadium pushed a change to branch stretch-backports
in repository unsafe-fences.

at  d626cc9   Upload to stretch-backports

This branch includes the following new commits:

   new  d626cc9   Upload to stretch-backports

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/unsafe-fences.git

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


[jitescript] branch stretch-backports created (now 554a9d6)

2017-09-07 Thread Miguel Landaeta
This is an automated email from the git hooks/post-receive script.

nomadium pushed a change to branch stretch-backports
in repository jitescript.

at  554a9d6   Upload to stretch-backports

This branch includes the following new commits:

   new  554a9d6   Upload to stretch-backports

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/jitescript.git

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


[jitescript] 01/01: Upload to stretch-backports

2017-09-07 Thread Miguel Landaeta
This is an automated email from the git hooks/post-receive script.

nomadium pushed a commit to branch stretch-backports
in repository jitescript.

commit 554a9d6bc2e264ba8e232380b5505ebcadc77f25
Author: Miguel Landaeta 
Date:   Thu Sep 7 18:15:13 2017 +0100

Upload to stretch-backports
---
 debian/changelog | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index 1a927ba..629b40f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+jitescript (0.4.1-2~bpo9+1) stretch-backports; urgency=medium
+
+  * Rebuild for stretch-backports.
+
+ -- Miguel Landaeta   Fri, 25 Aug 2017 19:46:46 +0100
+
 jitescript (0.4.1-2) unstable; urgency=medium
 
   * Replace B-D on libasm4-java with libasm-java.

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/jitescript.git

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


[libjavaewah-java] branch master updated (eb6f825 -> ebde09d)

2017-09-07 Thread Emmanuel Bourg
This is an automated email from the git hooks/post-receive script.

ebourg-guest pushed a change to branch master
in repository libjavaewah-java.

  from  eb6f825   prepare changelog for upload
   new  99deb4f   Removed the unused build dependency on 
libmaven-install-plugin-java
   new  951776a   Wrap and sort
   new  61963d2   Standards-Version updated to 4.1.0
   new  ebde09d   Use secure Vcs-* URLs

The 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 debian/changelog |  9 +
 debian/control   | 24 ++--
 2 files changed, 23 insertions(+), 10 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/libjavaewah-java.git

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


[libjavaewah-java] 04/04: Use secure Vcs-* URLs

2017-09-07 Thread Emmanuel Bourg
This is an automated email from the git hooks/post-receive script.

ebourg-guest pushed a commit to branch master
in repository libjavaewah-java.

commit ebde09d57e2782e3c9a2ee616f5bd08af3996247
Author: Emmanuel Bourg 
Date:   Thu Sep 7 18:53:24 2017 +0200

Use secure Vcs-* URLs
---
 debian/changelog | 1 +
 debian/control   | 4 ++--
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index e196c9f..86a5713 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -3,6 +3,7 @@ libjavaewah-java (0.6.12-3) UNRELEASED; urgency=medium
   * Team upload.
   * Removed the unused build dependency on libmaven-install-plugin-java
   * Standards-Version updated to 4.1.0
+  * Use secure Vcs-* URLs
 
  -- Emmanuel Bourg   Thu, 07 Sep 2017 18:49:38 +0200
 
diff --git a/debian/control b/debian/control
index a9ebc53..5b96662 100644
--- a/debian/control
+++ b/debian/control
@@ -13,8 +13,8 @@ Build-Depends:
  libmaven-javadoc-plugin-java,
  maven-debian-helper (>= 1.6.3)
 Standards-Version: 4.1.0
-Vcs-Git: git://anonscm.debian.org/pkg-java/libjavaewah-java.git
-Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-java/libjavaewah-java.git
+Vcs-Git: https://anonscm.debian.org/git/pkg-java/libjavaewah-java.git
+Vcs-Browser: https://anonscm.debian.org/cgit/pkg-java/libjavaewah-java.git
 Homepage: https://github.com/lemire/javaewah
 
 Package: libjavaewah-java

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/libjavaewah-java.git

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


[libjavaewah-java] 01/04: Removed the unused build dependency on libmaven-install-plugin-java

2017-09-07 Thread Emmanuel Bourg
This is an automated email from the git hooks/post-receive script.

ebourg-guest pushed a commit to branch master
in repository libjavaewah-java.

commit 99deb4fe37936a607c87fc3a8472892374f93253
Author: Emmanuel Bourg 
Date:   Thu Sep 7 18:52:34 2017 +0200

Removed the unused build dependency on libmaven-install-plugin-java
---
 debian/changelog | 7 +++
 debian/control   | 2 +-
 2 files changed, 8 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index 4bc1bbd..585bb7a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+libjavaewah-java (0.6.12-3) UNRELEASED; urgency=medium
+
+  * Team upload.
+  * Removed the unused build dependency on libmaven-install-plugin-java
+
+ -- Emmanuel Bourg   Thu, 07 Sep 2017 18:49:38 +0200
+
 libjavaewah-java (0.6.12-2) unstable; urgency=medium
 
   * Add missing build-dep on junit4 (Closes: #866546)
diff --git a/debian/control b/debian/control
index 0aed88c..b4004b3 100644
--- a/debian/control
+++ b/debian/control
@@ -5,7 +5,7 @@ Maintainer: Debian Java Maintainers 
,
  tony mancill 
 Build-Depends: debhelper (>= 10), default-jdk, maven-debian-helper (>= 1.6.3)
-Build-Depends-Indep: libmaven-bundle-plugin-java, libmaven-install-plugin-java,
+Build-Depends-Indep: libmaven-bundle-plugin-java,
  libmaven-javadoc-plugin-java, junit4
 Standards-Version: 4.0.0
 Homepage: https://github.com/lemire/javaewah

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/libjavaewah-java.git

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


[libjavaewah-java] 03/04: Standards-Version updated to 4.1.0

2017-09-07 Thread Emmanuel Bourg
This is an automated email from the git hooks/post-receive script.

ebourg-guest pushed a commit to branch master
in repository libjavaewah-java.

commit 61963d2a13eb979bdb98e7ad8ec654f2a993decb
Author: Emmanuel Bourg 
Date:   Thu Sep 7 18:53:16 2017 +0200

Standards-Version updated to 4.1.0
---
 debian/changelog | 1 +
 debian/control   | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index 585bb7a..e196c9f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -2,6 +2,7 @@ libjavaewah-java (0.6.12-3) UNRELEASED; urgency=medium
 
   * Team upload.
   * Removed the unused build dependency on libmaven-install-plugin-java
+  * Standards-Version updated to 4.1.0
 
  -- Emmanuel Bourg   Thu, 07 Sep 2017 18:49:38 +0200
 
diff --git a/debian/control b/debian/control
index d9bc6a8..a9ebc53 100644
--- a/debian/control
+++ b/debian/control
@@ -12,7 +12,7 @@ Build-Depends:
  libmaven-bundle-plugin-java,
  libmaven-javadoc-plugin-java,
  maven-debian-helper (>= 1.6.3)
-Standards-Version: 4.0.0
+Standards-Version: 4.1.0
 Vcs-Git: git://anonscm.debian.org/pkg-java/libjavaewah-java.git
 Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-java/libjavaewah-java.git
 Homepage: https://github.com/lemire/javaewah

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/libjavaewah-java.git

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


[libjavaewah-java] 02/04: Wrap and sort

2017-09-07 Thread Emmanuel Bourg
This is an automated email from the git hooks/post-receive script.

ebourg-guest pushed a commit to branch master
in repository libjavaewah-java.

commit 951776a13dfd78a8afdd5b4eae1f8a3d93ffa60f
Author: Emmanuel Bourg 
Date:   Thu Sep 7 18:53:07 2017 +0200

Wrap and sort
---
 debian/control | 20 
 1 file changed, 12 insertions(+), 8 deletions(-)

diff --git a/debian/control b/debian/control
index b4004b3..d9bc6a8 100644
--- a/debian/control
+++ b/debian/control
@@ -2,19 +2,24 @@ Source: libjavaewah-java
 Section: java
 Priority: optional
 Maintainer: Debian Java Maintainers 

-Uploaders: Jakub Adam ,
+Uploaders:
+ Jakub Adam ,
  tony mancill 
-Build-Depends: debhelper (>= 10), default-jdk, maven-debian-helper (>= 1.6.3)
-Build-Depends-Indep: libmaven-bundle-plugin-java,
- libmaven-javadoc-plugin-java, junit4
+Build-Depends:
+ debhelper (>= 10),
+ default-jdk,
+ junit4,
+ libmaven-bundle-plugin-java,
+ libmaven-javadoc-plugin-java,
+ maven-debian-helper (>= 1.6.3)
 Standards-Version: 4.0.0
-Homepage: https://github.com/lemire/javaewah
 Vcs-Git: git://anonscm.debian.org/pkg-java/libjavaewah-java.git
 Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-java/libjavaewah-java.git
+Homepage: https://github.com/lemire/javaewah
 
 Package: libjavaewah-java
 Architecture: all
-Depends: ${misc:Depends}, ${maven:Depends}
+Depends: ${maven:Depends}, ${misc:Depends}
 Recommends: ${maven:OptionalDepends}
 Suggests: libjavaewah-java-doc
 Description: Compressed variant of the Java bitset class
@@ -36,7 +41,7 @@ Description: Compressed variant of the Java bitset class
 Package: libjavaewah-java-doc
 Architecture: all
 Section: doc
-Depends: ${misc:Depends}, ${maven:DocDepends}
+Depends: ${maven:DocDepends}, ${misc:Depends}
 Recommends: ${maven:DocOptionalDepends}
 Suggests: libjavaewah-java
 Description: Compressed variant of the Java bitset class (documentation)
@@ -46,4 +51,3 @@ Description: Compressed variant of the Java bitset class 
(documentation)
  compresses better, but is not as fast.
  .
  This package contains the API documentation of libjavaewah-java.
-

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/libjavaewah-java.git

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


[libdecentxml-java] branch master updated (f8c34de -> 9eabe21)

2017-09-07 Thread Emmanuel Bourg
This is an automated email from the git hooks/post-receive script.

ebourg-guest pushed a change to branch master
in repository libdecentxml-java.

  from  f8c34de   Upload to unstable
   new  9eabe21   Removed the unused build dependency on 
libmaven-install-plugin-java

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 debian/changelog | 7 +++
 debian/control   | 1 -
 2 files changed, 7 insertions(+), 1 deletion(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/libdecentxml-java.git

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


[libdecentxml-java] 01/01: Removed the unused build dependency on libmaven-install-plugin-java

2017-09-07 Thread Emmanuel Bourg
This is an automated email from the git hooks/post-receive script.

ebourg-guest pushed a commit to branch master
in repository libdecentxml-java.

commit 9eabe21679f87b86566b4b00d6e003c9006ccbb9
Author: Emmanuel Bourg 
Date:   Thu Sep 7 18:00:49 2017 +0200

Removed the unused build dependency on libmaven-install-plugin-java
---
 debian/changelog | 7 +++
 debian/control   | 1 -
 2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index 53d9a55..ecf1d9f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+libdecentxml-java (1.4-3) UNRELEASED; urgency=medium
+
+  * Team upload.
+  * Removed the unused build dependency on libmaven-install-plugin-java
+
+ -- Emmanuel Bourg   Thu, 07 Sep 2017 17:55:51 +0200
+
 libdecentxml-java (1.4-2) unstable; urgency=medium
 
   * Team upload.
diff --git a/debian/control b/debian/control
index c5776a7..60c2104 100644
--- a/debian/control
+++ b/debian/control
@@ -6,7 +6,6 @@ Uploaders: Jakub Adam 
 Build-Depends: debhelper (>= 9),
default-jdk,
junit4,
-   libmaven-install-plugin-java,
libmaven-javadoc-plugin-java,
maven-debian-helper (>> 1.6.1)
 Standards-Version: 3.9.6

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/libdecentxml-java.git

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


[libxmlrpc3-java] 01/01: Removed the unused build dependency on libmaven-install-plugin-java

2017-09-07 Thread Emmanuel Bourg
This is an automated email from the git hooks/post-receive script.

ebourg-guest pushed a commit to branch master
in repository libxmlrpc3-java.

commit b64199a1b302c527867eee90bafe8b08b92a6062
Author: Emmanuel Bourg 
Date:   Thu Sep 7 17:44:05 2017 +0200

Removed the unused build dependency on libmaven-install-plugin-java
---
 debian/changelog | 7 +++
 debian/control   | 1 -
 2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index 4fe3ff0..cbbd420 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+libxmlrpc3-java (3.1.3-9) UNRELEASED; urgency=medium
+
+  * Team upload.
+  * Removed the unused build dependency on libmaven-install-plugin-java
+
+ -- Emmanuel Bourg   Thu, 07 Sep 2017 17:41:39 +0200
+
 libxmlrpc3-java (3.1.3-8) unstable; urgency=medium
 
   * Transition to the Servlet API 3.1 (Closes: #801038)
diff --git a/debian/control b/debian/control
index 71f4bfb..c702b29 100644
--- a/debian/control
+++ b/debian/control
@@ -13,7 +13,6 @@ Build-Depends: debhelper (>= 9),
junit,
libcommons-httpclient-java,
libcommons-logging-java,
-   libmaven-install-plugin-java,
libmaven-javadoc-plugin-java,
libservlet3.1-java,
libws-commons-util-java,

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/libxmlrpc3-java.git

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


[libxmlrpc3-java] branch master updated (8ebbede -> b64199a)

2017-09-07 Thread Emmanuel Bourg
This is an automated email from the git hooks/post-receive script.

ebourg-guest pushed a change to branch master
in repository libxmlrpc3-java.

  from  8ebbede   Upload to unstable
   new  b64199a   Removed the unused build dependency on 
libmaven-install-plugin-java

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 debian/changelog | 7 +++
 debian/control   | 1 -
 2 files changed, 7 insertions(+), 1 deletion(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/libxmlrpc3-java.git

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


[pkg-java] r19275 - trunk/commons-jci/debian

2017-09-07 Thread Emmanuel Bourg
Author: ebourg-guest
Date: 2017-09-07 15:35:46 + (Thu, 07 Sep 2017)
New Revision: 19275

Modified:
   trunk/commons-jci/debian/changelog
   trunk/commons-jci/debian/control
Log:
Removed the unused build dependency on libmaven-install-plugin-java



Modified: trunk/commons-jci/debian/changelog
===
--- trunk/commons-jci/debian/changelog  2017-09-05 13:08:00 UTC (rev 19274)
+++ trunk/commons-jci/debian/changelog  2017-09-07 15:35:46 UTC (rev 19275)
@@ -1,3 +1,10 @@
+commons-jci (1.1-5) UNRELEASED; urgency=medium
+
+  * Team upload.
+  * Removed the unused build dependency on libmaven-install-plugin-java
+
+ -- Emmanuel Bourg   Thu, 07 Sep 2017 17:29:06 +0200
+
 commons-jci (1.1-4) unstable; urgency=medium
 
   * Team upload.

Modified: trunk/commons-jci/debian/control
===
--- trunk/commons-jci/debian/control2017-09-05 13:08:00 UTC (rev 19274)
+++ trunk/commons-jci/debian/control2017-09-07 15:35:46 UTC (rev 19275)
@@ -15,7 +15,6 @@
  libecj-java,
  libjanino-java (>= 2.6.0),
  libmaven-antrun-plugin-java,
- libmaven-install-plugin-java,
  libmaven-javadoc-plugin-java,
  librhino-java
 Standards-Version: 3.9.8


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


[openjpa] branch master updated (ee587d2 -> ee7be08)

2017-09-07 Thread Emmanuel Bourg
This is an automated email from the git hooks/post-receive script.

ebourg-guest pushed a change to branch master
in repository openjpa.

  from  ee587d2   Add missing bug number
   new  01b3bb2   Removed the build dependency on 
libmaven-install-plugin-java
   new  ee7be08   Ignore the maven-enforcer-plugin

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 debian/changelog | 1 +
 debian/control   | 2 --
 debian/maven.ignoreRules | 1 +
 debian/rules | 3 ---
 4 files changed, 2 insertions(+), 5 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/openjpa.git

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


[openjpa] 01/02: Removed the build dependency on libmaven-install-plugin-java

2017-09-07 Thread Emmanuel Bourg
This is an automated email from the git hooks/post-receive script.

ebourg-guest pushed a commit to branch master
in repository openjpa.

commit 01b3bb230865eb1eb04ce71618cc9bc238f0d260
Author: Emmanuel Bourg 
Date:   Thu Sep 7 17:06:22 2017 +0200

Removed the build dependency on libmaven-install-plugin-java
---
 debian/changelog | 1 +
 debian/control   | 1 -
 debian/rules | 3 ---
 3 files changed, 1 insertion(+), 4 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index a0f8800..3abf9cf 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -4,6 +4,7 @@ openjpa (2.4.2-2) UNRELEASED; urgency=medium
   * Remove myself from uploaders list. (Closes: #871881)
   * Wrap and sort dependencies lists.
   * Update copyright info.
+  * Removed the build dependency on libmaven-install-plugin-java
 
  -- Miguel Landaeta   Wed, 09 Aug 2017 21:24:25 +0100
 
diff --git a/debian/control b/debian/control
index d3fb9bb..4d47fc4 100644
--- a/debian/control
+++ b/debian/control
@@ -32,7 +32,6 @@ Build-Depends: ant,
libmaven-bundle-plugin-java,
libmaven-dependency-plugin-java,
libmaven-enforcer-plugin-java,
-   libmaven-install-plugin-java,
libmaven-javadoc-plugin-java,
libmaven-shade-plugin-java,
libpostgresql-jdbc-java,
diff --git a/debian/rules b/debian/rules
index d034367..5a6351f 100755
--- a/debian/rules
+++ b/debian/rules
@@ -3,8 +3,5 @@
 %:
dh $@
 
-override_dh_auto_build:
-   dh_auto_build -- install
-
 get-orig-source:
uscan --download-current-version --force-download --rename

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/openjpa.git

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


[openjpa] 02/02: Ignore the maven-enforcer-plugin

2017-09-07 Thread Emmanuel Bourg
This is an automated email from the git hooks/post-receive script.

ebourg-guest pushed a commit to branch master
in repository openjpa.

commit ee7be084d999bad410716a5074a381435ac9b7bf
Author: Emmanuel Bourg 
Date:   Thu Sep 7 17:06:43 2017 +0200

Ignore the maven-enforcer-plugin
---
 debian/control   | 1 -
 debian/maven.ignoreRules | 1 +
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/control b/debian/control
index 4d47fc4..dd22322 100644
--- a/debian/control
+++ b/debian/control
@@ -30,7 +30,6 @@ Build-Depends: ant,
liblog4j1.2-java,
libmaven-antrun-plugin-java,
libmaven-bundle-plugin-java,
-   libmaven-dependency-plugin-java,
libmaven-enforcer-plugin-java,
libmaven-javadoc-plugin-java,
libmaven-shade-plugin-java,
diff --git a/debian/maven.ignoreRules b/debian/maven.ignoreRules
index 8c6543f..c4710ac 100644
--- a/debian/maven.ignoreRules
+++ b/debian/maven.ignoreRules
@@ -8,4 +8,5 @@ org.codehaus.mojo ianal-maven-plugin * * * *
 org.codehaus.mojo buildnumber-maven-plugin * * * *
 org.apache.maven.plugins maven-checkstyle-plugin * * * *
 org.apache.rat apache-rat-plugin * * * *
+org.apache.maven.plugins maven-enforcer-plugin * * * *
 org.apache.maven.plugins maven-source-plugin * * * *

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/openjpa.git

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


[javacc] 02/03: Standards-Version updated to 4.1.0

2017-09-07 Thread Emmanuel Bourg
This is an automated email from the git hooks/post-receive script.

ebourg-guest pushed a commit to branch master
in repository javacc.

commit f0e2e9234f3260843972517d308f68896065f625
Author: Emmanuel Bourg 
Date:   Thu Sep 7 17:13:06 2017 +0200

Standards-Version updated to 4.1.0
---
 debian/changelog | 1 +
 debian/control   | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index e3c058f..f338e03 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,7 @@
 javacc (5.0-8) UNRELEASED; urgency=medium
 
   * Added the missing runtime dependency on junit
+  * Standards-Version updated to 4.1.0
 
  -- Emmanuel Bourg   Thu, 07 Sep 2017 17:12:29 +0200
 
diff --git a/debian/control b/debian/control
index 80494be..2b84630 100644
--- a/debian/control
+++ b/debian/control
@@ -12,7 +12,7 @@ Build-Depends:
  junit,
  libxalan2-java,
  maven-repo-helper
-Standards-Version: 3.9.8
+Standards-Version: 4.1.0
 Vcs-Git: https://anonscm.debian.org/git/pkg-java/javacc.git
 Vcs-Browser: https://anonscm.debian.org/cgit/pkg-java/javacc.git
 Homepage: http://javacc.org

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/javacc.git

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


[javacc] 01/03: Added the missing runtime dependency on junit

2017-09-07 Thread Emmanuel Bourg
This is an automated email from the git hooks/post-receive script.

ebourg-guest pushed a commit to branch master
in repository javacc.

commit 51dff7ec68c1af09b18736839f60b86a8eae8758
Author: Emmanuel Bourg 
Date:   Thu Sep 7 17:12:53 2017 +0200

Added the missing runtime dependency on junit
---
 debian/changelog | 6 ++
 debian/control   | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index 3f3657f..e3c058f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+javacc (5.0-8) UNRELEASED; urgency=medium
+
+  * Added the missing runtime dependency on junit
+
+ -- Emmanuel Bourg   Thu, 07 Sep 2017 17:12:29 +0200
+
 javacc (5.0-7) unstable; urgency=medium
 
   * Build with the DH sequencer instead of CDBS
diff --git a/debian/control b/debian/control
index f8881c0..80494be 100644
--- a/debian/control
+++ b/debian/control
@@ -19,7 +19,7 @@ Homepage: http://javacc.org
 
 Package: javacc
 Architecture: all
-Depends: default-jre-headless (>= 2:1.5) | java5-runtime-headless, 
${misc:Depends}
+Depends: default-jre-headless (>= 2:1.5) | java5-runtime-headless, junit, 
${misc:Depends}
 Suggests: javacc-doc
 Description: Parser generator for use with Java
  Java Compiler-Compiler (JavaCC) is (according to sun)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/javacc.git

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


[javacc] 03/03: Upload to unstable

2017-09-07 Thread Emmanuel Bourg
This is an automated email from the git hooks/post-receive script.

ebourg-guest pushed a commit to branch master
in repository javacc.

commit 12a668ce03a091caf86c95a8fd07112d6ea87cca
Author: Emmanuel Bourg 
Date:   Thu Sep 7 17:13:24 2017 +0200

Upload to unstable
---
 debian/changelog | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index f338e03..6a40f52 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,9 +1,9 @@
-javacc (5.0-8) UNRELEASED; urgency=medium
+javacc (5.0-8) unstable; urgency=medium
 
   * Added the missing runtime dependency on junit
   * Standards-Version updated to 4.1.0
 
- -- Emmanuel Bourg   Thu, 07 Sep 2017 17:12:29 +0200
+ -- Emmanuel Bourg   Thu, 07 Sep 2017 17:13:18 +0200
 
 javacc (5.0-7) unstable; urgency=medium
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/javacc.git

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


[javacc] branch master updated (917c354 -> 12a668c)

2017-09-07 Thread Emmanuel Bourg
This is an automated email from the git hooks/post-receive script.

ebourg-guest pushed a change to branch master
in repository javacc.

  from  917c354   Upload to unstable
   new  51dff7e   Added the missing runtime dependency on junit
   new  f0e2e92   Standards-Version updated to 4.1.0
   new  12a668c   Upload to unstable

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


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

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/javacc.git

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


[apache-mime4j] 01/01: Removed the build dependency on libmaven-install-plugin-java

2017-09-07 Thread Emmanuel Bourg
This is an automated email from the git hooks/post-receive script.

ebourg-guest pushed a commit to branch master
in repository apache-mime4j.

commit edc36b1bdaa072b12915666b9631511cbe99a45b
Author: Emmanuel Bourg 
Date:   Thu Sep 7 16:48:34 2017 +0200

Removed the build dependency on libmaven-install-plugin-java
---
 debian/changelog | 7 +++
 debian/control   | 1 -
 debian/rules | 3 ---
 3 files changed, 7 insertions(+), 4 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index e786624..000d844 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+apache-mime4j (0.7.2-5) UNRELEASED; urgency=medium
+
+  * Team upload.
+  * Removed the build dependency on libmaven-install-plugin-java
+
+ -- Emmanuel Bourg   Thu, 07 Sep 2017 16:48:06 +0200
+
 apache-mime4j (0.7.2-4) unstable; urgency=medium
 
   * Build with maven-debian-helper (should improve the reproducibility)
diff --git a/debian/control b/debian/control
index 5e18cf7..913ee9c 100644
--- a/debian/control
+++ b/debian/control
@@ -9,7 +9,6 @@ Build-Depends-Indep: junit,
  libjavacc-maven-plugin-java,
  liblog4j1.2-java,
  libmaven-bundle-plugin-java,
- libmaven-install-plugin-java,
  libmaven-javadoc-plugin-java
 Standards-Version: 3.9.6
 Vcs-Git: git://anonscm.debian.org/pkg-java/apache-mime4j.git
diff --git a/debian/rules b/debian/rules
index 3702734..9950bf7 100755
--- a/debian/rules
+++ b/debian/rules
@@ -6,8 +6,5 @@
 override_dh_installchangelogs:
dh_installchangelogs RELEASE_NOTES.txt
 
-override_dh_auto_build:
-   dh_auto_build -- install javadoc:aggregate
-
 get-orig-source:
uscan --force-download --download-current-version --repack --rename

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/apache-mime4j.git

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


[apache-mime4j] branch master updated (326edeb -> edc36b1)

2017-09-07 Thread Emmanuel Bourg
This is an automated email from the git hooks/post-receive script.

ebourg-guest pushed a change to branch master
in repository apache-mime4j.

  from  326edeb   Upload to unstable
   new  edc36b1   Removed the build dependency on 
libmaven-install-plugin-java

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 debian/changelog | 7 +++
 debian/control   | 1 -
 debian/rules | 3 ---
 3 files changed, 7 insertions(+), 4 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/apache-mime4j.git

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


[jackson-core] branch master updated (5f42115 -> 71f3811)

2017-09-07 Thread Emmanuel Bourg
This is an automated email from the git hooks/post-receive script.

ebourg-guest pushed a change to branch master
in repository jackson-core.

  from  5f42115   New upstream release (2.8.6)
   new  71f3811   Removed the unused build dependency on 
libmaven-install-plugin-java

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 debian/changelog | 7 +++
 debian/control   | 1 -
 2 files changed, 7 insertions(+), 1 deletion(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/jackson-core.git

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


[jackson-core] 01/01: Removed the unused build dependency on libmaven-install-plugin-java

2017-09-07 Thread Emmanuel Bourg
This is an automated email from the git hooks/post-receive script.

ebourg-guest pushed a commit to branch master
in repository jackson-core.

commit 71f3811b6f4fb1adde35ca5015c83cab5127e489
Author: Emmanuel Bourg 
Date:   Thu Sep 7 16:40:32 2017 +0200

Removed the unused build dependency on libmaven-install-plugin-java
---
 debian/changelog | 7 +++
 debian/control   | 1 -
 2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index 53d9996..cd01b28 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+jackson-core (2.8.6-2) UNRELEASED; urgency=medium
+
+  * Team upload.
+  * Removed the unused build dependency on libmaven-install-plugin-java
+
+ -- Emmanuel Bourg   Thu, 07 Sep 2017 16:39:06 +0200
+
 jackson-core (2.8.6-1) unstable; urgency=medium
 
   * Team upload.
diff --git a/debian/control b/debian/control
index 72a83a4..062b68f 100644
--- a/debian/control
+++ b/debian/control
@@ -9,7 +9,6 @@ Build-Depends:
  debhelper (>= 10),
  default-jdk,
  maven-debian-helper (>= 1.6.5),
- libmaven-install-plugin-java,
  xmlstarlet
 Build-Depends-Indep:
  default-jdk-doc,

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/jackson-core.git

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


[sisu-ioc] 01/01: Removed the unused build dependency on libmaven-install-plugin-java

2017-09-07 Thread Emmanuel Bourg
This is an automated email from the git hooks/post-receive script.

ebourg-guest pushed a commit to branch master
in repository sisu-ioc.

commit 10d5aac1d8ce8688d4cfe7619498338d32247c37
Author: Emmanuel Bourg 
Date:   Thu Sep 7 16:38:10 2017 +0200

Removed the unused build dependency on libmaven-install-plugin-java
---
 debian/changelog | 7 +++
 debian/control   | 1 -
 2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index 3b17ea5..6aac854 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+sisu-ioc (2.3.0-11) UNRELEASED; urgency=medium
+
+  * Team upload.
+  * Removed the unused build dependency on libmaven-install-plugin-java
+
+ -- Emmanuel Bourg   Thu, 07 Sep 2017 16:36:54 +0200
+
 sisu-ioc (2.3.0-10) unstable; urgency=medium
 
   * Team upload.
diff --git a/debian/control b/debian/control
index 982f9c4..7a75f43 100644
--- a/debian/control
+++ b/debian/control
@@ -12,7 +12,6 @@ Build-Depends-Indep: junit4,
  liblogback-java,
  libmaven-bundle-plugin-java,
  libmaven-dependency-plugin-java,
- libmaven-install-plugin-java,
  libplexus-classworlds2-java,
  libplexus-component-annotations-java,
  libplexus-utils2-java,

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/sisu-ioc.git

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


[sisu-ioc] branch master updated (9b7cd3b -> 10d5aac)

2017-09-07 Thread Emmanuel Bourg
This is an automated email from the git hooks/post-receive script.

ebourg-guest pushed a change to branch master
in repository sisu-ioc.

  from  9b7cd3b   Upload to unstable
   new  10d5aac   Removed the unused build dependency on 
libmaven-install-plugin-java

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 debian/changelog | 7 +++
 debian/control   | 1 -
 2 files changed, 7 insertions(+), 1 deletion(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/sisu-ioc.git

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


[localizer] branch master updated (1f0677e -> 31867e7)

2017-09-07 Thread Emmanuel Bourg
This is an automated email from the git hooks/post-receive script.

ebourg-guest pushed a change to branch master
in repository localizer.

  from  1f0677e   Upload to unstable
   new  31867e7   Removed the unused build dependency on 
libmaven-install-plugin-java

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 debian/changelog | 7 +++
 debian/control   | 1 -
 2 files changed, 7 insertions(+), 1 deletion(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/localizer.git

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


[localizer] 01/01: Removed the unused build dependency on libmaven-install-plugin-java

2017-09-07 Thread Emmanuel Bourg
This is an automated email from the git hooks/post-receive script.

ebourg-guest pushed a commit to branch master
in repository localizer.

commit 31867e7351d38ee53f1f7116f1142cc36866b7d0
Author: Emmanuel Bourg 
Date:   Thu Sep 7 16:36:22 2017 +0200

Removed the unused build dependency on libmaven-install-plugin-java
---
 debian/changelog | 7 +++
 debian/control   | 1 -
 2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index 87f91a7..f211d9c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+localizer (1.13-4) UNRELEASED; urgency=medium
+
+  * Team upload.
+  * Removed the unused build dependency on libmaven-install-plugin-java
+
+ -- Emmanuel Bourg   Thu, 07 Sep 2017 16:32:06 +0200
+
 localizer (1.13-3) unstable; urgency=medium
 
   * Team upload.
diff --git a/debian/control b/debian/control
index e8bf4c9..b0b8c9a 100644
--- a/debian/control
+++ b/debian/control
@@ -12,7 +12,6 @@ Build-Depends-Indep:
  libcodemodel-java,
  libmaven-archiver-java,
  libmaven-compiler-plugin-java (>= 2.0.2),
- libmaven-install-plugin-java,
  libmaven-javadoc-plugin-java,
  libmaven3-core-java,
  libplexus-utils-java,

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/localizer.git

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


[bridge-method-injector] 01/01: Removed the unused build dependency on libmaven-install-plugin-java

2017-09-07 Thread Emmanuel Bourg
This is an automated email from the git hooks/post-receive script.

ebourg-guest pushed a commit to branch master
in repository bridge-method-injector.

commit 32b838b45e8065e2448cefc864f58052facdc90a
Author: Emmanuel Bourg 
Date:   Thu Sep 7 16:31:32 2017 +0200

Removed the unused build dependency on libmaven-install-plugin-java
---
 debian/changelog | 7 +++
 debian/control   | 1 -
 2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index 285b665..9b22002 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+bridge-method-injector (1.17-2) UNRELEASED; urgency=medium
+
+  * Team upload.
+  * Removed the unused build dependency on libmaven-install-plugin-java
+
+ -- Emmanuel Bourg   Thu, 07 Sep 2017 16:22:22 +0200
+
 bridge-method-injector (1.17-1) unstable; urgency=medium
 
   * Team upload.
diff --git a/debian/control b/debian/control
index 868b1ab..a6c9338 100644
--- a/debian/control
+++ b/debian/control
@@ -10,7 +10,6 @@ Build-Depends-Indep:
  libannotation-indexer-java (>= 1.3),
  libasm-java (>= 5.0),
  libmaven-antrun-plugin-java,
- libmaven-install-plugin-java,
  libmaven-javadoc-plugin-java,
  libmaven-plugin-tools-java,
  libmaven3-core-java

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/bridge-method-injector.git

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


[bridge-method-injector] branch master updated (a0a546e -> 32b838b)

2017-09-07 Thread Emmanuel Bourg
This is an automated email from the git hooks/post-receive script.

ebourg-guest pushed a change to branch master
in repository bridge-method-injector.

  from  a0a546e   Upload to unstable
   new  32b838b   Removed the unused build dependency on 
libmaven-install-plugin-java

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 debian/changelog | 7 +++
 debian/control   | 1 -
 2 files changed, 7 insertions(+), 1 deletion(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/bridge-method-injector.git

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


[plexus-compiler] branch master updated (a6da071 -> 75a898f)

2017-09-07 Thread Emmanuel Bourg
This is an automated email from the git hooks/post-receive script.

ebourg-guest pushed a change to branch master
in repository plexus-compiler.

  from  a6da071   Upload to unstable
   new  75a898f   Removed the unused build dependency on 
libmaven-install-plugin-java

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 debian/changelog | 7 +++
 debian/control   | 3 +--
 2 files changed, 8 insertions(+), 2 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/plexus-compiler.git

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


[plexus-compiler] 01/01: Removed the unused build dependency on libmaven-install-plugin-java

2017-09-07 Thread Emmanuel Bourg
This is an automated email from the git hooks/post-receive script.

ebourg-guest pushed a commit to branch master
in repository plexus-compiler.

commit 75a898fd6eaeb33d645820ea065d7d118d1e712a
Author: Emmanuel Bourg 
Date:   Thu Sep 7 16:21:27 2017 +0200

Removed the unused build dependency on libmaven-install-plugin-java
---
 debian/changelog | 7 +++
 debian/control   | 3 +--
 2 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 3d33d89..bc130f3 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+plexus-compiler (2.8.2-4) UNRELEASED; urgency=medium
+
+  * Team upload.
+  * Removed the unused build dependency on libmaven-install-plugin-java
+
+ -- Emmanuel Bourg   Thu, 07 Sep 2017 16:18:55 +0200
+
 plexus-compiler (2.8.2-3) unstable; urgency=medium
 
   * Team upload.
diff --git a/debian/control b/debian/control
index d9ca1b6..ee96bc2 100644
--- a/debian/control
+++ b/debian/control
@@ -14,8 +14,7 @@ Build-Depends-Indep: default-jdk-doc,
  libplexus-component-metadata-java,
  libplexus-container-default1.5-java,
  libplexus-utils2-java,
- libplexus-utils2-java-doc,
- libmaven-install-plugin-java
+ libplexus-utils2-java-doc
 Standards-Version: 4.1.0
 Vcs-Git: https://anonscm.debian.org/git/pkg-java/plexus-compiler.git
 Vcs-Browser: https://anonscm.debian.org/cgit/pkg-java/plexus-compiler.git

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/plexus-compiler.git

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


[maven-shared-incremental] 01/01: Removed the unused build dependency on libmaven-install-plugin-java

2017-09-07 Thread Emmanuel Bourg
This is an automated email from the git hooks/post-receive script.

ebourg-guest pushed a commit to branch master
in repository maven-shared-incremental.

commit 11269ccf55b8a43457a1b367cb3e65b30f78941f
Author: Emmanuel Bourg 
Date:   Thu Sep 7 16:17:16 2017 +0200

Removed the unused build dependency on libmaven-install-plugin-java
---
 debian/changelog | 1 +
 debian/control   | 1 -
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index e9d6fee..e744f1b 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -4,6 +4,7 @@ maven-shared-incremental (1.1-4) UNRELEASED; urgency=medium
   * Remove myself from uploaders. (Closes: #871877)
   * Wrap and sort dependencies lists.
   * Update copyright info.
+  * Removed the unused build dependency on libmaven-install-plugin-java
 
  -- Miguel Landaeta   Wed, 09 Aug 2017 19:54:09 +0100
 
diff --git a/debian/control b/debian/control
index ede41f3..6321087 100644
--- a/debian/control
+++ b/debian/control
@@ -8,7 +8,6 @@ Build-Depends:
  debhelper (>= 10),
  default-jdk,
  javahelper,
- libmaven-install-plugin-java,
  libmaven-javadoc-plugin-java,
  libmaven-shared-utils-java,
  libmaven3-core-java,

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/maven-shared-incremental.git

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


[maven-shared-incremental] branch master updated (03f7fa0 -> 11269cc)

2017-09-07 Thread Emmanuel Bourg
This is an automated email from the git hooks/post-receive script.

ebourg-guest pushed a change to branch master
in repository maven-shared-incremental.

  from  03f7fa0   Add missing bug number
   new  11269cc   Removed the unused build dependency on 
libmaven-install-plugin-java

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 debian/changelog | 1 +
 debian/control   | 1 -
 2 files changed, 1 insertion(+), 1 deletion(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/maven-shared-incremental.git

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


[jboss-logging-tools] branch master updated (7788714 -> 7688d64)

2017-09-07 Thread Emmanuel Bourg
This is an automated email from the git hooks/post-receive script.

ebourg-guest pushed a change to branch master
in repository jboss-logging-tools.

  from  7788714   Import Debian changes 2.1.0-1
   new  7688d64   Removed the unused build dependency on 
libmaven-install-plugin-java

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 debian/changelog | 7 +++
 debian/control   | 1 -
 2 files changed, 7 insertions(+), 1 deletion(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/jboss-logging-tools.git

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


[jboss-logging-tools] 01/01: Removed the unused build dependency on libmaven-install-plugin-java

2017-09-07 Thread Emmanuel Bourg
This is an automated email from the git hooks/post-receive script.

ebourg-guest pushed a commit to branch master
in repository jboss-logging-tools.

commit 7688d645a7b4180bec6447dfd4abaddf604f3417
Author: Emmanuel Bourg 
Date:   Thu Sep 7 16:12:26 2017 +0200

Removed the unused build dependency on libmaven-install-plugin-java
---
 debian/changelog | 7 +++
 debian/control   | 1 -
 2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index 2be4420..5191c7c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+jboss-logging-tools (2.1.0-2) UNRELEASED; urgency=medium
+
+  * Team upload.
+  * Removed the unused build dependency on libmaven-install-plugin-java
+
+ -- Emmanuel Bourg   Thu, 07 Sep 2017 16:10:07 +0200
+
 jboss-logging-tools (2.1.0-1) unstable; urgency=medium
 
   * New upstream version 2.1.0.
diff --git a/debian/control b/debian/control
index d4067e1..fabdf00 100644
--- a/debian/control
+++ b/debian/control
@@ -12,7 +12,6 @@ Build-Depends:
  libjboss-jdeparser2-java,
  libjboss-logging-java,
  libjboss-logmanager-java,
- libmaven-install-plugin-java,
  libmaven-javadoc-plugin-java,
  maven-debian-helper (>= 1.5),
  testng

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/jboss-logging-tools.git

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


[access-modifier-checker] branch master updated (fc6ae6e -> ef3e4c5)

2017-09-07 Thread Emmanuel Bourg
This is an automated email from the git hooks/post-receive script.

ebourg-guest pushed a change to branch master
in repository access-modifier-checker.

  from  fc6ae6e   Upload to unstable
   new  ef3e4c5   Removed the unused build dependency on 
libmaven-install-plugin-java

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 debian/changelog | 7 +++
 debian/control   | 1 -
 2 files changed, 7 insertions(+), 1 deletion(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/access-modifier-checker.git

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


[access-modifier-checker] 01/01: Removed the unused build dependency on libmaven-install-plugin-java

2017-09-07 Thread Emmanuel Bourg
This is an automated email from the git hooks/post-receive script.

ebourg-guest pushed a commit to branch master
in repository access-modifier-checker.

commit ef3e4c5f2e686bef5ce919a1e26f8137e9d884ad
Author: Emmanuel Bourg 
Date:   Thu Sep 7 16:09:26 2017 +0200

Removed the unused build dependency on libmaven-install-plugin-java
---
 debian/changelog | 7 +++
 debian/control   | 1 -
 2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index bee1f89..b7d97cc 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+access-modifier-checker (1.12-2) UNRELEASED; urgency=medium
+
+  * Team upload.
+  * Removed the unused build dependency on libmaven-install-plugin-java
+
+ -- Emmanuel Bourg   Thu, 07 Sep 2017 16:06:57 +0200
+
 access-modifier-checker (1.12-1) unstable; urgency=medium
 
   * Team upload.
diff --git a/debian/control b/debian/control
index 44fd56b..047a4d4 100644
--- a/debian/control
+++ b/debian/control
@@ -10,7 +10,6 @@ Build-Depends-Indep:
  libannotation-indexer-java (>= 1.3),
  libannotation-indexer-java-doc,
  libasm-java (>= 5.0),
- libmaven-install-plugin-java,
  libmaven-javadoc-plugin-java,
  libmaven-scm-java,
  libmaven3-core-java,

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/access-modifier-checker.git

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


[animal-sniffer] 01/01: Removed the unused build dependency on libmaven-install-plugin-java

2017-09-07 Thread Emmanuel Bourg
This is an automated email from the git hooks/post-receive script.

ebourg-guest pushed a commit to branch master
in repository animal-sniffer.

commit 707652311bb686cf582cafa5bd051d707904d3ce
Author: Emmanuel Bourg 
Date:   Thu Sep 7 16:06:17 2017 +0200

Removed the unused build dependency on libmaven-install-plugin-java
---
 debian/changelog | 7 +++
 debian/control   | 1 -
 2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index f2b30fa..c5deabf 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+animal-sniffer (1.15-3) UNRELEASED; urgency=medium
+
+  * Team upload.
+  * Removed the unused build dependency on libmaven-install-plugin-java
+
+ -- Emmanuel Bourg   Thu, 07 Sep 2017 16:02:16 +0200
+
 animal-sniffer (1.15-2) unstable; urgency=medium
 
   * Team upload.
diff --git a/debian/control b/debian/control
index 2c56518..d6aade2 100644
--- a/debian/control
+++ b/debian/control
@@ -15,7 +15,6 @@ Build-Depends-Indep:
  libbuild-helper-maven-plugin-java,
  libmaven-common-artifact-filters-java,
  libmaven-enforcer-plugin-java,
- libmaven-install-plugin-java,
  libmaven-invoker-plugin-java,
  libmaven-javadoc-plugin-java,
  libmaven-plugin-tools-java,

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/animal-sniffer.git

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


[animal-sniffer] branch master updated (6a5e485 -> 7076523)

2017-09-07 Thread Emmanuel Bourg
This is an automated email from the git hooks/post-receive script.

ebourg-guest pushed a change to branch master
in repository animal-sniffer.

  from  6a5e485   Upload to unstable
   new  7076523   Removed the unused build dependency on 
libmaven-install-plugin-java

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 debian/changelog | 7 +++
 debian/control   | 1 -
 2 files changed, 7 insertions(+), 1 deletion(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/animal-sniffer.git

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


[gmavenplus] 01/01: Removed the unused build dependency on libmaven-install-plugin-java

2017-09-07 Thread Emmanuel Bourg
This is an automated email from the git hooks/post-receive script.

ebourg-guest pushed a commit to branch master
in repository gmavenplus.

commit f71f6797c4350bc29f35549e49288e32baca50e4
Author: Emmanuel Bourg 
Date:   Thu Sep 7 16:01:06 2017 +0200

Removed the unused build dependency on libmaven-install-plugin-java
---
 debian/changelog | 6 ++
 debian/control   | 1 -
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index 3857a4c..0b87064 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+gmavenplus (1.5-3) UNRELEASED; urgency=medium
+
+  * Removed the unused build dependency on libmaven-install-plugin-java
+
+ -- Emmanuel Bourg   Thu, 07 Sep 2017 16:00:19 +0200
+
 gmavenplus (1.5-2) unstable; urgency=medium
 
   * Depend on libmaven3-core-java instead of libmaven2-core-java
diff --git a/debian/control b/debian/control
index 6f6e503..32c7ef8 100644
--- a/debian/control
+++ b/debian/control
@@ -15,7 +15,6 @@ Build-Depends:
  libjline2-java,
  libmaven-dependency-plugin-java,
  libmaven-file-management-java,
- libmaven-install-plugin-java,
  libmaven-invoker-plugin-java,
  libmaven-plugin-tools-java,
  libmaven-scm-java,

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/gmavenplus.git

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


[gmavenplus] branch master updated (87989ef -> f71f679)

2017-09-07 Thread Emmanuel Bourg
This is an automated email from the git hooks/post-receive script.

ebourg-guest pushed a change to branch master
in repository gmavenplus.

  from  87989ef   Depend on libmaven3-core-java instead of 
libmaven2-core-java
   new  f71f679   Removed the unused build dependency on 
libmaven-install-plugin-java

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 debian/changelog | 6 ++
 debian/control   | 1 -
 2 files changed, 6 insertions(+), 1 deletion(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/gmavenplus.git

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


[libparanamer-java] branch master updated (8404020 -> f3c32e6)

2017-09-07 Thread Emmanuel Bourg
This is an automated email from the git hooks/post-receive script.

ebourg-guest pushed a change to branch master
in repository libparanamer-java.

  from  8404020   Upload to unstable
   new  f3c32e6   Removed the unused build dependency on 
libmaven-install-plugin-java

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 debian/changelog | 7 +++
 debian/control   | 1 -
 2 files changed, 7 insertions(+), 1 deletion(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/libparanamer-java.git

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


[libparanamer-java] 01/01: Removed the unused build dependency on libmaven-install-plugin-java

2017-09-07 Thread Emmanuel Bourg
This is an automated email from the git hooks/post-receive script.

ebourg-guest pushed a commit to branch master
in repository libparanamer-java.

commit f3c32e69d1f0039f497bb5aeccb3de6ce971cc31
Author: Emmanuel Bourg 
Date:   Thu Sep 7 15:57:27 2017 +0200

Removed the unused build dependency on libmaven-install-plugin-java
---
 debian/changelog | 7 +++
 debian/control   | 1 -
 2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index 95164df..39e8f08 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+libparanamer-java (2.8-4) UNRELEASED; urgency=medium
+
+  * Team upload.
+  * Removed the unused build dependency on libmaven-install-plugin-java
+
+ -- Emmanuel Bourg   Thu, 07 Sep 2017 15:57:12 +0200
+
 libparanamer-java (2.8-3) unstable; urgency=medium
 
   * Team upload.
diff --git a/debian/control b/debian/control
index 3572b25..e29d5c6 100644
--- a/debian/control
+++ b/debian/control
@@ -13,7 +13,6 @@ Build-Depends:
  libatinject-jsr330-api-java,
  libmaven-bundle-plugin-java,
  libmaven-dependency-plugin-java,
- libmaven-install-plugin-java,
  libmaven-javadoc-plugin-java,
  libmaven-plugin-tools-java,
  libmockito-java,

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/libparanamer-java.git

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


[maven] annotated tag debian/3.5.0-6 created (now c620af9)

2017-09-07 Thread Emmanuel Bourg
This is an automated email from the git hooks/post-receive script.

ebourg-guest pushed a change to annotated tag debian/3.5.0-6
in repository maven.

at  c620af9   (tag)
   tagging  335b7a32ad4841097d9328927e0c6f80ed4bbf28 (commit)
  replaces  debian/3.5.0-5
 tagged by  Emmanuel Bourg
on  Thu Sep 7 11:11:04 2017 +0200

- Log -
maven Debian release 3.5.0-6
-BEGIN PGP SIGNATURE-

iQJGBAABCAAwFiEEuM5N4hCA3PkD4WxA9RPEGeS50KwFAlmxDSgSHGVib3VyZ0Bh
cGFjaGUub3JnAAoJEPUTxBnkudCsXasP/1+NW5g2DV0RF0Gpzj5ub+LbQo0ZBVBy
9NyqIdg/ks5UTQTJyVM+HcLxX+72Lh3UwK0bFAJqLYJaNRHZiEUR+1s6FzoyGU17
SglqH4vw7zB3MDSbPMMNr7rPjsLqzDcqS0e41LTNW/4rJhOwKZBlKU4ykCx37HMN
jn9dvBV57SDIw6AdB97uIeBq2Q7GXhd//ubNvgWaaJ3E1UCKLfBdC9emNOZ4jwkI
b5cJMdJqQS93cfNBgbQADyosUQVvmy0qqX+7guiBWKyb515jnH6F5Nbi6TEt2Rrt
MG9Bv7ulSKm9bNSfADrb+dowX7Xz+wm0Ox7Uluu6v7gAVyYkVDJD36kJp4Oe9e//
x0jgyemUR88k9wbSMVDgHSr+R7y/MMfiSW01k6djeLkhfyjtvfFGrZMOY8Uqlik9
Q3Bnb/We4425f1SD5nkVIV0T03woa+Kat9USAgomWp+yj7SUiXnXxgqD96cyTb2r
xUyqD3Ss5QrKT+aX3iyyFDuw7WWm+x/BkyCzra2Uw955tXyS1uQwM/JlDGOxtIgv
VtGLUO9j9UqK6uVk8bLHRkxh0ZOjuj/IeujUMqJ840i0tSzjaDPchcWzrpzValLb
0yUsLHYHwv7FDQB6MyKZ4XtIBbfvoV9jzBw7V1twZ6wbMScYGc2PqxmpLPy64sbe
u3f5kJBgIFbG
=HcYQ
-END PGP SIGNATURE-

Emmanuel Bourg (8):
  Depend on maven-parent 27 and removed modello-configuration.patch
  Remove dependency-reduced-pom.xml when cleaning
  Removed the unused dependency on libeclipse-aether-java
  Fixed the Maven rules for maven-parent
  Removed the patch changing the default version of the core plugins
  Fixed a typo in the patch header
  Standards-Version updated to 4.1.0
  Upload to unstable

---

No new revisions were added by this update.

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/maven.git

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


[maven] 04/04: Upload to unstable

2017-09-07 Thread Emmanuel Bourg
This is an automated email from the git hooks/post-receive script.

ebourg-guest pushed a commit to branch master
in repository maven.

commit 335b7a32ad4841097d9328927e0c6f80ed4bbf28
Author: Emmanuel Bourg 
Date:   Thu Sep 7 08:52:01 2017 +0200

Upload to unstable
---
 debian/changelog | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index c83050e..a520638 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-maven (3.5.0-6) UNRELEASED; urgency=medium
+maven (3.5.0-6) unstable; urgency=medium
 
   * Team upload.
   * Removed the patch changing the default version of the core plugins.
@@ -9,7 +9,7 @@ maven (3.5.0-6) UNRELEASED; urgency=medium
   * Removed the unused dependency on libeclipse-aether-java
   * Standards-Version updated to 4.1.0
 
- -- Emmanuel Bourg   Thu, 20 Jul 2017 17:36:21 +0200
+ -- Emmanuel Bourg   Thu, 07 Sep 2017 08:51:54 +0200
 
 maven (3.5.0-5) unstable; urgency=medium
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/maven.git

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


[maven] 01/04: Removed the patch changing the default version of the core plugins

2017-09-07 Thread Emmanuel Bourg
This is an automated email from the git hooks/post-receive script.

ebourg-guest pushed a commit to branch master
in repository maven.

commit 821e2de38788dc4688d54a88e48abf9dc6b58c77
Author: Emmanuel Bourg 
Date:   Thu Sep 7 01:13:35 2017 +0200

Removed the patch changing the default version of the core plugins
---
 debian/changelog|   4 +
 debian/patches/plugins_version.diff | 193 
 debian/patches/series   |   1 -
 3 files changed, 4 insertions(+), 194 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 168fd00..11978a1 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,10 @@
 maven (3.5.0-6) UNRELEASED; urgency=medium
 
   * Team upload.
+  * Removed the patch changing the default version of the core plugins.
+This ensures that the maven package is on par with the upstream
+distribution. Plugin packages are now responsible for redirecting
+the default version used by Maven to the current one.
   * Depend on maven-parent 27 and removed modello-configuration.patch
   * Removed the unused dependency on libeclipse-aether-java
 
diff --git a/debian/patches/plugins_version.diff 
b/debian/patches/plugins_version.diff
deleted file mode 100644
index 12dc7df..000
--- a/debian/patches/plugins_version.diff
+++ /dev/null
@@ -1,193 +0,0 @@
-Description: Set default plugins versions to match packages in Debian.
- We should find a way to conform to actual upstream standards (maybe
- multiple maven plugins versions)
-Author: Damien Raude-Morvan 
-Last-Update: 2012-01-21
-Forwarded: not-needed
 a/maven-core/src/main/resources/META-INF/plexus/default-bindings.xml
-+++ b/maven-core/src/main/resources/META-INF/plexus/default-bindings.xml
-@@ -41,7 +41,7 @@
- 
- 
-   
--org.apache.maven.plugins:maven-install-plugin:2.4:install
-+org.apache.maven.plugins:maven-install-plugin:2.5.2:install
-   
-   
- org.apache.maven.plugins:maven-deploy-plugin:2.7:deploy
-@@ -70,22 +70,22 @@
- org.apache.maven.plugins:maven-resources-plugin:2.6:resources
-   
-   
--org.apache.maven.plugins:maven-compiler-plugin:3.1:compile
-+org.apache.maven.plugins:maven-compiler-plugin:3.6.1:compile
-   
-   
- 
org.apache.maven.plugins:maven-resources-plugin:2.6:testResources
-   
-   
--org.apache.maven.plugins:maven-compiler-plugin:3.1:testCompile
-+
org.apache.maven.plugins:maven-compiler-plugin:3.6.1:testCompile
-   
-   
--org.apache.maven.plugins:maven-surefire-plugin:2.12.4:test
-+org.apache.maven.plugins:maven-surefire-plugin:2.17:test
-   
-   
- org.apache.maven.plugins:maven-jar-plugin:2.4:jar
-   
-   
--org.apache.maven.plugins:maven-install-plugin:2.4:install
-+org.apache.maven.plugins:maven-install-plugin:2.5.2:install
-   
-   
- org.apache.maven.plugins:maven-deploy-plugin:2.7:deploy
-@@ -114,22 +114,22 @@
- org.apache.maven.plugins:maven-resources-plugin:2.6:resources
-   
-   
--org.apache.maven.plugins:maven-compiler-plugin:3.1:compile
-+org.apache.maven.plugins:maven-compiler-plugin:3.6.1:compile
-   
-   
- 
org.apache.maven.plugins:maven-resources-plugin:2.6:testResources
-   
-   
--org.apache.maven.plugins:maven-compiler-plugin:3.1:testCompile
-+
org.apache.maven.plugins:maven-compiler-plugin:3.6.1:testCompile
-   
-   
--org.apache.maven.plugins:maven-surefire-plugin:2.12.4:test
-+org.apache.maven.plugins:maven-surefire-plugin:2.17:test
-   
-   
- org.apache.maven.plugins:maven-ejb-plugin:2.3:ejb
-   
-   
--org.apache.maven.plugins:maven-install-plugin:2.4:install
-+org.apache.maven.plugins:maven-install-plugin:2.5.2:install
-   
-   
- org.apache.maven.plugins:maven-deploy-plugin:2.7:deploy
-@@ -158,26 +158,26 @@
- org.apache.maven.plugins:maven-resources-plugin:2.6:resources
-   
-   
--org.apache.maven.plugins:maven-compiler-plugin:3.1:compile
-+org.apache.maven.plugins:maven-compiler-plugin:3.6.1:compile
-   
-   
--org.apache.maven.plugins:maven-plugin-plugin:3.2:descriptor
-+

[maven] 02/04: Fixed a typo in the patch header

2017-09-07 Thread Emmanuel Bourg
This is an automated email from the git hooks/post-receive script.

ebourg-guest pushed a commit to branch master
in repository maven.

commit 1e1c5908cd34ce366201e40fc0ef0d946e063578
Author: Emmanuel Bourg 
Date:   Thu Sep 7 01:14:05 2017 +0200

Fixed a typo in the patch header
---
 debian/patches/reproducible-build-timestamp.patch | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/patches/reproducible-build-timestamp.patch 
b/debian/patches/reproducible-build-timestamp.patch
index 2ee694d..71ae7c0 100644
--- a/debian/patches/reproducible-build-timestamp.patch
+++ b/debian/patches/reproducible-build-timestamp.patch
@@ -1,6 +1,6 @@
 Description: Set the maven.build.timestamp variable to the date defined by
  the SOURCE_DATE_EPOCH environment variable to make the Maven builds 
reproducible.
-Author: Emmanuel Bourg 
+Author: Emmanuel Bourg 
 Forwarded: no
 --- 
a/maven-compat/src/main/java/org/apache/maven/project/interpolation/BuildTimestampValueSource.java
 +++ 
b/maven-compat/src/main/java/org/apache/maven/project/interpolation/BuildTimestampValueSource.java

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/maven.git

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


[maven] branch master updated (5603db6 -> 335b7a3)

2017-09-07 Thread Emmanuel Bourg
This is an automated email from the git hooks/post-receive script.

ebourg-guest pushed a change to branch master
in repository maven.

  from  5603db6   Fixed the Maven rules for maven-parent
   new  821e2de   Removed the patch changing the default version of the 
core plugins
   new  1e1c590   Fixed a typo in the patch header
   new  d99f058   Standards-Version updated to 4.1.0
   new  335b7a3   Upload to unstable

The 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 debian/changelog  |   9 +-
 debian/control|   2 +-
 debian/patches/plugins_version.diff   | 193 --
 debian/patches/reproducible-build-timestamp.patch |   2 +-
 debian/patches/series |   1 -
 5 files changed, 9 insertions(+), 198 deletions(-)
 delete mode 100644 debian/patches/plugins_version.diff

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/maven.git

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


[maven] 03/04: Standards-Version updated to 4.1.0

2017-09-07 Thread Emmanuel Bourg
This is an automated email from the git hooks/post-receive script.

ebourg-guest pushed a commit to branch master
in repository maven.

commit d99f058dd5b0ddcb9e2ac2cd0aa57adb8c125418
Author: Emmanuel Bourg 
Date:   Thu Sep 7 01:14:25 2017 +0200

Standards-Version updated to 4.1.0
---
 debian/changelog | 1 +
 debian/control   | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index 11978a1..c83050e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -7,6 +7,7 @@ maven (3.5.0-6) UNRELEASED; urgency=medium
 the default version used by Maven to the current one.
   * Depend on maven-parent 27 and removed modello-configuration.patch
   * Removed the unused dependency on libeclipse-aether-java
+  * Standards-Version updated to 4.1.0
 
  -- Emmanuel Bourg   Thu, 20 Jul 2017 17:36:21 +0200
 
diff --git a/debian/control b/debian/control
index 2e5e484..ab75d8c 100644
--- a/debian/control
+++ b/debian/control
@@ -28,7 +28,7 @@ Build-Depends-Indep: junit4,
  libsurefire-java (>= 2.17),
  libwagon2-java (>= 2.12),
  libxmlunit-java
-Standards-Version: 4.0.0
+Standards-Version: 4.1.0
 Vcs-Git: https://anonscm.debian.org/git/pkg-java/maven.git
 Vcs-Browser: https://anonscm.debian.org/cgit/pkg-java/maven.git
 Homepage: http://maven.apache.org

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/maven.git

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