[Git][java-team/icedtea-web][master] Use SOURCE_DATE_EPOCH for the timestamps in the documentation to make the package reproducible

2019-09-11 Thread Emmanuel Bourg


Emmanuel Bourg pushed to branch master at Debian Java Maintainers / icedtea-web


Commits:
153b2b11 by Emmanuel Bourg at 2019-09-11T22:15:31Z
Use SOURCE_DATE_EPOCH for the timestamps in the documentation to make the 
package reproducible

- - - - -


3 changed files:

- debian/changelog
- + debian/patches/reproducible-documentation.patch
- debian/patches/series


Changes:

=
debian/changelog
=
@@ -1,3 +1,11 @@
+icedtea-web (1.8.3-2) unstable; urgency=medium
+
+  * Team upload.
+  * Use SOURCE_DATE_EPOCH for the timestamps in the documentation to make
+the package reproducible
+
+ -- Emmanuel Bourg   Thu, 12 Sep 2019 00:15:16 +0200
+
 icedtea-web (1.8.3-1) unstable; urgency=medium
 
   * Team upload.


=
debian/patches/reproducible-documentation.patch
=
@@ -0,0 +1,46 @@
+Description: Use SOURCE_DATE_EPOCH for the timestamps in the documentation to 
make the build reproducible
+Author: Emmanuel Bourg 
+Forwarded: no
+--- 
a/netx/net/sourceforge/jnlp/util/docprovider/formatters/formatters/ManFormatter.java
 
b/netx/net/sourceforge/jnlp/util/docprovider/formatters/formatters/ManFormatter.java
+@@ -108,7 +108,7 @@
+ 
+ @Override
+ public String getHeaders(String id, String encoding) {
+-return ".TH " + id + " 1 \"" + getManPageDate(true) + "\"" + " \"" + 
TextsProvider.ITW + " " + getVersion() + "\"" + 
PlainTextFormatter.getLineSeparator();
++return ".TH " + id + " 1 \"" + getManPageDate(false) + "\"" + " \"" + 
TextsProvider.ITW + " " + getVersion() + "\"" + 
PlainTextFormatter.getLineSeparator();
+ }
+ 
+ @Override
+@@ -117,8 +117,8 @@
+ }
+ 
+ private String getManPageDate(boolean localize) {
+-Date now = new Date();
+-Calendar c = Calendar.getInstance();
++Date now = System.getenv("SOURCE_DATE_EPOCH") != null ? new Date(1000 
* Long.parseLong(System.getenv("SOURCE_DATE_EPOCH"))) : new Date();
++Calendar c = 
Calendar.getInstance(java.util.TimeZone.getTimeZone("UTC"));
+ c.setTime(now);
+ int day = c.get(Calendar.DAY_OF_MONTH);
+ int year = c.get(Calendar.YEAR);
+--- 
a/netx/net/sourceforge/jnlp/util/docprovider/formatters/formatters/HtmlFormatter.java
 
b/netx/net/sourceforge/jnlp/util/docprovider/formatters/formatters/HtmlFormatter.java
+@@ -95,6 +95,9 @@
+ if (includeXmlHeader) {
+ xml = "\n";
+ }
++Date now = System.getenv("SOURCE_DATE_EPOCH") != null ? new Date(1000 
* Long.parseLong(System.getenv("SOURCE_DATE_EPOCH"))) : new Date();
++java.text.DateFormat fmt = new java.text.SimpleDateFormat("-MM-dd 
HH:mm:ss");
++fmt.setTimeZone(java.util.TimeZone.getTimeZone("UTC"));
+ return xml + "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd\;>\n"
+ + "http://www.w3.org/1999/xhtml\; 
xml:lang=\"en\">\n"
+ + "  \n"
+@@ -102,7 +105,7 @@
+ + "\n"
+ + "  \n"
+ + "  \n"
+-+ "" + id + ": " + getVersion() + ", 
" + JNLPRuntime.getLocalisedTimeStamp(new Date()) + "";
+++ "" + id + ": " + getVersion() + ", 
" + fmt.format(now) + "";
+ }
+ 
+ @Override


=
debian/patches/series
=
@@ -3,3 +3,4 @@ javaws_change_java_policy.diff
 doc-english-only.diff
 disable-applet-support.diff
 java11-compatibility.diff
+reproducible-documentation.patch



View it on GitLab: 
https://salsa.debian.org/java-team/icedtea-web/commit/153b2b114c53cfe8ee05a2966f3cd05cf30ba635

-- 
View it on GitLab: 
https://salsa.debian.org/java-team/icedtea-web/commit/153b2b114c53cfe8ee05a2966f3cd05cf30ba635
You're receiving this email because of your account on salsa.debian.org.


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

[Git][java-team/tuxguitar] Pushed new tag debian/1.2-24

2019-09-11 Thread Emmanuel Bourg


Emmanuel Bourg pushed new tag debian/1.2-24 at Debian Java Maintainers / 
tuxguitar

-- 
View it on GitLab: 
https://salsa.debian.org/java-team/tuxguitar/tree/debian/1.2-24
You're receiving this email because of your account on salsa.debian.org.


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

[Git][java-team/piespy] Pushed new tag debian/0.4.0-5

2019-09-11 Thread Emmanuel Bourg


Emmanuel Bourg pushed new tag debian/0.4.0-5 at Debian Java Maintainers / piespy

-- 
View it on GitLab: https://salsa.debian.org/java-team/piespy/tree/debian/0.4.0-5
You're receiving this email because of your account on salsa.debian.org.


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

[Git][java-team/streamex] Pushed new tag debian/0.6.7-1

2019-09-11 Thread Emmanuel Bourg


Emmanuel Bourg pushed new tag debian/0.6.7-1 at Debian Java Maintainers / 
streamex

-- 
View it on GitLab: 
https://salsa.debian.org/java-team/streamex/tree/debian/0.6.7-1
You're receiving this email because of your account on salsa.debian.org.


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

[Git][java-team/msgpack-java] Pushed new branch master

2019-09-11 Thread Andrius Merkys


Andrius Merkys pushed new branch master at Debian Java Maintainers / 
msgpack-java

-- 
View it on GitLab: https://salsa.debian.org/java-team/msgpack-java/tree/master
You're receiving this email because of your account on salsa.debian.org.


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

[Git][java-team/msgpack-java] Pushed new tag upstream/0.8.17

2019-09-11 Thread Andrius Merkys


Andrius Merkys pushed new tag upstream/0.8.17 at Debian Java Maintainers / 
msgpack-java

-- 
View it on GitLab: 
https://salsa.debian.org/java-team/msgpack-java/tree/upstream/0.8.17
You're receiving this email because of your account on salsa.debian.org.


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

[Git][java-team/msgpack-java] Pushed new branch upstream

2019-09-11 Thread Andrius Merkys


Andrius Merkys pushed new branch upstream at Debian Java Maintainers / 
msgpack-java

-- 
View it on GitLab: https://salsa.debian.org/java-team/msgpack-java/tree/upstream
You're receiving this email because of your account on salsa.debian.org.


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

[Git][java-team/msgpack-java] Pushed new branch pristine-tar

2019-09-11 Thread Andrius Merkys


Andrius Merkys pushed new branch pristine-tar at Debian Java Maintainers / 
msgpack-java

-- 
View it on GitLab: 
https://salsa.debian.org/java-team/msgpack-java/tree/pristine-tar
You're receiving this email because of your account on salsa.debian.org.


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

[Git][java-team/maven-compiler-plugin][master] Backported the fix for MCOMPILER-379

2019-09-11 Thread Emmanuel Bourg


Emmanuel Bourg pushed to branch master at Debian Java Maintainers / 
maven-compiler-plugin


Commits:
cbf93612 by Emmanuel Bourg at 2019-09-11T10:09:58Z
Backported the fix for MCOMPILER-379

- - - - -


3 changed files:

- debian/changelog
- + debian/patches/MCOMPILER-379.patch
- debian/patches/series


Changes:

=
debian/changelog
=
@@ -1,3 +1,11 @@
+maven-compiler-plugin (3.8.1-4) unstable; urgency=medium
+
+  * Team upload.
+  * Backported the fix for MCOMPILER-379 (fixes the compilation errors
+'basedir .../test-generated-sources/annotations does not exist')
+
+ -- Emmanuel Bourg   Wed, 11 Sep 2019 12:04:45 +0200
+
 maven-compiler-plugin (3.8.1-3) unstable; urgency=medium
 
   * Team upload.


=
debian/patches/MCOMPILER-379.patch
=
@@ -0,0 +1,18 @@
+From 6fd3a46885edd81e62ae62cfc798c1e1b903e170 Mon Sep 17 00:00:00 2001
+From: Karl Heinz Marbaise 
+Date: Sun, 28 Apr 2019 14:06:25 +0200
+Subject: [PATCH] [MCOMPILER-379] - Fatal error compiling: basedir 
.../target/generated-sources/annotations does not exist
+--- a/src/main/java/org/apache/maven/plugin/compiler/AbstractCompilerMojo.java
 b/src/main/java/org/apache/maven/plugin/compiler/AbstractCompilerMojo.java
+@@ -655,6 +655,11 @@
+ 
+ if ( generatedSourcesDirectory != null )
+ {
++if ( !generatedSourcesDirectory.exists() )
++{
++generatedSourcesDirectory.mkdirs();
++}
++
+ String generatedSourcesPath = 
generatedSourcesDirectory.getAbsolutePath();
+ 
+ compileSourceRoots.add( generatedSourcesPath );


=
debian/patches/series
=
@@ -1,2 +1,3 @@
 01-fix-wrong-junit-path.patch
 02-reproducible-jpms-args.patch
+MCOMPILER-379.patch



View it on GitLab: 
https://salsa.debian.org/java-team/maven-compiler-plugin/commit/cbf9361260e6f5a46d8e13c1a35e376061ff7ec7

-- 
View it on GitLab: 
https://salsa.debian.org/java-team/maven-compiler-plugin/commit/cbf9361260e6f5a46d8e13c1a35e376061ff7ec7
You're receiving this email because of your account on salsa.debian.org.


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

[Git][java-team/maven-compiler-plugin] Pushed new tag debian/3.8.1-4

2019-09-11 Thread Emmanuel Bourg


Emmanuel Bourg pushed new tag debian/3.8.1-4 at Debian Java Maintainers / 
maven-compiler-plugin

-- 
View it on GitLab: 
https://salsa.debian.org/java-team/maven-compiler-plugin/tree/debian/3.8.1-4
You're receiving this email because of your account on salsa.debian.org.


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

[Git][java-team/piespy] Pushed new branch upstream

2019-09-11 Thread Emmanuel Bourg


Emmanuel Bourg pushed new branch upstream at Debian Java Maintainers / piespy

-- 
View it on GitLab: https://salsa.debian.org/java-team/piespy/tree/upstream
You're receiving this email because of your account on salsa.debian.org.


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

[Git][java-team/piespy] Pushed new tag upstream/0.4.0

2019-09-11 Thread Emmanuel Bourg


Emmanuel Bourg pushed new tag upstream/0.4.0 at Debian Java Maintainers / piespy

-- 
View it on GitLab: https://salsa.debian.org/java-team/piespy/tree/upstream/0.4.0
You're receiving this email because of your account on salsa.debian.org.


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

[Git][java-team/piespy] Pushed new tag debian/0.4.0-2.2

2019-09-11 Thread Emmanuel Bourg


Emmanuel Bourg pushed new tag debian/0.4.0-2.2 at Debian Java Maintainers / 
piespy

-- 
View it on GitLab: 
https://salsa.debian.org/java-team/piespy/tree/debian/0.4.0-2.2
You're receiving this email because of your account on salsa.debian.org.


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

[Git][java-team/piespy] Pushed new branch master

2019-09-11 Thread Emmanuel Bourg


Emmanuel Bourg pushed new branch master at Debian Java Maintainers / piespy

-- 
View it on GitLab: https://salsa.debian.org/java-team/piespy/tree/master
You're receiving this email because of your account on salsa.debian.org.


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

[Git][java-team/piespy] Pushed new tag debian/0.4.0-1

2019-09-11 Thread Emmanuel Bourg


Emmanuel Bourg pushed new tag debian/0.4.0-1 at Debian Java Maintainers / piespy

-- 
View it on GitLab: https://salsa.debian.org/java-team/piespy/tree/debian/0.4.0-1
You're receiving this email because of your account on salsa.debian.org.


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

[Git][java-team/piespy] Pushed new tag debian/0.4.0-2.1

2019-09-11 Thread Emmanuel Bourg


Emmanuel Bourg pushed new tag debian/0.4.0-2.1 at Debian Java Maintainers / 
piespy

-- 
View it on GitLab: 
https://salsa.debian.org/java-team/piespy/tree/debian/0.4.0-2.1
You're receiving this email because of your account on salsa.debian.org.


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

[Git][java-team/piespy] Pushed new tag debian/0.4.0-4

2019-09-11 Thread Emmanuel Bourg


Emmanuel Bourg pushed new tag debian/0.4.0-4 at Debian Java Maintainers / piespy

-- 
View it on GitLab: https://salsa.debian.org/java-team/piespy/tree/debian/0.4.0-4
You're receiving this email because of your account on salsa.debian.org.


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

[Git][java-team/piespy] Pushed new tag debian/0.4.0-3

2019-09-11 Thread Emmanuel Bourg


Emmanuel Bourg pushed new tag debian/0.4.0-3 at Debian Java Maintainers / piespy

-- 
View it on GitLab: https://salsa.debian.org/java-team/piespy/tree/debian/0.4.0-3
You're receiving this email because of your account on salsa.debian.org.


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

[Git][java-team/piespy] Pushed new tag debian/0.4.0-2

2019-09-11 Thread Emmanuel Bourg


Emmanuel Bourg pushed new tag debian/0.4.0-2 at Debian Java Maintainers / piespy

-- 
View it on GitLab: https://salsa.debian.org/java-team/piespy/tree/debian/0.4.0-2
You're receiving this email because of your account on salsa.debian.org.


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

[Git][java-team/piespy] Pushed new branch pristine-tar

2019-09-11 Thread Emmanuel Bourg


Emmanuel Bourg pushed new branch pristine-tar at Debian Java Maintainers / 
piespy

-- 
View it on GitLab: https://salsa.debian.org/java-team/piespy/tree/pristine-tar
You're receiving this email because of your account on salsa.debian.org.


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

[Git][java-team/msgpack-java][master] 9 commits: Extending the long description.

2019-09-11 Thread Andrius Merkys


Andrius Merkys pushed to branch master at Debian Java Maintainers / msgpack-java


Commits:
c4269503 by Andrius Merkys at 2019-09-11T12:22:15Z
Extending the long description.

- - - - -
8112b420 by Andrius Merkys at 2019-09-11T12:40:01Z
Adding ITP bug number.

- - - - -
ba2cf0a0 by Andrius Merkys at 2019-09-11T12:42:37Z
Removing EPL license from debian/copyright.

- - - - -
6167a248 by Andrius Merkys at 2019-09-11T12:46:06Z
Adding a license for sbt.

- - - - -
ecd75690 by Andrius Merkys at 2019-09-11T12:48:10Z
Adding license paragraph for Guava source.

- - - - -
8ed97ab1 by Andrius Merkys at 2019-09-11T12:56:46Z
Adding all the author names in debian/copyright.

- - - - -
e973032e by Andrius Merkys at 2019-09-11T12:59:47Z
Adding full text of BSD-3-Clause license.

- - - - -
f33e1f68 by Andrius Merkys at 2019-09-11T13:02:54Z
Bumping debhelper compat.

- - - - -
d1eb3a5e by Andrius Merkys at 2019-09-11T13:03:33Z
Sometimes the maven-repo is not deleted.

- - - - -


5 changed files:

- debian/changelog
- debian/compat
- debian/control
- debian/copyright
- debian/rules


Changes:

=
debian/changelog
=
@@ -1,6 +1,5 @@
 msgpack-java (0.8.17-1) UNRELEASED; urgency=medium
 
-  * Initial release (Closes: #)  
+  * Initial release (Closes: #940033)
 
  -- Andrius Merkys   Wed, 11 Sep 2019 01:00:19 -0400


=
debian/compat
=
@@ -1 +1 @@
-11
+12


=
debian/control
=
@@ -5,7 +5,7 @@ Maintainer: Debian Java Maintainers 
,
 Build-Depends:
- debhelper (>= 11),
+ debhelper (>= 12),
  default-jdk,
  maven-debian-helper (>= 2.1),
 Build-Depends-Indep:
@@ -25,4 +25,10 @@ Depends:
 Suggests:
  ${maven:OptionalDepends},
 Description: MessagePack for Java
- Jackson extension that adds support for MessagePack
+ MessagePack is a binary serialization format. For example, a small integer can
+ be encoded in a single byte, and short strings only need a single byte prefix
+ + the original byte array. MessagePack implementation is already available in
+ various languages and works as a universal data format.
+ .
+ msgpack-java supports serialization and deserialization of Java objects 
through
+ jackson-databind.


=
debian/copyright
=
@@ -3,8 +3,16 @@ Upstream-Name: jackson-dataformat-msgpack
 Source: http://msgpack.org/
 
 Files: *
-Copyright: 2019, MessagePack
-License: Apache-2.0 or EPL-1.0
+Copyright: 2019, Sadayuki Furuhashi, Muga Nishizawa, Taro L. Saito, Mitsunori 
Komatsu, Ozawa Tsuyoshi
+License: Apache-2.0
+
+Files: sbt
+Copyright: 2011, Paul Phillips
+License: BSD-3-Clause
+
+Files: msgpack-core/src/main/java/org/msgpack/core/Preconditions.java
+Copyright: 2007, The Guava Authors
+License: Apache-2.0
 
 Files: debian/*
 Copyright: 2019, Andrius Merkys 
@@ -14,5 +22,28 @@ License: Apache-2.0
  On Debian systems, the full text of the Apache-2.0 license
  can be found in the file '/usr/share/common-licenses/Apache-2.0'
 
-License: EPL-1.0
-  TODO: include the full text of the license here
+License: BSD-3-Clause
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are
+ met:
+ .
+  * Redistributions of source code must retain the above copyright
+notice, this list of conditions and the following disclaimer.
+  * Redistributions in binary form must reproduce the above copyright
+notice, this list of conditions and the following disclaimer in the
+documentation and/or other materials provided with the distribution.
+  * Neither the name of the author nor the names of its contributors
+may be used to endorse or promote products derived from this software
+without specific prior written permission.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+ HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
+ TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+ PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+ LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.


=
debian/rules
=
@@ -16,3 +16,7 @@ override_dh_auto_configure:
test -e ${MSGPACK_MAVEN_DIR}/msgpack-core-debian.jar || \
ln -s 

[Git][java-team/msgpack-java][master] 4 commits: Wrapping and sorting.

2019-09-11 Thread Andrius Merkys


Andrius Merkys pushed to branch master at Debian Java Maintainers / msgpack-java


Commits:
928d2de1 by Andrius Merkys at 2019-09-11T10:05:44Z
Wrapping and sorting.

- - - - -
66505315 by Andrius Merkys at 2019-09-11T10:25:01Z
Changing the description.

- - - - -
11f41bb0 by Andrius Merkys at 2019-09-11T11:55:45Z
Adjusting parent artifacts name according to build.sbt.

- - - - -
4ef7d993 by Andrius Merkys at 2019-09-11T12:01:56Z
Adding junit4 as build-dep.

- - - - -


4 changed files:

- debian/control
- debian/copyright
- debian/patches/compile.patch
- debian/patches/pom.xml


Changes:

=
debian/control
=
@@ -2,9 +2,16 @@ Source: msgpack-java
 Section: java
 Priority: optional
 Maintainer: Debian Java Maintainers 

-Uploaders: Andrius Merkys 
-Build-Depends: debhelper (>= 11), default-jdk, maven-debian-helper (>= 2.1)
-Build-Depends-Indep: libcommons-math3-java (>= 3.6.1), 
libjackson2-databind-java 
+Uploaders:
+ Andrius Merkys ,
+Build-Depends:
+ debhelper (>= 11),
+ default-jdk,
+ maven-debian-helper (>= 2.1),
+Build-Depends-Indep:
+ junit4,
+ libcommons-math3-java (>= 3.6.1),
+ libjackson2-databind-java,
 Standards-Version: 4.2.1
 Vcs-Git: https://salsa.debian.org/java-team/msgpack-java.git
 Vcs-Browser: https://salsa.debian.org/java-team/msgpack-java
@@ -12,8 +19,10 @@ Homepage: http://msgpack.org/
 
 Package: libmsgpack-java
 Architecture: all
-Depends: ${misc:Depends}, ${maven:Depends}
-Suggests: ${maven:OptionalDepends}
-Description: jackson-dataformat-msgpack
+Depends:
+ ${maven:Depends},
+ ${misc:Depends},
+Suggests:
+ ${maven:OptionalDepends},
+Description: MessagePack for Java
  Jackson extension that adds support for MessagePack
-


=
debian/copyright
=
@@ -16,5 +16,3 @@ License: Apache-2.0
 
 License: EPL-1.0
   TODO: include the full text of the license here
-
-


=
debian/patches/compile.patch
=
@@ -3,7 +3,7 @@
 @@ -3,7 +3,7 @@
  4.0.0
  org.msgpack
- jackson-dataformat-msgpack
+ msgpack-java
 -jar
 +pom
  Jackson extension that adds support for 
MessagePack


=
debian/patches/pom.xml
=
@@ -5,7 +5,7 @@
 +http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/xsd/maven-4.0.0.xsd; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
xmlns="http://maven.apache.org/POM/4.0.0;>
 +4.0.0
 +org.msgpack
-+jackson-dataformat-msgpack
++msgpack-java
 +jar
 +Jackson extension that adds support for 
MessagePack
 +0.8.17
@@ -90,7 +90,7 @@
 +4.0.0
 +
 +org.msgpack
-+jackson-dataformat-msgpack
++msgpack-java
 +0.8.17
 +
 +msgpack-core
@@ -110,7 +110,7 @@
 +4.0.0
 +
 +org.msgpack
-+jackson-dataformat-msgpack
++msgpack-java
 +0.8.17
 +
 +msgpack-jackson



View it on GitLab: 
https://salsa.debian.org/java-team/msgpack-java/compare/a41f86fe2b67f584401015f5c2782c577b3ba8a8...4ef7d993e8eddd74f0536afa5f5b6c8fb7547017

-- 
View it on GitLab: 
https://salsa.debian.org/java-team/msgpack-java/compare/a41f86fe2b67f584401015f5c2782c577b3ba8a8...4ef7d993e8eddd74f0536afa5f5b6c8fb7547017
You're receiving this email because of your account on salsa.debian.org.


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

[Git][java-team/msgpack-java][master] Adding ${maven:CompileDepends} to Depends of the binary package.

2019-09-11 Thread Andrius Merkys


Andrius Merkys pushed to branch master at Debian Java Maintainers / msgpack-java


Commits:
961c5e74 by Andrius Merkys at 2019-09-11T14:20:48Z
Adding ${maven:CompileDepends} to Depends of the binary package.

- - - - -


1 changed file:

- debian/control


Changes:

=
debian/control
=
@@ -20,6 +20,7 @@ Homepage: http://msgpack.org/
 Package: libmsgpack-java
 Architecture: all
 Depends:
+ ${maven:CompileDepends},
  ${maven:Depends},
  ${misc:Depends},
 Suggests:



View it on GitLab: 
https://salsa.debian.org/java-team/msgpack-java/commit/961c5e7424e1ec60fb55dae9f37a2c977802bcb9

-- 
View it on GitLab: 
https://salsa.debian.org/java-team/msgpack-java/commit/961c5e7424e1ec60fb55dae9f37a2c977802bcb9
You're receiving this email because of your account on salsa.debian.org.


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

[Git][java-team/msgpack-java][master] Preparing for upload.

2019-09-11 Thread Andrius Merkys


Andrius Merkys pushed to branch master at Debian Java Maintainers / msgpack-java


Commits:
9b81a68e by Andrius Merkys at 2019-09-11T14:21:44Z
Preparing for upload.

- - - - -


1 changed file:

- debian/changelog


Changes:

=
debian/changelog
=
@@ -1,4 +1,4 @@
-msgpack-java (0.8.17-1) UNRELEASED; urgency=medium
+msgpack-java (0.8.17-1) unstable; urgency=medium
 
   * Initial release (Closes: #940033)
 



View it on GitLab: 
https://salsa.debian.org/java-team/msgpack-java/commit/9b81a68e34ee1322af61558ecfb469eb12009bfa

-- 
View it on GitLab: 
https://salsa.debian.org/java-team/msgpack-java/commit/9b81a68e34ee1322af61558ecfb469eb12009bfa
You're receiving this email because of your account on salsa.debian.org.


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

[Git][java-team/msgpack-java] Pushed new tag debian/0.8.17-1

2019-09-11 Thread Andrius Merkys


Andrius Merkys pushed new tag debian/0.8.17-1 at Debian Java Maintainers / 
msgpack-java

-- 
View it on GitLab: 
https://salsa.debian.org/java-team/msgpack-java/tree/debian/0.8.17-1
You're receiving this email because of your account on salsa.debian.org.


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

[Git][java-team/msgpack-java][master] 2 commits: Adding patch description.

2019-09-11 Thread Andrius Merkys


Andrius Merkys pushed to branch master at Debian Java Maintainers / msgpack-java


Commits:
95b80c11 by Andrius Merkys at 2019-09-11T14:08:50Z
Adding patch description.

- - - - -
16dfec4b by Andrius Merkys at 2019-09-11T14:10:15Z
Adding patch description.

- - - - -


2 changed files:

- debian/patches/compile.patch
- debian/patches/pom.xml


Changes:

=
debian/patches/compile.patch
=
@@ -1,3 +1,6 @@
+Description: Additions on top of upstream-derived POM in order to get the
+ project build using maven.
+Author: Andrius Merkys 
 --- a/pom.xml
 +++ b/pom.xml
 @@ -3,7 +3,7 @@


=
debian/patches/pom.xml
=
@@ -1,3 +1,6 @@
+Description: Adding POMs to build using maven (avoiding sbt-based build).
+ POMs have been adapted from the upstream, with details from sonatype.sbt.
+Author: Andrius Merkys 
 --- /dev/null
 +++ b/pom.xml
 @@ -0,0 +1,80 @@



View it on GitLab: 
https://salsa.debian.org/java-team/msgpack-java/compare/d1eb3a5e2d5969edc2310762d69dbccc19f9b1b1...16dfec4b59ec4fdfadce9094b7a73583979425f7

-- 
View it on GitLab: 
https://salsa.debian.org/java-team/msgpack-java/compare/d1eb3a5e2d5969edc2310762d69dbccc19f9b1b1...16dfec4b59ec4fdfadce9094b7a73583979425f7
You're receiving this email because of your account on salsa.debian.org.


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

[Git][java-team/undertow] Pushed new tag debian/2.0.26-1

2019-09-11 Thread Markus Koschany


Markus Koschany pushed new tag debian/2.0.26-1 at Debian Java Maintainers / 
undertow

-- 
View it on GitLab: 
https://salsa.debian.org/java-team/undertow/tree/debian/2.0.26-1
You're receiving this email because of your account on salsa.debian.org.


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

[Git][java-team/undertow][pristine-tar] pristine-tar data for undertow_2.0.26.orig.tar.gz

2019-09-11 Thread Markus Koschany


Markus Koschany pushed to branch pristine-tar at Debian Java Maintainers / 
undertow


Commits:
7ad45864 by Markus Koschany at 2019-09-11T15:29:25Z
pristine-tar data for undertow_2.0.26.orig.tar.gz

- - - - -


2 changed files:

- + undertow_2.0.26.orig.tar.gz.delta
- + undertow_2.0.26.orig.tar.gz.id


Changes:

=
undertow_2.0.26.orig.tar.gz.delta
=
Binary files /dev/null and b/undertow_2.0.26.orig.tar.gz.delta differ


=
undertow_2.0.26.orig.tar.gz.id
=
@@ -0,0 +1 @@
+072c6a0ec188a22d2594009a5cd9098428c82e27



View it on GitLab: 
https://salsa.debian.org/java-team/undertow/commit/7ad458640ac9cf6de3ea12d237f9899cf8b90ca0

-- 
View it on GitLab: 
https://salsa.debian.org/java-team/undertow/commit/7ad458640ac9cf6de3ea12d237f9899cf8b90ca0
You're receiving this email because of your account on salsa.debian.org.


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

[Git][java-team/undertow][upstream] New upstream version 2.0.26

2019-09-11 Thread Markus Koschany


Markus Koschany pushed to branch upstream at Debian Java Maintainers / undertow


Commits:
d3cb817b by Markus Koschany at 2019-09-11T15:29:19Z
New upstream version 2.0.26
- - - - -


30 changed files:

- benchmarks/pom.xml
- core/pom.xml
- core/src/main/java/io/undertow/UndertowMessages.java
- core/src/main/java/io/undertow/protocols/http2/HpackDecoder.java
- core/src/main/java/io/undertow/protocols/ssl/SslConduit.java
- 
core/src/main/java/io/undertow/security/api/AuthenticationMechanismFactory.java
- core/src/main/java/io/undertow/server/RoutingHandler.java
- 
core/src/main/java/io/undertow/server/handlers/form/FormEncodedDataDefinition.java
- + core/src/main/java/io/undertow/util/UrlDecodeException.java
- core/src/test/java/io/undertow/server/handlers/RoutingHandlerTestCase.java
- 
core/src/test/java/io/undertow/server/handlers/form/FormDataParserTestCase.java
- coverage-report/pom.xml
- dist/pom.xml
- examples/pom.xml
- karaf/pom.xml
- parser-generator/pom.xml
- pom.xml
- servlet/pom.xml
- servlet/src/main/java/io/undertow/servlet/api/DeploymentInfo.java
- + servlet/src/main/java/io/undertow/servlet/api/SecurityActions.java
- servlet/src/main/java/io/undertow/servlet/core/ManagedServlet.java
- servlet/src/main/java/io/undertow/servlet/handlers/ServletInitialHandler.java
- 
servlet/src/main/java/io/undertow/servlet/handlers/security/ServletFormAuthenticationMechanism.java
- servlet/src/main/java/io/undertow/servlet/spec/AsyncContextImpl.java
- servlet/src/main/java/io/undertow/servlet/spec/HttpServletRequestImpl.java
- + 
servlet/src/test/java/io/undertow/servlet/test/proprietry/ExchangeCompletionTestCase.java
- + 
servlet/src/test/java/io/undertow/servlet/test/proprietry/IgnoresRequestAndSetsAttributeAsyncServlet.java
- + 
servlet/src/test/java/io/undertow/servlet/test/proprietry/IgnoresRequestAndSetsAttributeServlet.java
- + 
servlet/src/test/java/io/undertow/servlet/test/security/form/ServletFormAuthDefaultPageTestCase.java
- 
servlet/src/test/java/io/undertow/servlet/test/security/form/ServletFormAuthTestCase.java


The diff was not included because it is too large.


View it on GitLab: 
https://salsa.debian.org/java-team/undertow/commit/d3cb817baed37fdb8446608768bc737af1ba0317

-- 
View it on GitLab: 
https://salsa.debian.org/java-team/undertow/commit/d3cb817baed37fdb8446608768bc737af1ba0317
You're receiving this email because of your account on salsa.debian.org.


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

[Git][java-team/undertow] Pushed new tag upstream/2.0.26

2019-09-11 Thread Markus Koschany


Markus Koschany pushed new tag upstream/2.0.26 at Debian Java Maintainers / 
undertow

-- 
View it on GitLab: 
https://salsa.debian.org/java-team/undertow/tree/upstream/2.0.26
You're receiving this email because of your account on salsa.debian.org.


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

[Git][java-team/undertow][master] 3 commits: New upstream version 2.0.26

2019-09-11 Thread Markus Koschany


Markus Koschany pushed to branch master at Debian Java Maintainers / undertow


Commits:
d3cb817b by Markus Koschany at 2019-09-11T15:29:19Z
New upstream version 2.0.26
- - - - -
6c7a8a6e by Markus Koschany at 2019-09-11T15:29:29Z
Update upstream source from tag upstream/2.0.26

Update to upstream version 2.0.26
with Debian dir 10b7f40e3b8b28731b0ee018d1d5cb31c7561d24
- - - - -
4573585c by Markus Koschany at 2019-09-11T15:29:53Z
Update changelog

- - - - -


30 changed files:

- benchmarks/pom.xml
- core/pom.xml
- core/src/main/java/io/undertow/UndertowMessages.java
- core/src/main/java/io/undertow/protocols/http2/HpackDecoder.java
- core/src/main/java/io/undertow/protocols/ssl/SslConduit.java
- 
core/src/main/java/io/undertow/security/api/AuthenticationMechanismFactory.java
- core/src/main/java/io/undertow/server/RoutingHandler.java
- 
core/src/main/java/io/undertow/server/handlers/form/FormEncodedDataDefinition.java
- + core/src/main/java/io/undertow/util/UrlDecodeException.java
- core/src/test/java/io/undertow/server/handlers/RoutingHandlerTestCase.java
- 
core/src/test/java/io/undertow/server/handlers/form/FormDataParserTestCase.java
- coverage-report/pom.xml
- debian/changelog
- dist/pom.xml
- examples/pom.xml
- karaf/pom.xml
- parser-generator/pom.xml
- pom.xml
- servlet/pom.xml
- servlet/src/main/java/io/undertow/servlet/api/DeploymentInfo.java
- + servlet/src/main/java/io/undertow/servlet/api/SecurityActions.java
- servlet/src/main/java/io/undertow/servlet/core/ManagedServlet.java
- servlet/src/main/java/io/undertow/servlet/handlers/ServletInitialHandler.java
- 
servlet/src/main/java/io/undertow/servlet/handlers/security/ServletFormAuthenticationMechanism.java
- servlet/src/main/java/io/undertow/servlet/spec/AsyncContextImpl.java
- servlet/src/main/java/io/undertow/servlet/spec/HttpServletRequestImpl.java
- + 
servlet/src/test/java/io/undertow/servlet/test/proprietry/ExchangeCompletionTestCase.java
- + 
servlet/src/test/java/io/undertow/servlet/test/proprietry/IgnoresRequestAndSetsAttributeAsyncServlet.java
- + 
servlet/src/test/java/io/undertow/servlet/test/proprietry/IgnoresRequestAndSetsAttributeServlet.java
- + 
servlet/src/test/java/io/undertow/servlet/test/security/form/ServletFormAuthDefaultPageTestCase.java


The diff was not included because it is too large.


View it on GitLab: 
https://salsa.debian.org/java-team/undertow/compare/d728ce8ed89f9ea10f225b23e5d3fec2d99ff86d...4573585ce1b69c6471fa1b6cc5014497a49d2fd4

-- 
View it on GitLab: 
https://salsa.debian.org/java-team/undertow/compare/d728ce8ed89f9ea10f225b23e5d3fec2d99ff86d...4573585ce1b69c6471fa1b6cc5014497a49d2fd4
You're receiving this email because of your account on salsa.debian.org.


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