[jruby-joni] 07/08: Merge tag 'joni-2.1.16' into debian/sid

2018-03-13 Thread Hideki Yamane
This is an automated email from the git hooks/post-receive script.

henrich pushed a commit to branch debian/sid
in repository jruby-joni.

commit b091f99a53ef99bda34f048343bdd0586501e997
Merge: 639f582 b1b30c8
Author: Hideki Yamane 
Date:   Tue Mar 13 20:20:55 2018 +0900

Merge tag 'joni-2.1.16' into debian/sid

[maven-release-plugin]  copy for tag joni-2.1.16

 pom.xml   |   4 +-
 src/org/joni/Analyser.java|  67 -
 src/org/joni/ArrayCompiler.java   |  26 +++
 src/org/joni/ByteCodeMachine.java |   6 +-
 src/org/joni/CodeRangeBuffer.java |   4 +-
 src/org/joni/Compiler.java|   2 +-
 src/org/joni/Lexer.java   | 120 +++---
 src/org/joni/Parser.java  |  84 ++---
 src/org/joni/Regex.java   |  38 ++
 src/org/joni/ScanEnvironment.java |   4 +-
 src/org/joni/UnsetAddrList.java   |   2 +-
 src/org/joni/ast/BackRefNode.java |   2 +-
 src/org/joni/ast/CClassNode.java  |   8 +-
 src/org/joni/ast/ListNode.java|   2 +-
 src/org/joni/ast/QuantifierNode.java  |   8 +-
 src/org/joni/exception/ErrorMessages.java | 120 +++---
 test/org/joni/test/TestA.java |   6 +-
 test/org/joni/test/TestError.java |  58 +++
 18 files changed, 281 insertions(+), 280 deletions(-)

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

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


[jruby-joni] 08/08: new upstrem release

2018-03-13 Thread Hideki Yamane
This is an automated email from the git hooks/post-receive script.

henrich pushed a commit to branch debian/sid
in repository jruby-joni.

commit 3328ad80122b99e5873aac712a26ad2e971eb141
Author: Hideki Yamane 
Date:   Tue Mar 13 20:23:07 2018 +0900

new upstrem release
---
 debian/changelog | 24 +++-
 debian/control   |  2 +-
 2 files changed, 24 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 43645dc..c6f4f0a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,30 @@
+jruby-joni (2.1.16-1) UNRELEASED; urgency=medium
+
+  * New upstream release
+
+  [ Thomas E. Enebo ]
+  * [maven-release-plugin] prepare for next development iteration
+  * Update to new jcodings 1.0.28
+  * [maven-release-plugin] prepare release joni-2.1.16
+
+  [ Marcin Mielzynski ]
+  * move debug info
+  * remove redundant name prefix
+
+  [ lopex ]
+  * whoops, make those static
+
+  [ Hideki Yamane ]
+  * debian/control
+- adjust dependency to jcodings 1.0.28
+
+ -- Hideki Yamane   Tue, 13 Mar 2018 20:21:38 +0900
+
 jruby-joni (2.1.15-1) unstable; urgency=medium
 
   * New upstream release
 
- -- Hideki Yamane   Sat, 24 Feb 2018 19:42:37 +0900
+ -- Hideki Yamane   Tue, 13 Mar 2018 20:21:12 +0900
 
 jruby-joni (2.1.14-1) unstable; urgency=medium
 
diff --git a/debian/control b/debian/control
index 17b22ec..6b7abbc 100644
--- a/debian/control
+++ b/debian/control
@@ -11,7 +11,7 @@ Build-Depends:
 Build-Depends-Indep:
  junit4,
  libasm-java (>= 5.0.3),
- libjcodings-java (>= 1.0.27),
+ libjcodings-java (>= 1.0.28),
  maven-debian-helper (>= 2.0)
 Standards-Version: 4.1.3
 Vcs-Git: https://anonscm.debian.org/git/pkg-java/jruby-joni/

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

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


[jruby-joni] 03/08: remove redundant name prefix

2018-03-13 Thread Hideki Yamane
This is an automated email from the git hooks/post-receive script.

henrich pushed a commit to branch debian/sid
in repository jruby-joni.

commit 9a47222f82c2033935eabe786cd497f87cb9c48e
Author: Marcin Mielzynski 
Date:   Wed Feb 28 19:03:07 2018 +0100

remove redundant name prefix
---
 src/org/joni/Analyser.java|  36 -
 src/org/joni/ArrayCompiler.java   |  26 +++
 src/org/joni/ByteCodeMachine.java |   6 +-
 src/org/joni/CodeRangeBuffer.java |   4 +-
 src/org/joni/Compiler.java|   2 +-
 src/org/joni/Lexer.java   | 120 +++---
 src/org/joni/Parser.java  |  84 ++---
 src/org/joni/Regex.java   |  10 +--
 src/org/joni/ScanEnvironment.java |   4 +-
 src/org/joni/UnsetAddrList.java   |   2 +-
 src/org/joni/ast/BackRefNode.java |   2 +-
 src/org/joni/ast/CClassNode.java  |   8 +-
 src/org/joni/ast/ListNode.java|   2 +-
 src/org/joni/exception/ErrorMessages.java | 120 +++---
 test/org/joni/test/TestA.java |   6 +-
 test/org/joni/test/TestError.java |  58 +++
 16 files changed, 245 insertions(+), 245 deletions(-)

diff --git a/src/org/joni/Analyser.java b/src/org/joni/Analyser.java
index dc64921..9e5cdc1 100644
--- a/src/org/joni/Analyser.java
+++ b/src/org/joni/Analyser.java
@@ -314,7 +314,7 @@ final class Analyser extends Parser {
 
 case NodeType.BREF:
 BackRefNode br = (BackRefNode)node;
-if (!br.isNameRef()) 
newValueException(ERR_NUMBERED_BACKREF_OR_CALL_NOT_ALLOWED);
+if (!br.isNameRef()) 
newValueException(NUMBERED_BACKREF_OR_CALL_NOT_ALLOWED);
 break;
 
 case NodeType.ANCHOR:
@@ -426,14 +426,14 @@ final class Analyser extends Parser {
 if (br.isRecursion()) break;
 
 if (br.back[0] > env.numMem) {
-if (!syntax.op3OptionECMAScript()) 
newValueException(ERR_INVALID_BACKREF);
+if (!syntax.op3OptionECMAScript()) 
newValueException(INVALID_BACKREF);
 } else {
 min = getMinMatchLength(env.memNodes[br.back[0]]);
 }
 
 for (int i=1; i env.numMem) {
-if (!syntax.op3OptionECMAScript()) 
newValueException(ERR_INVALID_BACKREF);
+if (!syntax.op3OptionECMAScript()) 
newValueException(INVALID_BACKREF);
 } else {
 int tmin = getMinMatchLength(env.memNodes[br.back[i]]);
 if (min > tmin) min = tmin;
@@ -576,7 +576,7 @@ final class Analyser extends Parser {
 
 for (int i=0; i env.numMem) {
-if(!syntax.op3OptionECMAScript()) 
newValueException(ERR_INVALID_BACKREF);
+if(!syntax.op3OptionECMAScript()) 
newValueException(INVALID_BACKREF);
 } else {
 int tmax = getMaxMatchLength(env.memNodes[br.back[i]]);
 if (max < tmax) max = tmax;
@@ -1167,7 +1167,7 @@ final class Analyser extends Parser {
 if (en.isRecursion()) {
 en.setMark1();
 r = subexpInfRecursiveCheck(en.target, true);
-if (r > 0) newValueException(ERR_NEVER_ENDING_RECURSION);
+if (r > 0) newValueException(NEVER_ENDING_RECURSION);
 en.clearMark1();
 }
 r = subexpInfRecursiveCheckTrav(en.target);
@@ -1294,7 +1294,7 @@ final class Analyser extends Parser {
 
 private void setCallAttr(CallNode cn) {
 EncloseNode en = env.memNodes[cn.groupNum];
-if (en == null) newValueException(ERR_UNDEFINED_NAME_REFERENCE, 
cn.nameP, cn.nameEnd);
+if (en == null) newValueException(UNDEFINED_NAME_REFERENCE, cn.nameP, 
cn.nameEnd);
 en.setCalled();
 cn.setTarget(en);
 env.btMemStart = BitStatus.bsOnAt(env.btMemStart, cn.groupNum);
@@ -1333,10 +1333,10 @@ final class Analyser extends Parser {
 
 if (Config.USE_NAMED_GROUP) {
 if (env.numNamed > 0 && syntax.captureOnlyNamedGroup() && 
!isCaptureGroup(env.option)) {
-
newValueException(ERR_NUMBERED_BACKREF_OR_CALL_NOT_ALLOWED);
+
newValueException(NUMBERED_BACKREF_OR_CALL_NOT_ALLOWED);
 }
 } // USE_NAMED_GROUP
-if (gNum > env.numMem) 
newValueException(ERR_UNDEFINED_GROUP_REFERENCE, cn.nameP, cn.nameEnd);
+if (gNum > env.numMem) 
newValueException(UNDEFINED_GROUP_REFERENCE, cn.nameP, cn.nameEnd);
 setCallAttr(cn);
 } else {
 if (Config.USE_NAMED_GROUP) {
@@ -1346,9 +1346,9 @@ final class Analyser extends Parser {
 NameEntry ne = regex.nameToGroupNumbers(cn.name, 
cn.nameP, cn.nameEnd);
 
 if (ne == null) {
-

[jruby-joni] 01/08: [maven-release-plugin] prepare for next development iteration

2018-03-13 Thread Hideki Yamane
This is an automated email from the git hooks/post-receive script.

henrich pushed a commit to branch debian/sid
in repository jruby-joni.

commit 09efbee1b600047e82c114be8a18d641b11b8b3f
Author: Thomas E. Enebo 
Date:   Wed Feb 21 09:50:54 2018 -0600

[maven-release-plugin] prepare for next development iteration
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index a7cdb68..5dba2f3 100644
--- a/pom.xml
+++ b/pom.xml
@@ -4,7 +4,7 @@
   org.jruby.joni
   joni
   jar
-  2.1.15
+  2.1.16-SNAPSHOT
   Joni
   
 Java port of Oniguruma: http://www.geocities.jp/kosako3/oniguruma

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

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


[jruby-joni] 04/08: whoops, make those static

2018-03-13 Thread Hideki Yamane
This is an automated email from the git hooks/post-receive script.

henrich pushed a commit to branch debian/sid
in repository jruby-joni.

commit d44f386f44f0b915027243e89a94a6c4bfada197
Author: lopex 
Date:   Thu Mar 1 13:16:19 2018 +0100

whoops, make those static
---
 src/org/joni/ast/QuantifierNode.java | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/org/joni/ast/QuantifierNode.java 
b/src/org/joni/ast/QuantifierNode.java
index 5c35e7e..eb0d20e 100644
--- a/src/org/joni/ast/QuantifierNode.java
+++ b/src/org/joni/ast/QuantifierNode.java
@@ -130,7 +130,7 @@ public final class QuantifierNode extends StateNode {
 combExpCheckNum = other.combExpCheckNum;
 }
 
-enum ReduceType {
+static enum ReduceType {
 ASIS,   /* as is */
 DEL,/* delete parent */
 A,  /* to '*'*/
@@ -140,7 +140,7 @@ public final class QuantifierNode extends StateNode {
 PQ_Q,   /* to '+?)?' */
 }
 
-final ReduceType[][]REDUCE_TABLE = {
+static final ReduceType[][]REDUCE_TABLE = {
   {DEL, A,  A,  QQ, AQ, ASIS}, /* '?'  */
   {DEL, DEL,DEL,P_QQ,   P_QQ,   DEL},  /* '*'  */
   {A,   A,  DEL,ASIS,   P_QQ,   DEL},  /* '+'  */
@@ -211,8 +211,8 @@ public final class QuantifierNode extends StateNode {
 other.target = null; // remove target from reduced quantifier
 }
 
-final String PopularQStr[] = new String[] {"?", "*", "+", "??", "*?", 
"+?"};
-final String ReduceQStr[]= new String[] {"", "", "*", "*?", "??", "+ and 
??", "+? and ?"};
+static final String PopularQStr[] = new String[] {"?", "*", "+", "??", 
"*?", "+?"};
+static final String ReduceQStr[] = new String[] {"", "", "*", "*?", "??", 
"+ and ??", "+? and ?"};
 
 public int setQuantifier(Node tgt, boolean group, ScanEnvironment env, 
byte[]bytes, int p, int end) {
 if (lower == 1 && upper == 1) {

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

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


[jruby-joni] branch debian/sid updated (639f582 -> 3328ad8)

2018-03-13 Thread Hideki Yamane
This is an automated email from the git hooks/post-receive script.

henrich pushed a change to branch debian/sid
in repository jruby-joni.

  from  639f582   upload to unstable
   new  09efbee   [maven-release-plugin] prepare for next development 
iteration
   new  0cb26b9   move debug info
   new  9a47222   remove redundant name prefix
   new  d44f386   whoops, make those static
   new  76e2826   Update to new jcodings 1.0.28
   new  b1b30c8   [maven-release-plugin] prepare release joni-2.1.16
   new  b091f99   Merge tag 'joni-2.1.16' into debian/sid
   new  3328ad8   new upstrem release

The 8 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  |  24 +-
 debian/control|   2 +-
 pom.xml   |   4 +-
 src/org/joni/Analyser.java|  67 -
 src/org/joni/ArrayCompiler.java   |  26 +++
 src/org/joni/ByteCodeMachine.java |   6 +-
 src/org/joni/CodeRangeBuffer.java |   4 +-
 src/org/joni/Compiler.java|   2 +-
 src/org/joni/Lexer.java   | 120 +++---
 src/org/joni/Parser.java  |  84 ++---
 src/org/joni/Regex.java   |  38 ++
 src/org/joni/ScanEnvironment.java |   4 +-
 src/org/joni/UnsetAddrList.java   |   2 +-
 src/org/joni/ast/BackRefNode.java |   2 +-
 src/org/joni/ast/CClassNode.java  |   8 +-
 src/org/joni/ast/ListNode.java|   2 +-
 src/org/joni/ast/QuantifierNode.java  |   8 +-
 src/org/joni/exception/ErrorMessages.java | 120 +++---
 test/org/joni/test/TestA.java |   6 +-
 test/org/joni/test/TestError.java |  58 +++
 20 files changed, 305 insertions(+), 282 deletions(-)

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

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


[jruby-joni] 05/08: Update to new jcodings 1.0.28

2018-03-13 Thread Hideki Yamane
This is an automated email from the git hooks/post-receive script.

henrich pushed a commit to branch debian/sid
in repository jruby-joni.

commit 76e282607c7d1e729868d48e4953c3ff2bff0ee8
Author: Thomas E. Enebo 
Date:   Wed Mar 7 13:50:24 2018 -0600

Update to new jcodings 1.0.28
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 5dba2f3..c7ab9e8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -66,7 +66,7 @@
 
org.jruby.jcodings
jcodings
-   1.0.27
+   1.0.28
 
 
   junit

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

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


[jruby-joni] 02/08: move debug info

2018-03-13 Thread Hideki Yamane
This is an automated email from the git hooks/post-receive script.

henrich pushed a commit to branch debian/sid
in repository jruby-joni.

commit 0cb26b9b2b573ab516eb8120fd87dff474a80ce1
Author: Marcin Mielzynski 
Date:   Wed Feb 28 18:38:58 2018 +0100

move debug info
---
 src/org/joni/Analyser.java | 31 ++-
 src/org/joni/Regex.java| 28 
 2 files changed, 30 insertions(+), 29 deletions(-)

diff --git a/src/org/joni/Analyser.java b/src/org/joni/Analyser.java
index 400b779..dc64921 100644
--- a/src/org/joni/Analyser.java
+++ b/src/org/joni/Analyser.java
@@ -32,6 +32,8 @@ import static org.joni.ast.ListNode.newAlt;
 import static org.joni.ast.ListNode.newList;
 import static org.joni.ast.QuantifierNode.isRepeatInfinite;
 
+import java.util.IllegalFormatConversionException;
+
 import org.jcodings.CaseFoldCodeItem;
 import org.jcodings.ObjPtr;
 import org.jcodings.Ptr;
@@ -59,7 +61,7 @@ final class Analyser extends Parser {
 }
 
 protected final void compile() {
-if (Config.DEBUG) Config.log.println(regex.encStringToString(bytes, 
getBegin(), getEnd()));
+if (Config.DEBUG) Config.log.println(encStringToString(bytes, 
getBegin(), getEnd()));
 reset();
 
 regex.numMem = 0;
@@ -170,6 +172,33 @@ final class Analyser extends Parser {
 regex.options &= ~syntax.options;
 }
 
+private String encStringToString(byte[]bytes, int p, int end) {
+StringBuilder sb = new StringBuilder("\nPATTERN: /");
+
+if (enc.minLength() > 1) {
+int p_ = p;
+while (p_ < end) {
+int code = enc.mbcToCode(bytes, p_, end);
+if (code >= 0x80) {
+try {
+sb.append(String.format(" 0x%04x ", code));
+} catch (IllegalFormatConversionException ifce) {
+sb.append(code);
+}
+} else {
+sb.append((char)code);
+}
+p_ += enc.length(bytes, p_, end);
+}
+} else {
+while (p < end) {
+sb.append(new String(bytes, p, 1));
+p++;
+}
+}
+return sb.append("/").toString();
+}
+
 private void noNameDisableMapFor_listAlt(Node node, int[]map, Ptr counter) 
{
 ListNode can = (ListNode)node;
 do {
diff --git a/src/org/joni/Regex.java b/src/org/joni/Regex.java
index 1aff46a..c32dff8 100644
--- a/src/org/joni/Regex.java
+++ b/src/org/joni/Regex.java
@@ -23,7 +23,6 @@ import static org.joni.BitStatus.bsAt;
 import static org.joni.Option.isCaptureGroup;
 import static org.joni.Option.isDontCaptureGroup;
 
-import java.util.IllegalFormatConversionException;
 import java.util.Iterator;
 
 import org.jcodings.Encoding;
@@ -352,33 +351,6 @@ public final class Regex {
 exactP = exactEnd = 0;
 }
 
-public String encStringToString(byte[]bytes, int p, int end) {
-StringBuilder sb = new StringBuilder("\nPATTERN: /");
-
-if (enc.minLength() > 1) {
-int p_ = p;
-while (p_ < end) {
-int code = enc.mbcToCode(bytes, p_, end);
-if (code >= 0x80) {
-try {
-sb.append(String.format(" 0x%04x ", code));
-} catch (IllegalFormatConversionException ifce) {
-sb.append(code);
-}
-} else {
-sb.append((char)code);
-}
-p_ += enc.length(bytes, p_, end);
-}
-} else {
-while (p < end) {
-sb.append(new String(bytes, p, 1));
-p++;
-}
-}
-return sb.append("/").toString();
-}
-
 public String optimizeInfoToString() {
 String s = "";
 s += "optimize: " + searchAlgorithm.getName() + "\n";

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

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


[jruby-joni] 06/08: [maven-release-plugin] prepare release joni-2.1.16

2018-03-13 Thread Hideki Yamane
This is an automated email from the git hooks/post-receive script.

henrich pushed a commit to branch debian/sid
in repository jruby-joni.

commit b1b30c88e15a91552cd14c4d6295b7fc62d98147
Author: Thomas E. Enebo 
Date:   Wed Mar 7 13:54:06 2018 -0600

[maven-release-plugin] prepare release joni-2.1.16
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index c7ab9e8..a32c67c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -4,7 +4,7 @@
   org.jruby.joni
   joni
   jar
-  2.1.16-SNAPSHOT
+  2.1.16
   Joni
   
 Java port of Oniguruma: http://www.geocities.jp/kosako3/oniguruma

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

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


Processing of jcodings_1.0.28-1_amd64.changes

2018-03-13 Thread Debian FTP Masters
jcodings_1.0.28-1_amd64.changes uploaded successfully to localhost
along with the files:
  jcodings_1.0.28-1.dsc
  jcodings_1.0.28.orig.tar.gz
  jcodings_1.0.28-1.debian.tar.xz
  jcodings_1.0.28-1_amd64.buildinfo
  libjcodings-java_1.0.28-1_all.deb

Greetings,

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

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


jcodings_1.0.28-1_amd64.changes ACCEPTED into unstable

2018-03-13 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 13 Mar 2018 20:15:18 +0900
Source: jcodings
Binary: libjcodings-java
Architecture: source all
Version: 1.0.28-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Java Maintainers 

Changed-By: Hideki Yamane 
Description:
 libjcodings-java - Java-based codings helper classes for Joni and JRuby
Changes:
 jcodings (1.0.28-1) unstable; urgency=medium
 .
   * New upstream release
 .
   [ Thomas E. Enebo ]
   * [maven-release-plugin] prepare for next development iteration
   * [maven-release-plugin] prepare release jcodings-1.0.28
 .
   [ yui-knk ]
   * Make some fields to be private
 .
   [ Marcin Mielzynski ]
   * ISO8859_2 caseMap
   * iso8859-3 caseMap
   * fix caseMap
   * add sharp-s iso caseMap test
   * fix singlebyte casemap and test ascii range for all ascii compatible 
encoding casemaps
   * add euc-jp code ranges
 .
   [ Kevin Menard ]
   * Buffer input stream reads in ArrayReader to avoid cost of many single-byte 
reads.
 .
   [ Hideki Yamane ]
   * debian/control
 - adjust dependency version
 - add "Depends: ${maven:Depends}" and "Suggests: ${maven:OptionalDepends}"
Checksums-Sha1:
 d5148740d4ac5be78de1723c424aec492b9ccad9 2088 jcodings_1.0.28-1.dsc
 f4064d51463ee07a3263e3b1b300bfe7479ae808 1375260 jcodings_1.0.28.orig.tar.gz
 d40379fbd41213497b7bae5ba738f75bdc181bf1 4404 jcodings_1.0.28-1.debian.tar.xz
 145457c4859d5d47c942b2eb43f30ab7ffce5a9b 14732 
jcodings_1.0.28-1_amd64.buildinfo
 9fab5389a8d956ff3ec4bf19a5771ec40a3ff00d 1400112 
libjcodings-java_1.0.28-1_all.deb
Checksums-Sha256:
 24823cdb54730ba3e711a6d4de86160e541c1b3d5235e653584e48b952d639ac 2088 
jcodings_1.0.28-1.dsc
 109d0034ffba52dbc38c37fff599f35afce8cb7d188219380a43d4d6f40d6272 1375260 
jcodings_1.0.28.orig.tar.gz
 8dd348c9d8ed76479d86440b1eeac282d2f1da85d921686772205fbfc495a185 4404 
jcodings_1.0.28-1.debian.tar.xz
 a2d27af3862fca07a5d4f4eb07a437bc4362a6ca53058983e49cbb4ffd3e2c64 14732 
jcodings_1.0.28-1_amd64.buildinfo
 c7c3d9b7db25e8fccc5734459249ccf7dd4cd01e72b91969c744923d93b67b50 1400112 
libjcodings-java_1.0.28-1_all.deb
Files:
 f58f85e49645ecaecc39e420691f9421 2088 java optional jcodings_1.0.28-1.dsc
 c39b3ced13a906f55b4406850e660945 1375260 java optional 
jcodings_1.0.28.orig.tar.gz
 7d274d0a95316b704a84c2369ddc86c9 4404 java optional 
jcodings_1.0.28-1.debian.tar.xz
 c04b0b2d9dee5f41b2a6873052533e16 14732 java optional 
jcodings_1.0.28-1_amd64.buildinfo
 9cc75460ee88b9db146a6fd2eb151ea5 1400112 java optional 
libjcodings-java_1.0.28-1_all.deb

-BEGIN PGP SIGNATURE-

iQJHBAEBCgAxFiEEWOEiL5aWyIWjzRBMXTKNCCqqsUAFAlqns8wTHGhlbnJpY2hA
ZGViaWFuLm9yZwAKCRBdMo0IKqqxQKsmD/wMwQdudK4+mA86IK11vxvcx8Ro/1V0
1TAm4Ke8E3rsCVZEJ4RcfIQUNL/m1Tn0PO9baM+7YGhgisHWVJUrd3WvJ4i+JseQ
ENo1IW1QCFijGoS4BKsFJg6+XvauCNmXQry1jH6NMv9y7rHAApAPJaPAxCER2qrW
rztxNlPcNDwXc3Oq85xFA2dXg5rn34GyaNaqe9rx2p5adbYVai+HhSs2gtNnlg/c
IpRLcVVXdckFGSjvr2veUv5pfUfepbxTeP4NNQr9nfEpn8zcXjzGG19ChMISqhwZ
zjlGhXUNqrlinOGvL8oL9VcKAaIP4bS395Y1iue8t1bWhJ6LlmIsad7DKiUdHd/r
LUyzHV1w9hGbbVNFwrV5yuSs2j9zh7Cu1u2CZufhbsfZuzxqLkT6JJfUaNkefzlm
ZbvX/4bvdr0ALCC5obA8+PfkHpAq8Sb6SkBleiAjJrD5pE1rawyfJbwcKFfucg/6
pscQdDl3VPs+eymUQKKRA3+pl8bQeuB2e74edXGXtKszOqGhRUGbiHTR7j7rkFAD
zbAXapWhnvH0afk07hgJSHfdO/oCxdTJz3VsWtSIgxdf72uzjt8zDiYnSI23za9s
TxyrgosfxBFIkMtBYTBqB65/4bbnq7qsZ51GRIJyUmoX5vINjqCSTJTK91qwGfc2
zixpE1/EwLNiKA==
=fR6u
-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.


Accepted jcodings 1.0.28-1 (source all) into unstable

2018-03-13 Thread Hideki Yamane
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 13 Mar 2018 20:15:18 +0900
Source: jcodings
Binary: libjcodings-java
Architecture: source all
Version: 1.0.28-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Java Maintainers 

Changed-By: Hideki Yamane 
Description:
 libjcodings-java - Java-based codings helper classes for Joni and JRuby
Changes:
 jcodings (1.0.28-1) unstable; urgency=medium
 .
   * New upstream release
 .
   [ Thomas E. Enebo ]
   * [maven-release-plugin] prepare for next development iteration
   * [maven-release-plugin] prepare release jcodings-1.0.28
 .
   [ yui-knk ]
   * Make some fields to be private
 .
   [ Marcin Mielzynski ]
   * ISO8859_2 caseMap
   * iso8859-3 caseMap
   * fix caseMap
   * add sharp-s iso caseMap test
   * fix singlebyte casemap and test ascii range for all ascii compatible 
encoding casemaps
   * add euc-jp code ranges
 .
   [ Kevin Menard ]
   * Buffer input stream reads in ArrayReader to avoid cost of many single-byte 
reads.
 .
   [ Hideki Yamane ]
   * debian/control
 - adjust dependency version
 - add "Depends: ${maven:Depends}" and "Suggests: ${maven:OptionalDepends}"
Checksums-Sha1:
 d5148740d4ac5be78de1723c424aec492b9ccad9 2088 jcodings_1.0.28-1.dsc
 f4064d51463ee07a3263e3b1b300bfe7479ae808 1375260 jcodings_1.0.28.orig.tar.gz
 d40379fbd41213497b7bae5ba738f75bdc181bf1 4404 jcodings_1.0.28-1.debian.tar.xz
 145457c4859d5d47c942b2eb43f30ab7ffce5a9b 14732 
jcodings_1.0.28-1_amd64.buildinfo
 9fab5389a8d956ff3ec4bf19a5771ec40a3ff00d 1400112 
libjcodings-java_1.0.28-1_all.deb
Checksums-Sha256:
 24823cdb54730ba3e711a6d4de86160e541c1b3d5235e653584e48b952d639ac 2088 
jcodings_1.0.28-1.dsc
 109d0034ffba52dbc38c37fff599f35afce8cb7d188219380a43d4d6f40d6272 1375260 
jcodings_1.0.28.orig.tar.gz
 8dd348c9d8ed76479d86440b1eeac282d2f1da85d921686772205fbfc495a185 4404 
jcodings_1.0.28-1.debian.tar.xz
 a2d27af3862fca07a5d4f4eb07a437bc4362a6ca53058983e49cbb4ffd3e2c64 14732 
jcodings_1.0.28-1_amd64.buildinfo
 c7c3d9b7db25e8fccc5734459249ccf7dd4cd01e72b91969c744923d93b67b50 1400112 
libjcodings-java_1.0.28-1_all.deb
Files:
 f58f85e49645ecaecc39e420691f9421 2088 java optional jcodings_1.0.28-1.dsc
 c39b3ced13a906f55b4406850e660945 1375260 java optional 
jcodings_1.0.28.orig.tar.gz
 7d274d0a95316b704a84c2369ddc86c9 4404 java optional 
jcodings_1.0.28-1.debian.tar.xz
 c04b0b2d9dee5f41b2a6873052533e16 14732 java optional 
jcodings_1.0.28-1_amd64.buildinfo
 9cc75460ee88b9db146a6fd2eb151ea5 1400112 java optional 
libjcodings-java_1.0.28-1_all.deb

-BEGIN PGP SIGNATURE-

iQJHBAEBCgAxFiEEWOEiL5aWyIWjzRBMXTKNCCqqsUAFAlqns8wTHGhlbnJpY2hA
ZGViaWFuLm9yZwAKCRBdMo0IKqqxQKsmD/wMwQdudK4+mA86IK11vxvcx8Ro/1V0
1TAm4Ke8E3rsCVZEJ4RcfIQUNL/m1Tn0PO9baM+7YGhgisHWVJUrd3WvJ4i+JseQ
ENo1IW1QCFijGoS4BKsFJg6+XvauCNmXQry1jH6NMv9y7rHAApAPJaPAxCER2qrW
rztxNlPcNDwXc3Oq85xFA2dXg5rn34GyaNaqe9rx2p5adbYVai+HhSs2gtNnlg/c
IpRLcVVXdckFGSjvr2veUv5pfUfepbxTeP4NNQr9nfEpn8zcXjzGG19ChMISqhwZ
zjlGhXUNqrlinOGvL8oL9VcKAaIP4bS395Y1iue8t1bWhJ6LlmIsad7DKiUdHd/r
LUyzHV1w9hGbbVNFwrV5yuSs2j9zh7Cu1u2CZufhbsfZuzxqLkT6JJfUaNkefzlm
ZbvX/4bvdr0ALCC5obA8+PfkHpAq8Sb6SkBleiAjJrD5pE1rawyfJbwcKFfucg/6
pscQdDl3VPs+eymUQKKRA3+pl8bQeuB2e74edXGXtKszOqGhRUGbiHTR7j7rkFAD
zbAXapWhnvH0afk07hgJSHfdO/oCxdTJz3VsWtSIgxdf72uzjt8zDiYnSI23za9s
TxyrgosfxBFIkMtBYTBqB65/4bbnq7qsZ51GRIJyUmoX5vINjqCSTJTK91qwGfc2
zixpE1/EwLNiKA==
=fR6u
-END PGP SIGNATURE-


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


[bnd] 01/01: Reflect the change of JAR name in felix-resolver package

2018-03-13 Thread Kai-Chung Yan
This is an automated email from the git hooks/post-receive script.

seamlik-guest pushed a commit to branch master
in repository bnd.

commit a032fd7c734e7dacc9124124eb3c9c7c4b3711e8
Author: 殷啟聰 | Kai-Chung Yan 
Date:   Tue Mar 13 20:03:58 2018 +0800

Reflect the change of JAR name in felix-resolver package
---
 debian/bootstrap.xml | 2 +-
 debian/rules | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/debian/bootstrap.xml b/debian/bootstrap.xml
index f009809..e455986 100644
--- a/debian/bootstrap.xml
+++ b/debian/bootstrap.xml
@@ -1,7 +1,7 @@
 
 
 
-
+
 
 
 
diff --git a/debian/rules b/debian/rules
index 206e20d..0c7e94f 100755
--- a/debian/rules
+++ b/debian/rules
@@ -39,7 +39,7 @@ override_dh_auto_build:
ln -s /usr/share/java/junit4.jar 
cnf/repo/org.apache.servicemix.bundles.junit/org.apache.servicemix.bundles.junit-latest.jar
ln -s /usr/share/java/org.apache.felix.framework.jar 
cnf/repo/org.apache.felix.framework/org.apache.felix.framework-latest.jar
ln -s /usr/share/java/org.apache.felix.gogo.runtime.jar 
cnf/repo/org.apache.felix.gogo.runtime/org.apache.felix.gogo.runtime-latest.jar
-   ln -s /usr/share/java/org.apache.felix.resolver.jar 
cnf/repo/org.apache.felix.resolver/org.apache.felix.resolver-latest.jar
+   ln -s /usr/share/java/felix-resolver.jar 
cnf/repo/org.apache.felix.resolver/org.apache.felix.resolver-latest.jar
ln -s /usr/share/java/osgi.annotation.jar 
cnf/repo/osgi.annotation/osgi.annotation-latest.jar
ln -s /usr/share/java/osgi.cmpn.jar 
cnf/repo/org.osgi.util.function/org.osgi.util.function-latest.jar
ln -s /usr/share/java/osgi.cmpn.jar 
cnf/repo/org.osgi.util.promise/org.osgi.util.promise-latest.jar

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

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

[bnd] branch master updated (ddeb076 -> a032fd7)

2018-03-13 Thread Kai-Chung Yan
This is an automated email from the git hooks/post-receive script.

seamlik-guest pushed a change to branch master
in repository bnd.

  from  ddeb076   Point $HOME to `debian`, thus fixing the URL cache bug 
without patching it
   new  a032fd7   Reflect the change of JAR name in felix-resolver package

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/bootstrap.xml | 2 +-
 debian/rules | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

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

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


[bnd] 01/01: Add myself to d/copyright

2018-03-13 Thread Kai-Chung Yan
This is an automated email from the git hooks/post-receive script.

seamlik-guest pushed a commit to branch master
in repository bnd.

commit 0fdd7bf1c513cfa3500ed43328b59897ae8be7f4
Author: 殷啟聰 | Kai-Chung Yan 
Date:   Tue Mar 13 20:05:53 2018 +0800

Add myself to d/copyright
---
 debian/copyright | 1 +
 1 file changed, 1 insertion(+)

diff --git a/debian/copyright b/debian/copyright
index 5071a01..c6264e0 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -31,6 +31,7 @@ Copyright: 2009, Ludovic Claude 
2011, Damien Raude-Morvan 
2015, Miguel Landaeta 
2015, Markus Koschany 
+   2018, Kai-Chung Yan (殷啟聰)
 License: Apache-2.0
 
 License: Apache-2.0

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

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

[bnd] branch master updated (a032fd7 -> 0fdd7bf)

2018-03-13 Thread Kai-Chung Yan
This is an automated email from the git hooks/post-receive script.

seamlik-guest pushed a change to branch master
in repository bnd.

  from  a032fd7   Reflect the change of JAR name in felix-resolver package
   new  0fdd7bf   Add myself to d/copyright

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/copyright | 1 +
 1 file changed, 1 insertion(+)

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

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


[bnd] branch master updated (0fdd7bf -> 6f7e037)

2018-03-13 Thread Kai-Chung Yan
This is an automated email from the git hooks/post-receive script.

seamlik-guest pushed a change to branch master
in repository bnd.

  from  0fdd7bf   Add myself to d/copyright
   new  6f7e037   Use simpler dh_clean rules

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/clean | 34 ++
 debian/rules | 38 --
 2 files changed, 34 insertions(+), 38 deletions(-)
 create mode 100644 debian/clean

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

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


[bnd] 01/01: Use simpler dh_clean rules

2018-03-13 Thread Kai-Chung Yan
This is an automated email from the git hooks/post-receive script.

seamlik-guest pushed a commit to branch master
in repository bnd.

commit 6f7e037cec58d8fe26e59c91f6377d18ef7cce11
Author: 殷啟聰 | Kai-Chung Yan 
Date:   Tue Mar 13 20:19:01 2018 +0800

Use simpler dh_clean rules
---
 debian/clean | 34 ++
 debian/rules | 38 --
 2 files changed, 34 insertions(+), 38 deletions(-)

diff --git a/debian/clean b/debian/clean
new file mode 100644
index 000..b103d06
--- /dev/null
+++ b/debian/clean
@@ -0,0 +1,34 @@
+aQute.libg/bin/
+aQute.libg/generated/
+biz.aQute.bnd.annotation/bin/
+biz.aQute.bnd.annotation/generated/
+biz.aQute.bnd.embedded-repo/generated/
+biz.aQute.bnd.gradle/bin/
+biz.aQute.bnd.gradle/generated/
+biz.aQute.bnd/bin/
+biz.aQute.bnd/generated/
+biz.aQute.bndlib.tests/generated/
+biz.aQute.bndlib/bin/
+biz.aQute.bndlib/generated/
+biz.aQute.junit/bin/
+biz.aQute.junit/generated/
+biz.aQute.launcher/bin/
+biz.aQute.launcher/generated/
+biz.aQute.remote/bin/
+biz.aQute.remote/generated/
+biz.aQute.repository/bin/
+biz.aQute.repository/generated/
+biz.aQute.resolve/bin/
+biz.aQute.resolve/generated/
+biz.aQute.tester/bin/
+biz.aQute.tester/generated/
+bootstrap/
+cnf/cache/
+cnf/generated/
+cnf/local.mvn
+debian/.m2/
+debian/bnd.1
+org.osgi.impl.bundle.repoindex.api/bin/
+org.osgi.impl.bundle.repoindex.api/generated/
+org.osgi.impl.bundle.repoindex.lib/bin/
+org.osgi.impl.bundle.repoindex.lib/generated/
\ No newline at end of file
diff --git a/debian/rules b/debian/rules
index 0c7e94f..327af6e 100755
--- a/debian/rules
+++ b/debian/rules
@@ -69,45 +69,7 @@ override_dh_auto_install:
 
 override_dh_auto_clean:
dh_auto_clean
-
-   -rm -rf cnf/cache
-   -rm -rf cnf/generated
-   -rm -rf aQute.libg/bin/
-   -rm -rf aQute.libg/generated/
-   -rm -rf biz.aQute.bndlib/bin/
-   -rm -rf biz.aQute.bndlib/generated/
-   -rm -rf biz.aQute.bndlib.tests/generated
-   -rm -rf biz.aQute.bnd/bin/
-   -rm -rf biz.aQute.bnd/generated/
-   -rm -rf biz.aQute.bnd.annotation/generated/
-   $(RM) -r biz.aQute.bnd.annotation/bin
-   -rm -rf biz.aQute.junit/bin/
-   -rm -rf biz.aQute.junit/generated/
-   -rm -rf biz.aQute.launcher/bin/
-   -rm -rf biz.aQute.launcher/generated/
-   $(RM) -r biz.aQute.bnd.embedded-repo/generated
-   $(RM) -r biz.aQute.bnd.gradle/bin
-   $(RM) -r biz.aQute.bnd.gradle/generated
-   $(RM) -r biz.aQute.remote/bin
-   $(RM) -r biz.aQute.remote/generated
-   $(RM) -r biz.aQute.repository/bin
-   $(RM) -r biz.aQute.repository/generated
-   $(RM) -r biz.aQute.resolve/bin
-   $(RM) -r biz.aQute.resolve/generated
-   $(RM) -r biz.aQute.tester/bin
-   $(RM) -r biz.aQute.tester/generated
-   $(RM) -r org.osgi.impl.bundle.repoindex.api/bin
-   $(RM) -r org.osgi.impl.bundle.repoindex.api/generated
-   $(RM) -r org.osgi.impl.bundle.repoindex.lib/bin
-   $(RM) -r org.osgi.impl.bundle.repoindex.lib/generated
-find . -type l -name '*.jar' -delete
-   jh_clean
-   mh_clean
-   -rm -rf install/
-   -rm -f debian/bnd.1
-   -rm -Rf bootstrap
-   $(RM) -r debian/.m2
-   $(RM) cnf/local.mvn
 
 get-orig-source:
uscan --download-current-version --force-download --repack 
--compression xz
\ No newline at end of file

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

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

[bnd] branch master updated (6f7e037 -> a96f35c)

2018-03-13 Thread Kai-Chung Yan
This is an automated email from the git hooks/post-receive script.

seamlik-guest pushed a change to branch master
in repository bnd.

  from  6f7e037   Use simpler dh_clean rules
   new  a96f35c   d/control: Tighten Build-Dependency on 
gradle-debian-helper to >= 1.6~

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/control | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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

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


[bnd] 01/01: d/control: Tighten Build-Dependency on gradle-debian-helper to >= 1.6~

2018-03-13 Thread Kai-Chung Yan
This is an automated email from the git hooks/post-receive script.

seamlik-guest pushed a commit to branch master
in repository bnd.

commit a96f35ca73c733d6e8c8d2ce42a2bc6699ea082a
Author: 殷啟聰 | Kai-Chung Yan 
Date:   Tue Mar 13 20:39:13 2018 +0800

d/control: Tighten Build-Dependency on gradle-debian-helper to >= 1.6~
---
 debian/control | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/control b/debian/control
index c78b08a..4fbcb78 100644
--- a/debian/control
+++ b/debian/control
@@ -12,7 +12,7 @@ Build-Depends:
  debhelper (>= 11),
  default-jdk-headless | default-jdk,
  libfindbugs-ant-java,
- gradle-debian-helper,
+ gradle-debian-helper (>= 1.6~),
  javahelper,
  junit4,
  libbindex-java (>= 2.2+svn101),

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

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

[bnd] branch master updated (a96f35c -> f6e339e)

2018-03-13 Thread Kai-Chung Yan
This is an automated email from the git hooks/post-receive script.

seamlik-guest pushed a change to branch master
in repository bnd.

  from  a96f35c   d/control: Tighten Build-Dependency on 
gradle-debian-helper to >= 1.6~
   new  f6e339e   d/rules: Remove a mistakenly duplicated rule

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/rules | 1 -
 1 file changed, 1 deletion(-)

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

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


[bnd] 01/01: d/rules: Remove a mistakenly duplicated rule

2018-03-13 Thread Kai-Chung Yan
This is an automated email from the git hooks/post-receive script.

seamlik-guest pushed a commit to branch master
in repository bnd.

commit f6e339e1d4111396af541fc30a59da407843fc8a
Author: 殷啟聰 | Kai-Chung Yan 
Date:   Tue Mar 13 21:01:54 2018 +0800

d/rules: Remove a mistakenly duplicated rule
---
 debian/rules | 1 -
 1 file changed, 1 deletion(-)

diff --git a/debian/rules b/debian/rules
index 327af6e..0057029 100755
--- a/debian/rules
+++ b/debian/rules
@@ -50,7 +50,6 @@ override_dh_auto_build:
ln -s /usr/share/java/snakeyaml.jar 
cnf/repo/org.yaml.snakeyaml/org.yaml.snakeyaml-latest.jar
ln -s /usr/share/java/xz.jar 
cnf/repo/org.tukaani.xz/org.tukaani.xz-latest.jar
$(RM) -r biz.aQute.repository/src/aQute/bnd/jpm # This package depends 
on non-free code
-   $(RM) cnf/ext/central.mvn # Somehow it forces Gradle to access internet.
dh_auto_build -- :biz.aQute.bnd:assemble \
 :biz.aQute.launcher:assemble \
 :biz.aQute.junit:assemble \

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

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

[resteasy] 03/04: Update Maven rules

2018-03-13 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a commit to branch master
in repository resteasy.

commit 5b641e6aa3ae9ad3b1986183cce2ef0866f1d246
Author: Timo Aaltonen 
Date:   Tue Mar 13 17:51:18 2018 +0200

Update Maven rules
---
 debian/changelog | 1 +
 debian/libresteasy-java.poms | 6 --
 debian/maven.ignoreRules | 7 ++-
 debian/maven.rules   | 2 +-
 4 files changed, 12 insertions(+), 4 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 8bbba06..e919680 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -3,6 +3,7 @@ resteasy (3.5.0-1) UNRELEASED; urgency=medium
   * Team upload.
   * New upstream release.
 - Refresh the patch
+- Update Maven rules
 
  -- Timo Aaltonen   Tue, 13 Mar 2018 17:23:12 +0200
 
diff --git a/debian/libresteasy-java.poms b/debian/libresteasy-java.poms
index 1fd0fbd..d1a9e50 100644
--- a/debian/libresteasy-java.poms
+++ b/debian/libresteasy-java.poms
@@ -36,6 +36,7 @@ providers/jaxb/pom.xml --has-package-version
 providers/jettison/pom.xml --has-package-version
 providers/jackson/pom.xml --has-package-version
 providers/jackson2/pom.xml --ignore
+providers/json-binding/pom.xml --ignore
 providers/json-p-ee7/pom.xml --ignore
 providers/multipart/pom.xml --ignore
 providers/resteasy-atom/pom.xml --has-package-version
@@ -49,9 +50,10 @@ resteasy-client/pom.xml --has-package-version
 resteasy-dependencies-bom/pom.xml --no-parent --has-package-version
 resteasy-guice/pom.xml --ignore
 resteasy-jaxrs/pom.xml --has-package-version
-resteasy-jaxrs-services/pom.xml --has-package-version
+#resteasy-jaxrs-services/pom.xml --has-package-version
+resteasy-jaxrs-testsuite/pom.xml --ignore
 resteasy-jsapi/pom.xml --ignore
-resteasy-legacy/pom.xml --has-package-version
+#resteasy-legacy/pom.xml --has-package-version
 resteasy-links/pom.xml --ignore
 resteasy-spring/pom.xml --ignore
 resteasy-servlet-initializer/pom.xml --ignore
diff --git a/debian/maven.ignoreRules b/debian/maven.ignoreRules
index 2283c41..e97bd2b 100644
--- a/debian/maven.ignoreRules
+++ b/debian/maven.ignoreRules
@@ -19,14 +19,19 @@ org.jboss.resteasy test-resteasy-html jar * * *
 org.jboss.resteasy testable-examples-pom pom * * *
 org.jboss.resteasy.test war-tests-pom pom * * *
 org.jboss.resteasy tjws * * * *
-com.atlassian.maven.plugins maven-clover2-plugin * * * *
+com.atlassian.maven.plugins clover-maven-plugin * * * *
 javax.activation activation * * * *
 javax.el javax.el-api * * * *
+javax.json.bind javax.json.bind-api * * * *
+javax.validation validation-api * * * *
 net.jcip jcip-annotations * * * *
 org.apache.maven.plugins maven-deploy-plugin * * * *
 org.apache.maven.plugins maven-javadoc-plugin * * * *
 org.apache.maven.plugins maven-source-plugin * * * *
 org.bouncycastle bcprov-jdk16 * * * *
+org.codehaus.mojo build-helper-maven-plugin * * * *
+org.eclipse.microprofile.rest.client microprofile-rest-client-api * * * *
+org.eclipse.microprofile.config microprofile-config-api * * * *
 org.glassfish.web javax.el * * * *
 org.jboss.el jboss-el * * * *
 org.mortbay.jetty maven-jetty-plugin * * * *
diff --git a/debian/maven.rules b/debian/maven.rules
index 9536578..0f791e7 100644
--- a/debian/maven.rules
+++ b/debian/maven.rules
@@ -12,4 +12,4 @@ log4j log4j * s/.*/1.2.x/ * *
 s/org.jboss.spec.javax.annotation/org.apache.tomcat/ 
s/jboss-annotations-api_1.2_spec/tomcat-annotations-api/ * s/.*/8.x/ * *
 s/org.jboss.spec.javax.servlet/javax.servlet/ 
s/jboss-servlet-api_3.1_spec/javax.servlet-api/ * s/.*/3.1/ * *
 s/org.jboss.spec.javax.el/javax.el/ s/jboss-el-api_3.0_spec/javax.el-api/ * 
s/.*/3.0/ * *
-s/org.jboss.spec.javax.ws.rs/javax.ws.rs/ 
s/jboss-jaxrs-api_2.0_spec/javax.ws.rs-api/ * s/.*/debian/ * *
+s/org.jboss.spec.javax.ws.rs/javax.ws.rs/ 
s/jboss-jaxrs-api_2.1_spec/javax.ws.rs-api/ * s/.*/debian/ * *

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

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


[resteasy] 04/04: Add libreactive-streams-java to build-depends

2018-03-13 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a commit to branch master
in repository resteasy.

commit 1aa47c285d73c7ecc76ef4a2b2d6ecf876463596
Author: Timo Aaltonen 
Date:   Tue Mar 13 17:52:05 2018 +0200

Add libreactive-streams-java to build-depends
---
 debian/changelog | 1 +
 debian/control   | 1 +
 2 files changed, 2 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index e919680..7ac4624 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -4,6 +4,7 @@ resteasy (3.5.0-1) UNRELEASED; urgency=medium
   * New upstream release.
 - Refresh the patch
 - Update Maven rules
+- Add libreactive-streams-java to build-depends
 
  -- Timo Aaltonen   Tue, 13 Mar 2018 17:23:12 +0200
 
diff --git a/debian/control b/debian/control
index 7833eee..965f980 100644
--- a/debian/control
+++ b/debian/control
@@ -17,6 +17,7 @@ Build-Depends-Indep:
  libjettison-java,
  liblog4j1.2-java (>= 1.2.17),
  libmaven-install-plugin-java,
+ libreactive-streams-java,
  libscannotation-java,
  libslf4j-java,
  libtomcat8-java,

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

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


[resteasy] 01/04: Merge tag 'upstream/3.5.0'

2018-03-13 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a commit to branch master
in repository resteasy.

commit 8c17423e0a27e9cc3e48db75e487c4962ac57ab9
Merge: 89009e3 b2ad05b
Author: Timo Aaltonen 
Date:   Tue Mar 13 17:22:32 2018 +0200

Merge tag 'upstream/3.5.0'

Upstream version 3.5.0

 .mvn/jvm.config|1 -
 .travis.yml|   13 +-
 arquillian/RESTEASY-1056-jetty-bv11/pom.xml|   10 +-
 .../resteasy/test/resteasy1056/MissingCDITest.java |1 +
 .../src/test/resources/arquillian.xml  |3 +-
 .../pom.xml|  104 --
 .../resteasy/resteasy1630/TestApplication.java |   18 -
 .../resteasy/resteasy1630/TestApplicationPath.java |9 -
 .../jboss/resteasy/resteasy1630/TestResource.java  |   24 -
 .../test/resteasy1630/ServletInitializerTest.java  |   75 -
 .../resteasy1630/ServletInitializerTwoTest.java|   70 -
 .../src/test/resources/arquillian.xml  |   33 -
 .../src/test/resources/web.xml |   21 -
 arquillian/RESTEASY-736-jetty/pom.xml  |4 +-
 .../jboss/resteasy/resteasy736/TestResource.java   |   14 +-
 .../test/resteasy736/AsyncTimeoutTest.java |1 +
 arquillian/pom.xml |   11 +-
 as8-mavenized-distro/pom.xml   |2 +-
 as8-resteasy/pom.xml   |4 +-
 distribution/assembly.xml  |2 +-
 distribution/pom.xml   |   15 +-
 distribution/src-distribution/pom.xml  |2 +-
 docbook/pom.xml|2 +-
 docbook/reference/en/en-US/master.xml  |7 +-
 .../en/en-US/modules/Async_job_service.xml |   14 +-
 .../en/en-US/modules/Asynchronous_HTTP.xml |  125 +-
 docbook/reference/en/en-US/modules/Atom.xml|   10 +-
 .../en-US/modules/Cache_NoCache_CacheControl.xml   |   79 +-
 .../modules/Content_Marshalling_Providers.xml  |   17 +-
 .../en/en-US/modules/ExceptionMappers.xml  |   21 +-
 docbook/reference/en/en-US/modules/Guice.xml   |9 +-
 docbook/reference/en/en-US/modules/I18N.xml|8 +-
 .../en-US/modules/Installation_Configuration.xml   |  125 +-
 .../reference/en/en-US/modules/Interceptors.xml|   40 +-
 .../en/en-US/modules/JAX-RS_2.1_additions.xml  |  202 +++
 .../en-US/modules/JAX-RS_Content_Negotiation.xml   |2 +-
 docbook/reference/en/en-US/modules/Jaxb.xml|   22 +-
 docbook/reference/en/en-US/modules/Json-p.xml  |4 +-
 docbook/reference/en/en-US/modules/Json.xml|   36 +-
 docbook/reference/en/en-US/modules/Links.xml   |2 +-
 .../en/en-US/modules/Maven_and_RESTEasy.xml|  150 +-
 .../modules/Migration_from_older_versions.xml  |  466 +-
 .../en/en-US/modules/Migration_to_3.1.xml  |   75 +-
 docbook/reference/en/en-US/modules/Multipart.xml   |   38 +-
 docbook/reference/en/en-US/modules/Overview.xml|6 +-
 .../en/en-US/modules/RESTEasy_Client_Framework.xml |  650 +++-
 .../en/en-US/modules/RESTEasy_EJB_Integration.xml  |   10 +-
 .../en-US/modules/RESTEasy_Embedded_Container.xml  |   20 +-
 .../en-US/modules/RESTEasy_Spring_Integration.xml  |   10 +-
 docbook/reference/en/en-US/modules/Reactive.xml|   63 +
 .../en-US/modules/Securing_JAX-RS_and_RESTeasy.xml |   14 +-
 .../reference/en/en-US/modules/StringConverter.xml |  671 +++-
 docbook/reference/en/en-US/modules/Using_Path.xml  |2 +-
 docbook/reference/en/en-US/modules/Validation.xml  |   10 +-
 docbook/reference/en/en-US/modules/Yaml.xml|2 +
 docbook/reference/en/en-US/modules/_PathParam.xml  |2 +-
 docbook/reference/en/en-US/modules/_QueryParam.xml |2 +-
 .../reference/en/en-US/modules/content-range.xml   |2 +-
 docbook/reference/en/en-US/modules/cors.xml|2 +-
 docbook/reference/en/en-US/modules/gzip.xml|  152 +-
 docbook/reference/en/en-US/modules/signature.xml   |   16 +-
 docbook/reference/en/en-US/modules/smime.xml   |4 +-
 eagledns/pom.xml   |2 +-
 .../se/unlogic/standardutils/crypto/Base64.java|6 +-
 .../threads/ThreadPoolTaskGroupHandler.java|7 +-
 .../se/unlogic/standardutils/xml/XMLUtils.java |4 +-
 jboss-modules/build.xml|   54 +-
 jboss-modules/pom.xml  |   33 +-
 .../github/fge/jackson-coreutils/main/module.xml   |   38 +
 .../com/github/fge/json-patch/main/module.xml  |   39 +
 .../modules/javax/json/bind/api/main/module.xml|   37 +
 .../modules/javax/ws/rs/api/main/module.xml|2 +-
 .../microprofile/restclient/main/module.xml|   38 +
 .../modules/org/eclipse/yasson/main/module.xml |   40 +
 .../org/glassfish/javax/json/main/module.xml   |   36 +
 .../jboss/restea

[resteasy] 02/04: Refresh the patch

2018-03-13 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a commit to branch master
in repository resteasy.

commit 02a9aed555d4f07f6050f8c649180af477cbb622
Author: Timo Aaltonen 
Date:   Tue Mar 13 17:50:09 2018 +0200

Refresh the patch
---
 debian/changelog| 8 
 debian/patches/01-ignore-tjws.patch | 4 ++--
 2 files changed, 10 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 1499b47..8bbba06 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+resteasy (3.5.0-1) UNRELEASED; urgency=medium
+
+  * Team upload.
+  * New upstream release.
+- Refresh the patch
+
+ -- Timo Aaltonen   Tue, 13 Mar 2018 17:23:12 +0200
+
 resteasy (3.1.4-1) unstable; urgency=medium
 
   * Team upload.
diff --git a/debian/patches/01-ignore-tjws.patch 
b/debian/patches/01-ignore-tjws.patch
index b8c62a1..73bba7c 100644
--- a/debian/patches/01-ignore-tjws.patch
+++ b/debian/patches/01-ignore-tjws.patch
@@ -3,9 +3,9 @@ Author: Emmanuel Bourg 
 Forwarded: not-needed
 --- a/resteasy-jaxrs/pom.xml
 +++ b/resteasy-jaxrs/pom.xml
-@@ -123,6 +123,18 @@
+@@ -140,6 +140,18 @@
  com.atlassian.maven.plugins
- maven-clover2-plugin
+ clover-maven-plugin
  
 +
 +org.apache.maven.plugins

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

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


[resteasy] annotated tag upstream/3.5.0 created (now 21ce68e)

2018-03-13 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a change to annotated tag upstream/3.5.0
in repository resteasy.

at  21ce68e   (tag)
   tagging  b2ad05b0164303d05d4384977f6dd6996850b5f6 (commit)
  replaces  upstream/3.1.4
 tagged by  Timo Aaltonen
on  Tue Mar 13 17:22:31 2018 +0200

- Log -
Upstream version 3.5.0

Timo Aaltonen (1):
  Imported Upstream version 3.5.0

---

No new revisions were added by this update.

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

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


[resteasy] branch master updated (1aa47c2 -> c503ec3)

2018-03-13 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a change to branch master
in repository resteasy.

  from  1aa47c2   Add libreactive-streams-java to build-depends
   new  c503ec3   Add libgeronimo-validation-1.1-spec-java to build-depends

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 +
 debian/maven.ignoreRules | 1 -
 debian/maven.rules   | 1 +
 4 files changed, 3 insertions(+), 1 deletion(-)

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

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


[resteasy] 01/01: Add libgeronimo-validation-1.1-spec-java to build-depends

2018-03-13 Thread Timo Aaltonen
This is an automated email from the git hooks/post-receive script.

tjaalton pushed a commit to branch master
in repository resteasy.

commit c503ec3685759dab3b31dca23858130c6e282a31
Author: Timo Aaltonen 
Date:   Tue Mar 13 18:59:15 2018 +0200

Add libgeronimo-validation-1.1-spec-java to build-depends
---
 debian/changelog | 1 +
 debian/control   | 1 +
 debian/maven.ignoreRules | 1 -
 debian/maven.rules   | 1 +
 4 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index 7ac4624..623093e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -5,6 +5,7 @@ resteasy (3.5.0-1) UNRELEASED; urgency=medium
 - Refresh the patch
 - Update Maven rules
 - Add libreactive-streams-java to build-depends
+- Add libgeronimo-validation-1.1-spec-java to build-depends
 
  -- Timo Aaltonen   Tue, 13 Mar 2018 17:23:12 +0200
 
diff --git a/debian/control b/debian/control
index 965f980..e8864be 100644
--- a/debian/control
+++ b/debian/control
@@ -8,6 +8,7 @@ Build-Depends-Indep:
  javahelper,
  junit4,
  libcommons-io-java,
+ libgeronimo-validation-1.1-spec-java,
  libhttpclient-java,
  libjackson-json-java,
  libjaxb-java,
diff --git a/debian/maven.ignoreRules b/debian/maven.ignoreRules
index e97bd2b..a12e056 100644
--- a/debian/maven.ignoreRules
+++ b/debian/maven.ignoreRules
@@ -23,7 +23,6 @@ com.atlassian.maven.plugins clover-maven-plugin * * * *
 javax.activation activation * * * *
 javax.el javax.el-api * * * *
 javax.json.bind javax.json.bind-api * * * *
-javax.validation validation-api * * * *
 net.jcip jcip-annotations * * * *
 org.apache.maven.plugins maven-deploy-plugin * * * *
 org.apache.maven.plugins maven-javadoc-plugin * * * *
diff --git a/debian/maven.rules b/debian/maven.rules
index 0f791e7..15ae334 100644
--- a/debian/maven.rules
+++ b/debian/maven.rules
@@ -13,3 +13,4 @@ s/org.jboss.spec.javax.annotation/org.apache.tomcat/ 
s/jboss-annotations-api_1.2
 s/org.jboss.spec.javax.servlet/javax.servlet/ 
s/jboss-servlet-api_3.1_spec/javax.servlet-api/ * s/.*/3.1/ * *
 s/org.jboss.spec.javax.el/javax.el/ s/jboss-el-api_3.0_spec/javax.el-api/ * 
s/.*/3.0/ * *
 s/org.jboss.spec.javax.ws.rs/javax.ws.rs/ 
s/jboss-jaxrs-api_2.1_spec/javax.ws.rs-api/ * s/.*/debian/ * *
+s/javax.validation/org.apache.geronimo.specs/ 
s/validation-api/geronimo-validation_1.1_spec/ * s/.*/debian/ * *

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

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


Bug#892760: antlr3: FTBFS with Java 9

2018-03-13 Thread Tiago Daitx
After reviewing this again I found out that the problem is caused by
the direct calling of javadoc's jar goal - note that this is specific
to cdbs, antlr4 relies on dh and calls the 3 goals "package
javadoc:jar javadoc:aggregate" together, which causes generate-sources
to be run before both javadoc goals.

When direct calling a goal, maven won't have a phase/lifecycle
associated to it, thus it won't activate any other plugins except for
the ones in the command line.

For antlr3 this causes a problem because javadoc:jar won't be able to
add the generated sources paths from antlr to javadoc's option
'sourcepath' as well as fail to properly accounting for the
org.antlr.gunit.swingui.parsers package.

Without the antlr3:antlr goal, javadoc:jar will set sourcepath as
'/build/antlr3/antlr3-3.5.2/gunit/src/main/java',
while if the antlr3:antlr goal is run before javadoc's goals the
sourcepath is set as
'/build/antlr3/antlr3-3.5.2/gunit/src/main/java:/build/antlr3/antlr3-3.5.2/gunit/target/generated-sources/antlr3'

And easy fix is to add generate-sources to the DEB_MAVEN_DOC_TARGET in
debian/rules, as such:
-DEB_MAVEN_DOC_TARGET := javadoc:jar javadoc:aggregate
+DEB_MAVEN_DOC_TARGET := generate-sources javadoc:jar javadoc:aggregate

thanks

-- 
Tiago Stürmer Daitx
Software Engineer
tiago.da...@canonical.com

PGP Key: 4096R/F5B213BE (hkp://keyserver.ubuntu.com)
Fingerprint = 45D0 FE5A 8109 1E91 866E  8CA4 1931 8D5E F5B2 13BE

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

icu4j 60.2-1 MIGRATED to testing

2018-03-13 Thread Debian testing watch
FYI: The status of the icu4j source package
in Debian's testing distribution has changed.

  Previous version: 57.1-2
  Current version:  60.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.


java3d 1.5.2+dfsg-13 MIGRATED to testing

2018-03-13 Thread Debian testing watch
FYI: The status of the java3d source package
in Debian's testing distribution has changed.

  Previous version: 1.5.2+dfsg-11
  Current version:  1.5.2+dfsg-13

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


commons-vfs 2.1-2 MIGRATED to testing

2018-03-13 Thread Debian testing watch
FYI: The status of the commons-vfs source package
in Debian's testing distribution has changed.

  Previous version: 2.1-1
  Current version:  2.1-2

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


jimfs 1.1-5 MIGRATED to testing

2018-03-13 Thread Debian testing watch
FYI: The status of the jimfs source package
in Debian's testing distribution has changed.

  Previous version: 1.1-4
  Current version:  1.1-5

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See 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.


carrotsearch-hppc 0.6.1-5 MIGRATED to testing

2018-03-13 Thread Debian testing watch
FYI: The status of the carrotsearch-hppc source package
in Debian's testing distribution has changed.

  Previous version: 0.6.1-4
  Current version:  0.6.1-5

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See 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.


icu4j-4.4 4.4.2.2-3 MIGRATED to testing

2018-03-13 Thread Debian testing watch
FYI: The status of the icu4j-4.4 source package
in Debian's testing distribution has changed.

  Previous version: 4.4.2.2-2
  Current version:  4.4.2.2-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.


icu4j-4.2 4.2.1.1-6 MIGRATED to testing

2018-03-13 Thread Debian testing watch
FYI: The status of the icu4j-4.2 source package
in Debian's testing distribution has changed.

  Previous version: 4.2.1.1-5
  Current version:  4.2.1.1-6

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


openhft-affinity 2.2-2 MIGRATED to testing

2018-03-13 Thread Debian testing watch
FYI: The status of the openhft-affinity source package
in Debian's testing distribution has changed.

  Previous version: 2.2-1
  Current version:  2.2-2

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


[felix-bundlerepository] 01/02: d/copyright: Use secure URLs

2018-03-13 Thread Kai-Chung Yan
This is an automated email from the git hooks/post-receive script.

seamlik-guest pushed a commit to branch master
in repository felix-bundlerepository.

commit 70bf1edc11086ee0adb81458c0d5a4bd100c059a
Author: 殷啟聰 | Kai-Chung Yan 
Date:   Wed Mar 14 12:54:14 2018 +0800

d/copyright: Use secure URLs
---
 debian/copyright | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/copyright b/debian/copyright
index 1d23c45..cc3f75f 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -1,4 +1,4 @@
-Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
 Upstream-Name: Apache Felix Bundle repository service
 Upstream-Contact: 
http://felix.apache.org/site/apache-felix-osgi-bundle-repository.html
 Source: http://www.apache.org/dist/felix/

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

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

[felix-bundlerepository] 02/02: d/maven.properties: Remove the rules specifying Java target versions. Java 1.5 will no longer be supported soon.

2018-03-13 Thread Kai-Chung Yan
This is an automated email from the git hooks/post-receive script.

seamlik-guest pushed a commit to branch master
in repository felix-bundlerepository.

commit 98094a0c74aec6871a484f3b3c83bdaf3bc8f5df
Author: 殷啟聰 | Kai-Chung Yan 
Date:   Wed Mar 14 13:05:18 2018 +0800

d/maven.properties: Remove the rules specifying Java target versions. Java 
1.5 will no longer be supported soon.
---
 debian/maven.properties | 2 --
 1 file changed, 2 deletions(-)

diff --git a/debian/maven.properties b/debian/maven.properties
index f14f63b..49c1900 100644
--- a/debian/maven.properties
+++ b/debian/maven.properties
@@ -1,4 +1,2 @@
 # Include here properties to pass to Maven during the build.
 maven.test.skip=true
-maven.compiler.source=1.5
-maven.compiler.target=1.5

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

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

[felix-bundlerepository] branch master updated (5247c72 -> 98094a0)

2018-03-13 Thread Kai-Chung Yan
This is an automated email from the git hooks/post-receive script.

seamlik-guest pushed a change to branch master
in repository felix-bundlerepository.

  from  5247c72   d/control: Update to Standards-Version 4.1.3
   new  70bf1ed   d/copyright: Use secure URLs
   new  98094a0   d/maven.properties: Remove the rules specifying Java 
target versions. Java 1.5 will no longer be supported soon.

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/copyright| 2 +-
 debian/maven.properties | 2 --
 2 files changed, 1 insertion(+), 3 deletions(-)

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

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


Processing of felix-bundlerepository_2.0.10-3_source.changes

2018-03-13 Thread Debian FTP Masters
felix-bundlerepository_2.0.10-3_source.changes uploaded successfully to 
localhost
along with the files:
  felix-bundlerepository_2.0.10-3.dsc
  felix-bundlerepository_2.0.10-3.debian.tar.xz
  felix-bundlerepository_2.0.10-3_source.buildinfo

Greetings,

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

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


felix-bundlerepository_2.0.10-3_source.changes ACCEPTED into unstable

2018-03-13 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 14 Mar 2018 13:13:27 +0800
Source: felix-bundlerepository
Binary: libfelix-bundlerepository-java libfelix-bundlerepository-java-doc
Architecture: source
Version: 2.0.10-3
Distribution: unstable
Urgency: medium
Maintainer: Debian Java Maintainers 

Changed-By: Kai-Chung Yan (殷啟聰) 
Description:
 libfelix-bundlerepository-java - Felix OSGi bundle repository service
 libfelix-bundlerepository-java-doc - Documentation for Felix OSGi bundle 
repository service
Changes:
 felix-bundlerepository (2.0.10-3) unstable; urgency=medium
 .
   * Team upload
   * New osgi-compendium-6.patch
   * Build-Depends on headless JDK
   * Update to debhelper compat level 11
   * Update Standards-Version to 4.1.3
   * d/copyright: Use secure URLs
   * d/maven.properties: Remove rules specifying Java target version (1.5)
Checksums-Sha1:
 8d279344321ee38aa6dc420abddbd8233d54523e 2605 
felix-bundlerepository_2.0.10-3.dsc
 c4fa334c12ce1617182f2ae115de40a70ac20e2d 5212 
felix-bundlerepository_2.0.10-3.debian.tar.xz
 faaa85ea7b17b163bfe95afc5e2d82102a6016ae 15820 
felix-bundlerepository_2.0.10-3_source.buildinfo
Checksums-Sha256:
 13e7102eda550faf3eb8cbc4b6ef809f908313c43451499e3652d385a1eeb88d 2605 
felix-bundlerepository_2.0.10-3.dsc
 a8febe2f0a7d0586f1998bdcf976706f0c5c637f59f401363877be51b1e4d2a4 5212 
felix-bundlerepository_2.0.10-3.debian.tar.xz
 bd0fda07ecbf3cf822a5bbbeadea521234d8b6e985a25a5839146d5b3f1d0590 15820 
felix-bundlerepository_2.0.10-3_source.buildinfo
Files:
 fd1a2e032e56a5e168a78fb5e22c8e1d 2605 java optional 
felix-bundlerepository_2.0.10-3.dsc
 90fba84ac59e0d67bf2c272abd48 5212 java optional 
felix-bundlerepository_2.0.10-3.debian.tar.xz
 64e15ac7bed5d81575c0c570b339f0a0 15820 java optional 
felix-bundlerepository_2.0.10-3_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEuIoVOt09lz87H/ea3R+riTf+mCUFAlqor5wACgkQ3R+riTf+
mCVwkhAAiKq3KIOuegFImZje/zkRqw/g0FFUX6iir2bc2oS1DXarehdbX40tKEAL
FCO9pLI/kzWn67mboXncAAFb7uqsYnHy7CvnVpdB/80ZKcZQ/gZ8QD8okQb8mgCY
i1e4KZQ1YDilM7sbcoBZtQj37I/h0nRN3+5RLYq+DJcrJfuPLTQ707wCVnyyTs1t
Gvgmx1twfzpuShQ7NwXGnPsLhKznh/i3YsGV+5sTCmRTjcElcsKsgqT3rJ/TAe2g
6SuGXOW4VJDdT3yezwyRsA81cD3FizeGNSWbLTP4eJ1gWVvqXaAtTm6iTL46Sjnx
Aztl89zvI6ChKBM3RCDnf7LwQWUUDdvXAivmPAOKmKGaHYt2QqtLU+rtmOM6/uPt
bmwWrQbaKlKzPKZz7tlKhc3FVd9VIYHjVF0uqOHqZTfx9pt7AR3xKJ/1MOjMJUI0
DKjmiDQTAyYLHL5dc9JK1bqAHHZltI7gcxrkBNrUneshz6ENxGvTSsji2YZOdtN+
kZi/x9EgpBzTOCF+gfpFNn0eQaonGo7OkjBMjVrUrv41LfmP3fUS24f/Th8z0ONz
cR1Q16y3osC8K87jNO/Hkc3iMK8LBd3kHhqukNYgXt6dKI274IbCOeCd0o4XaZlN
6couajw9IuG5gWrAoOx0LtqZwjAL77L/ChQkXwfh5HbF1QjdTW8=
=a9Bk
-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.

Accepted felix-bundlerepository 2.0.10-3 (source) into unstable

2018-03-13 Thread 殷啟聰
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 14 Mar 2018 13:13:27 +0800
Source: felix-bundlerepository
Binary: libfelix-bundlerepository-java libfelix-bundlerepository-java-doc
Architecture: source
Version: 2.0.10-3
Distribution: unstable
Urgency: medium
Maintainer: Debian Java Maintainers 

Changed-By: Kai-Chung Yan (殷啟聰) 
Description:
 libfelix-bundlerepository-java - Felix OSGi bundle repository service
 libfelix-bundlerepository-java-doc - Documentation for Felix OSGi bundle 
repository service
Changes:
 felix-bundlerepository (2.0.10-3) unstable; urgency=medium
 .
   * Team upload
   * New osgi-compendium-6.patch
   * Build-Depends on headless JDK
   * Update to debhelper compat level 11
   * Update Standards-Version to 4.1.3
   * d/copyright: Use secure URLs
   * d/maven.properties: Remove rules specifying Java target version (1.5)
Checksums-Sha1:
 8d279344321ee38aa6dc420abddbd8233d54523e 2605 
felix-bundlerepository_2.0.10-3.dsc
 c4fa334c12ce1617182f2ae115de40a70ac20e2d 5212 
felix-bundlerepository_2.0.10-3.debian.tar.xz
 faaa85ea7b17b163bfe95afc5e2d82102a6016ae 15820 
felix-bundlerepository_2.0.10-3_source.buildinfo
Checksums-Sha256:
 13e7102eda550faf3eb8cbc4b6ef809f908313c43451499e3652d385a1eeb88d 2605 
felix-bundlerepository_2.0.10-3.dsc
 a8febe2f0a7d0586f1998bdcf976706f0c5c637f59f401363877be51b1e4d2a4 5212 
felix-bundlerepository_2.0.10-3.debian.tar.xz
 bd0fda07ecbf3cf822a5bbbeadea521234d8b6e985a25a5839146d5b3f1d0590 15820 
felix-bundlerepository_2.0.10-3_source.buildinfo
Files:
 fd1a2e032e56a5e168a78fb5e22c8e1d 2605 java optional 
felix-bundlerepository_2.0.10-3.dsc
 90fba84ac59e0d67bf2c272abd48 5212 java optional 
felix-bundlerepository_2.0.10-3.debian.tar.xz
 64e15ac7bed5d81575c0c570b339f0a0 15820 java optional 
felix-bundlerepository_2.0.10-3_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEuIoVOt09lz87H/ea3R+riTf+mCUFAlqor5wACgkQ3R+riTf+
mCVwkhAAiKq3KIOuegFImZje/zkRqw/g0FFUX6iir2bc2oS1DXarehdbX40tKEAL
FCO9pLI/kzWn67mboXncAAFb7uqsYnHy7CvnVpdB/80ZKcZQ/gZ8QD8okQb8mgCY
i1e4KZQ1YDilM7sbcoBZtQj37I/h0nRN3+5RLYq+DJcrJfuPLTQ707wCVnyyTs1t
Gvgmx1twfzpuShQ7NwXGnPsLhKznh/i3YsGV+5sTCmRTjcElcsKsgqT3rJ/TAe2g
6SuGXOW4VJDdT3yezwyRsA81cD3FizeGNSWbLTP4eJ1gWVvqXaAtTm6iTL46Sjnx
Aztl89zvI6ChKBM3RCDnf7LwQWUUDdvXAivmPAOKmKGaHYt2QqtLU+rtmOM6/uPt
bmwWrQbaKlKzPKZz7tlKhc3FVd9VIYHjVF0uqOHqZTfx9pt7AR3xKJ/1MOjMJUI0
DKjmiDQTAyYLHL5dc9JK1bqAHHZltI7gcxrkBNrUneshz6ENxGvTSsji2YZOdtN+
kZi/x9EgpBzTOCF+gfpFNn0eQaonGo7OkjBMjVrUrv41LfmP3fUS24f/Th8z0ONz
cR1Q16y3osC8K87jNO/Hkc3iMK8LBd3kHhqukNYgXt6dKI274IbCOeCd0o4XaZlN
6couajw9IuG5gWrAoOx0LtqZwjAL77L/ChQkXwfh5HbF1QjdTW8=
=a9Bk
-END PGP SIGNATURE-


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

[felix-bundlerepository] annotated tag debian/2.0.10-3 created (now af12679)

2018-03-13 Thread Kai-Chung Yan
This is an automated email from the git hooks/post-receive script.

seamlik-guest pushed a change to annotated tag debian/2.0.10-3
in repository felix-bundlerepository.

at  af12679   (tag)
   tagging  dde9e1d1bf3f2c6b40ab848a8d333cb326b5d66d (commit)
  replaces  debian/2.0.10-2
 tagged by  殷啟聰 | Kai-Chung Yan
on  Wed Mar 14 13:40:46 2018 +0800

- Log -
felix-bundlerepository Debian release 2.0.10-3
-BEGIN PGP SIGNATURE-

iQIzBAABCgAdFiEEuIoVOt09lz87H/ea3R+riTf+mCUFAlqotd4ACgkQ3R+riTf+
mCXB9Q/7BM85tHIDFbK7JuIrY+4sOm4M/7Vok4zB1CFQNo3YZQ6w4kI5WdFJpixk
nKDZL8FOiMIDsvOTqT/9a3sxgUxyyeJEkWnDU/4aQ4YCuxVqj3gVMiLaNj/aBGL1
7Y7lZ40a7EiCWsSIZTXuywIaqEnqiZAQd921Dv7Cy83xzCEg6syYFlnu87Vkn9Ts
OGnJn2Hpr8JQJhJpBAhZmHClglUBOUh/6/Mfv8QP/HSJySYzVC+fTOpwdgdzMRao
rsDFrORwPZ7rp3OXiEjCxEPN9VFSlg72asrrRjfToDaXZv7u7pE3lBEBvRIyFfBB
qulovIww15uoDBq7ZIcBk+UwQL783I8tluW3mXppQpsNZgNU1h2OLAWmUvQFFKqo
eLqDgmFArrVxchModvrhdm/gv3YaDnb8DzjBOlNtnqZKHGBJIE4XZU76N8knsNao
z3y+hOndjfksD0wECwu1AoZccEO5O9pXLjSZQS8nTAq9FlUcQAj6BC5GcvSSHkgj
ZL0Crfm/oG0U0XlRRx2oEzhGzWUjFmqCh2+xw+nmZOrpYY8v1HLRUkewdhtJpHBG
zR4cIIjomTdhA+FvmKXFGc8feQeXLjcbAngQE2Fd7CECbL6ypfgOrgGDJAivHBmk
E8VCMciqL6731L3++pqKlX2rkkU4yKsYQbhfv31KeTgjBcKN3l8=
=XDf5
-END PGP SIGNATURE-

殷啟聰 | Kai-Chung Yan (7):
  Compatibility with OSGI Compendium 6: Throwing exception from the new 
methods
  d/control: Build-Depends on headless JDK
  Update to debhelper compat 11
  d/control: Update to Standards-Version 4.1.3
  d/copyright: Use secure URLs
  d/maven.properties: Remove the rules specifying Java target versions. 
Java 1.5 will no longer be supported soon.
  Upload to unstable

---

This annotated tag includes the following new commits:

   new  dde9e1d   Upload to unstable

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/felix-bundlerepository.git

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

[felix-bundlerepository] branch master updated (98094a0 -> dde9e1d)

2018-03-13 Thread Kai-Chung Yan
This is an automated email from the git hooks/post-receive script.

seamlik-guest pushed a change to branch master
in repository felix-bundlerepository.

  from  98094a0   d/maven.properties: Remove the rules specifying Java 
target versions. Java 1.5 will no longer be supported soon.
   new  dde9e1d   Upload to unstable

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 | 12 
 1 file changed, 12 insertions(+)

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

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


[felix-bundlerepository] 01/01: Upload to unstable

2018-03-13 Thread Kai-Chung Yan
This is an automated email from the git hooks/post-receive script.

seamlik-guest pushed a commit to branch master
in repository felix-bundlerepository.

commit dde9e1d1bf3f2c6b40ab848a8d333cb326b5d66d
Author: 殷啟聰 | Kai-Chung Yan 
Date:   Wed Mar 14 13:14:49 2018 +0800

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

diff --git a/debian/changelog b/debian/changelog
index 159fa02..aae3195 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,15 @@
+felix-bundlerepository (2.0.10-3) unstable; urgency=medium
+
+  * Team upload
+  * New osgi-compendium-6.patch
+  * Build-Depends on headless JDK
+  * Update to debhelper compat level 11
+  * Update Standards-Version to 4.1.3
+  * d/copyright: Use secure URLs
+  * d/maven.properties: Remove rules specifying Java target version (1.5)
+
+ -- Kai-Chung Yan (殷啟聰)   Wed, 14 Mar 2018 13:13:27 +0800
+
 felix-bundlerepository (2.0.10-2) unstable; urgency=medium
 
   * Team upload.

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

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

Processing of jboss-xnio_3.6.2-2_source.changes

2018-03-13 Thread Debian FTP Masters
jboss-xnio_3.6.2-2_source.changes uploaded successfully to localhost
along with the files:
  jboss-xnio_3.6.2-2.dsc
  jboss-xnio_3.6.2-2.debian.tar.xz
  jboss-xnio_3.6.2-2_source.buildinfo

Greetings,

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

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


Accepted jboss-xnio 3.6.2-2 (source) into unstable

2018-03-13 Thread 殷啟聰
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 14 Mar 2018 13:42:49 +0800
Source: jboss-xnio
Binary: libjboss-xnio-java libjboss-xnio-java-doc
Architecture: source
Version: 3.6.2-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Java Maintainers 

Changed-By: Kai-Chung Yan (殷啟聰) 
Description:
 libjboss-xnio-java - simplified low-level I/O layer for NIO
 libjboss-xnio-java-doc - Documentation for jboss-xnio
Changes:
 jboss-xnio (3.6.2-2) unstable; urgency=medium
 .
   * Build-Depends on headless JDK
   * New maven-bundle-plugin-rules.patch: Fix FTBFS introduced by
 maven-bundle-plugin 3.5.0
Checksums-Sha1:
 b9702b5f85471b02be51591c14648769ab0453a2 2355 jboss-xnio_3.6.2-2.dsc
 525447b7dd759e55f9b45c0d4918f32a3c064fc3 4396 jboss-xnio_3.6.2-2.debian.tar.xz
 ec05724c436b82ebcb175687e8203413f289c7ac 15892 
jboss-xnio_3.6.2-2_source.buildinfo
Checksums-Sha256:
 e8084636fced8ab54efe5b54bec91fcb80262d57f0b2038c93f61af4390b7b2c 2355 
jboss-xnio_3.6.2-2.dsc
 1991f67462fb4e9e24ec89ccbc74909d0c1a8dc1bc77e76f1a908d688e17998f 4396 
jboss-xnio_3.6.2-2.debian.tar.xz
 c8fa3b7495e9fee7d96797d1c5c3252dbc2aad978d4d06ba00cf72428d9ae55b 15892 
jboss-xnio_3.6.2-2_source.buildinfo
Files:
 232297e0bf8c9d46571e0ef9085faa99 2355 java optional jboss-xnio_3.6.2-2.dsc
 1b4d0c954ba6d6c9450886eaef0d7507 4396 java optional 
jboss-xnio_3.6.2-2.debian.tar.xz
 288c64daf76fc4ec31b4cf607a3794e5 15892 java optional 
jboss-xnio_3.6.2-2_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEuIoVOt09lz87H/ea3R+riTf+mCUFAlqotsIACgkQ3R+riTf+
mCXBtBAAtIgUdt8miEnYHmpoMWI7gsQwLevEcKoLUpBFGpsv7EKeFrO4tP8dWVS9
jigwtQ62sZQ4Os6MnsUE5J5XybYV5kFLAzKvnhS/5fhZVv3rPyUV9ppgB8iImUdV
I9fYO1NbTXbXU8Alkl0BLMtThYukbZa+ojSCe0Cmsm2QMSc4T15qpuOsBFSvIH3Q
vcUvuGe5ep6S6d6PpEJSOUUi1mXW7sZaMWPDQGYqEvWv2cZgjluG70eJ3/qMTBBZ
bi54UFTSeLoLdXAfbbtR3DWnZIKz/qNkYNdugw+NvTkLBkmHdFrPrLky6VzkMWdr
pu0iae2po193nz0gs+5hkE4cSJCQTldZwX9Bw9h9G77vFi75Y/X+yU0qHCWnCVj/
lsLo0hEOhl6ziNA8XliyxENjY0vgvrrki0pT1uzGJJIBJyu7QqSPjWJwe08Pq4EN
iN+QNaQm6aQu2afK57XtF/eyhMkO2Ku2fSgN5cTdwmYj6kfZ29ZuYKHwLI0AXgo0
roek9Xy75YwoHvtwQJBnYwFbCGxEvGak+lZWMvWtUA21sdD+mhhuRN2kn9aj1zhk
6vIqKkslxRWOmLuY8bs2+R1u/yFXA/TBL/LGwrI2CKnMWySzbafFrWtRbsRFkZTa
H65KeayoDCQsVHPCUhOW3nTsgBbc8TBv3BtjUxjCTh8FrUw3haQ=
=pVCr
-END PGP SIGNATURE-


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

jboss-xnio_3.6.2-2_source.changes ACCEPTED into unstable

2018-03-13 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 14 Mar 2018 13:42:49 +0800
Source: jboss-xnio
Binary: libjboss-xnio-java libjboss-xnio-java-doc
Architecture: source
Version: 3.6.2-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Java Maintainers 

Changed-By: Kai-Chung Yan (殷啟聰) 
Description:
 libjboss-xnio-java - simplified low-level I/O layer for NIO
 libjboss-xnio-java-doc - Documentation for jboss-xnio
Changes:
 jboss-xnio (3.6.2-2) unstable; urgency=medium
 .
   * Build-Depends on headless JDK
   * New maven-bundle-plugin-rules.patch: Fix FTBFS introduced by
 maven-bundle-plugin 3.5.0
Checksums-Sha1:
 b9702b5f85471b02be51591c14648769ab0453a2 2355 jboss-xnio_3.6.2-2.dsc
 525447b7dd759e55f9b45c0d4918f32a3c064fc3 4396 jboss-xnio_3.6.2-2.debian.tar.xz
 ec05724c436b82ebcb175687e8203413f289c7ac 15892 
jboss-xnio_3.6.2-2_source.buildinfo
Checksums-Sha256:
 e8084636fced8ab54efe5b54bec91fcb80262d57f0b2038c93f61af4390b7b2c 2355 
jboss-xnio_3.6.2-2.dsc
 1991f67462fb4e9e24ec89ccbc74909d0c1a8dc1bc77e76f1a908d688e17998f 4396 
jboss-xnio_3.6.2-2.debian.tar.xz
 c8fa3b7495e9fee7d96797d1c5c3252dbc2aad978d4d06ba00cf72428d9ae55b 15892 
jboss-xnio_3.6.2-2_source.buildinfo
Files:
 232297e0bf8c9d46571e0ef9085faa99 2355 java optional jboss-xnio_3.6.2-2.dsc
 1b4d0c954ba6d6c9450886eaef0d7507 4396 java optional 
jboss-xnio_3.6.2-2.debian.tar.xz
 288c64daf76fc4ec31b4cf607a3794e5 15892 java optional 
jboss-xnio_3.6.2-2_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEuIoVOt09lz87H/ea3R+riTf+mCUFAlqotsIACgkQ3R+riTf+
mCXBtBAAtIgUdt8miEnYHmpoMWI7gsQwLevEcKoLUpBFGpsv7EKeFrO4tP8dWVS9
jigwtQ62sZQ4Os6MnsUE5J5XybYV5kFLAzKvnhS/5fhZVv3rPyUV9ppgB8iImUdV
I9fYO1NbTXbXU8Alkl0BLMtThYukbZa+ojSCe0Cmsm2QMSc4T15qpuOsBFSvIH3Q
vcUvuGe5ep6S6d6PpEJSOUUi1mXW7sZaMWPDQGYqEvWv2cZgjluG70eJ3/qMTBBZ
bi54UFTSeLoLdXAfbbtR3DWnZIKz/qNkYNdugw+NvTkLBkmHdFrPrLky6VzkMWdr
pu0iae2po193nz0gs+5hkE4cSJCQTldZwX9Bw9h9G77vFi75Y/X+yU0qHCWnCVj/
lsLo0hEOhl6ziNA8XliyxENjY0vgvrrki0pT1uzGJJIBJyu7QqSPjWJwe08Pq4EN
iN+QNaQm6aQu2afK57XtF/eyhMkO2Ku2fSgN5cTdwmYj6kfZ29ZuYKHwLI0AXgo0
roek9Xy75YwoHvtwQJBnYwFbCGxEvGak+lZWMvWtUA21sdD+mhhuRN2kn9aj1zhk
6vIqKkslxRWOmLuY8bs2+R1u/yFXA/TBL/LGwrI2CKnMWySzbafFrWtRbsRFkZTa
H65KeayoDCQsVHPCUhOW3nTsgBbc8TBv3BtjUxjCTh8FrUw3haQ=
=pVCr
-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.

[jboss-xnio] branch master updated (8b4322e -> 5e3f21a)

2018-03-13 Thread Kai-Chung Yan
This is an automated email from the git hooks/post-receive script.

seamlik-guest pushed a change to branch master
in repository jboss-xnio.

  from  8b4322e   New maven-bundle-plugin-rules.patch to fix FTBFS 
introduced by maven-bundle-plugin 3.5.0
   new  5e3f21a   Upload to unstable

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 | 8 
 1 file changed, 8 insertions(+)

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

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


[jboss-xnio] annotated tag debian/3.6.2-2 created (now 7988a33)

2018-03-13 Thread Kai-Chung Yan
This is an automated email from the git hooks/post-receive script.

seamlik-guest pushed a change to annotated tag debian/3.6.2-2
in repository jboss-xnio.

at  7988a33   (tag)
   tagging  5e3f21a86dd0aaa315a14e16f67e967311203c58 (commit)
  replaces  debian/3.6.2-1
 tagged by  殷啟聰 | Kai-Chung Yan
on  Wed Mar 14 14:07:45 2018 +0800

- Log -
jboss-xnio Debian release 3.6.2-2
-BEGIN PGP SIGNATURE-

iQIzBAABCgAdFiEEuIoVOt09lz87H/ea3R+riTf+mCUFAlqovDEACgkQ3R+riTf+
mCX/8w//ZtSHN9CBVgcsflv0KKUB7bmmMuvR8SE0c0V6tO0k/HksmIJfIN/xnBBm
UQNc5elMA+zd5cSvtfQOm5Z1GNfPNqG/2DymbJalWboShMbjEVOpKliA134a2BEj
rnCZUM2eWDOHEBomVItfD3O+ZBGNDZQelk2/YXxQEMpQszupxi8uieLHHqkDox0e
IOaeOnyaBBnjcce6/3VsbE7dgxQFUvO4W7Sp5487UNAjTXe/wDy400q5kjlytQru
D0ZaEeyo/g93xW7kS0RMKwU2VV8WDLCMu5rZe2gQPGyURZ/5PHMXDL24Z5DEoLej
Pkwv0CUrgU3ag0E2Mb058xVYjHPolAusCXXa1KqOOukiZ79flPOyjQHNh1HOXZys
1ZmUVzkTJdxbdl9PLetKjquBZ3qqxWT3Pw6AYbMNtOtCHsYcEPsF7bVBnOEJ2VhN
V5MdrmqVS8seVo5496bhwe/aUbavklA2PezmbMVjFFXbFcqJ4OY4k9Tm/+DJYSLg
XyZTA8jBHoTpLasb8xgRkgPcfRG+U94qbKgRSF1dJY15fy5rHlUH19idyQk4r5aP
PerwEGDqUbtsF8hX5sEEdPb8EXjtS1jLpUpYUFgKSUBJVX3F05SUhQnlhf9TU3h8
ayEfOhOltJFYXcohfFuxn23l06B42NQgoENMg6F5LL47ILbM38s=
=ueun
-END PGP SIGNATURE-

殷啟聰 | Kai-Chung Yan (3):
  d/control: Build-Depends on headless JDK
  New maven-bundle-plugin-rules.patch to fix FTBFS introduced by 
maven-bundle-plugin 3.5.0
  Upload to unstable

---

This annotated tag includes the following new commits:

   new  5e3f21a   Upload to unstable

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/jboss-xnio.git

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

[jboss-xnio] 01/01: Upload to unstable

2018-03-13 Thread Kai-Chung Yan
This is an automated email from the git hooks/post-receive script.

seamlik-guest pushed a commit to branch master
in repository jboss-xnio.

commit 5e3f21a86dd0aaa315a14e16f67e967311203c58
Author: 殷啟聰 | Kai-Chung Yan 
Date:   Wed Mar 14 13:46:58 2018 +0800

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

diff --git a/debian/changelog b/debian/changelog
index a2bbe42..8167a83 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+jboss-xnio (3.6.2-2) unstable; urgency=medium
+
+  * Build-Depends on headless JDK
+  * New maven-bundle-plugin-rules.patch: Fix FTBFS introduced by
+maven-bundle-plugin 3.5.0
+
+ -- Kai-Chung Yan (殷啟聰)   Wed, 14 Mar 2018 13:42:49 +0800
+
 jboss-xnio (3.6.2-1) unstable; urgency=medium
 
   * New upstream version 3.6.2.

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

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

[bnd] branch master updated (f6e339e -> 0ac9239)

2018-03-13 Thread Kai-Chung Yan
This is an automated email from the git hooks/post-receive script.

seamlik-guest pushed a change to branch master
in repository bnd.

  from  f6e339e   d/rules: Remove a mistakenly duplicated rule
   new  0ac9239   Rename all JAR names installed in /usr/share/java to 
comply with the policy

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/bnd.links |  8 +++-
 debian/bnd.poms  | 32 
 debian/bnd.sh|  2 +-
 3 files changed, 20 insertions(+), 22 deletions(-)

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

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


[bnd] 01/01: Rename all JAR names installed in /usr/share/java to comply with the policy

2018-03-13 Thread Kai-Chung Yan
This is an automated email from the git hooks/post-receive script.

seamlik-guest pushed a commit to branch master
in repository bnd.

commit 0ac9239d858e95f4830e81bfc15f997e7c117ad2
Author: 殷啟聰 | Kai-Chung Yan 
Date:   Wed Mar 14 14:10:28 2018 +0800

Rename all JAR names installed in /usr/share/java to comply with the policy
---
 debian/bnd.links |  8 +++-
 debian/bnd.poms  | 32 
 debian/bnd.sh|  2 +-
 3 files changed, 20 insertions(+), 22 deletions(-)

diff --git a/debian/bnd.links b/debian/bnd.links
index 3c86ca1..e0dbc0a 100644
--- a/debian/bnd.links
+++ b/debian/bnd.links
@@ -1,7 +1,5 @@
 # Transitioning from 2.x to 3.x
 
-usr/share/java/biz.aQute.bnd.annotation.jar usr/share/java/bnd.annotation.jar
-usr/share/java/biz.aQute.bnd.jarusr/share/java/bnd.jar
-usr/share/java/biz.aQute.bndlib.jar usr/share/java/bndlib.jar
-usr/share/java/biz.aQute.junit.jar  usr/share/java/bnd.junit.jar
-usr/share/java/biz.aQute.launcher.jar   usr/share/java/bndlib.launcher.jar
\ No newline at end of file
+usr/share/java/bnd-annotation.jar usr/share/java/bnd.annotation.jar
+usr/share/java/bnd-junit.jar  usr/share/java/bnd.junit.jar
+usr/share/java/bnd-launcher.jar   usr/share/java/bndlib.launcher.jar
\ No newline at end of file
diff --git a/debian/bnd.poms b/debian/bnd.poms
index e7a2a1a..6e72c13 100644
--- a/debian/bnd.poms
+++ b/debian/bnd.poms
@@ -1,16 +1,16 @@
-debian/.m2/repository/biz/aQute/bnd/aQute.libg/3.5.0/aQute.libg-3.5.0.pom  
   --java-lib 
--artifact=debian/.m2/repository/biz/aQute/bnd/aQute.libg/3.5.0/aQute.libg-3.5.0.jar
-debian/.m2/repository/biz/aQute/bnd/biz.aQute.bnd.annotation/3.5.0/biz.aQute.bnd.annotation-3.5.0.pom
 --java-lib 
--artifact=debian/.m2/repository/biz/aQute/bnd/biz.aQute.bnd.annotation/3.5.0/biz.aQute.bnd.annotation-3.5.0.jar
 
--relocate=biz.aQute:annotation:debian,biz.aQute.bnd:annotation:debian
-debian/.m2/repository/biz/aQute/bnd/biz.aQute.bnd/3.5.0/biz.aQute.bnd-3.5.0.pom
   --java-lib 
--artifact=debian/.m2/repository/biz/aQute/bnd/biz.aQute.bnd/3.5.0/biz.aQute.bnd-3.5.0.jar
   
--relocate=biz.aQute:bnd:debian,biz.aQute.bnd:bnd:debian
-debian/.m2/repository/biz/aQute/bnd/biz.aQute.bndlib/3.5.0/biz.aQute.bndlib-3.5.0.pom
 --java-lib 
--artifact=debian/.m2/repository/biz/aQute/bnd/biz.aQute.bndlib/3.5.0/biz.aQute.bndlib-3.5.0.jar
 
--relocate=biz.aQute:bndlib:debian,biz.aQute.bnd:bndlib:debian
-debian/.m2/repository/biz/aQute/bnd/biz.aQute.junit/3.5.0/biz.aQute.junit-3.5.0.pom
   --java-lib 
--artifact=debian/.m2/repository/biz/aQute/bnd/biz.aQute.junit/3.5.0/biz.aQute.junit-3.5.0.jar
-debian/.m2/repository/biz/aQute/bnd/biz.aQute.launcher/3.5.0/biz.aQute.launcher-3.5.0.pom
 --java-lib 
--artifact=debian/.m2/repository/biz/aQute/bnd/biz.aQute.launcher/3.5.0/biz.aQute.launcher-3.5.0.jar
-debian/.m2/repository/biz/aQute/bnd/biz.aQute.remote.agent/3.5.0/biz.aQute.remote.agent-3.5.0.pom
 --java-lib 
--artifact=debian/.m2/repository/biz/aQute/bnd/biz.aQute.remote.agent/3.5.0/biz.aQute.remote.agent-3.5.0.jar
-debian/.m2/repository/biz/aQute/bnd/biz.aQute.remote.api/3.5.0/biz.aQute.remote.api-3.5.0.pom
 --java-lib 
--artifact=debian/.m2/repository/biz/aQute/bnd/biz.aQute.remote.api/3.5.0/biz.aQute.remote.api-3.5.0.jar
-debian/.m2/repository/biz/aQute/bnd/biz.aQute.remote.gc/3.5.0/biz.aQute.remote.gc-3.5.0.pom
   --java-lib 
--artifact=debian/.m2/repository/biz/aQute/bnd/biz.aQute.remote.gc/3.5.0/biz.aQute.remote.gc-3.5.0.jar
-debian/.m2/repository/biz/aQute/bnd/biz.aQute.remote.launcher/3.5.0/biz.aQute.remote.launcher-3.5.0.pom
   --java-lib 
--artifact=debian/.m2/repository/biz/aQute/bnd/biz.aQute.remote.launcher/3.5.0/biz.aQute.remote.launcher-3.5.0.jar
-debian/.m2/repository/biz/aQute/bnd/biz.aQute.remote.main/3.5.0/biz.aQute.remote.main-3.5.0.pom
   --java-lib 
--artifact=debian/.m2/repository/biz/aQute/bnd/biz.aQute.remote.main/3.5.0/biz.aQute.remote.main-3.5.0.jar
-debian/.m2/repository/biz/aQute/bnd/biz.aQute.repository/3.5.0/biz.aQute.repository-3.5.0.pom
 --java-lib 
--artifact=debian/.m2/repository/biz/aQute/bnd/biz.aQute.repository/3.5.0/biz.aQute.repository-3.5.0.jar
-debian/.m2/repository/biz/aQute/bnd/biz.aQute.resolve/3.5.0/biz.aQute.resolve-3.5.0.pom
   --java-lib 
--artifact=debian/.m2/repository/biz/aQute/bnd/biz.aQute.resolve/3.5.0/biz.aQute.resolve-3.5.0.jar
-debian/.m2/repository/biz/aQute/bnd/biz.aQute.tester/3.5.0/biz.aQute.tester-3.5.0.pom
 --java-lib 
--artifact=debian/.m2/repo