diff -Nru jline2-2.12.1/CHANGELOG.md jline2-2.14.6/CHANGELOG.md --- jline2-2.12.1/CHANGELOG.md 2015-02-10 00:54:19.000000000 +0000 +++ jline2-2.14.6/CHANGELOG.md 2018-03-26 09:14:37.000000000 +0000 @@ -1,6 +1,6 @@ +## Unreleased +* #277: Allow setting max history-size. `FileHistory` allows delayed + init (to allow setMaxSize to take effect) and `ConsoleReader` + exposes ability to read inputrc settings. + +## [JLine 2.14.3][2_14_3] +* (unrecorded) + ## [Jline 2.9][2_9] [2_9]: https://oss.sonatype.org/content/groups/public/jline/jline/2.9 diff -Nru jline2-2.12.1/debian/changelog jline2-2.14.6/debian/changelog --- jline2-2.12.1/debian/changelog 2018-01-10 02:48:31.000000000 +0000 +++ jline2-2.14.6/debian/changelog 2018-03-30 11:07:18.000000000 +0000 @@ -1,3 +1,16 @@ +jline2 (2.14.6-1) unstable; urgency=medium + + * Team upload. + * New upstream release + - Patched pom.xml to ignore warnings + - New build dependency on libeasymock-java and libpowermock-java + - Disabled the tests (fail with Java 9) + - Depend on libjansi-java (>= 1.12) + - Ignore maven-enforcer-plugin + * Switch to debhelper level 11 + + -- Emmanuel Bourg Fri, 30 Mar 2018 13:07:18 +0200 + jline2 (2.12.1-1) unstable; urgency=medium * New upstream version 2.12.1 (Closes: #784061) diff -Nru jline2-2.12.1/debian/compat jline2-2.14.6/debian/compat --- jline2-2.12.1/debian/compat 2018-01-10 02:48:31.000000000 +0000 +++ jline2-2.14.6/debian/compat 2018-03-30 10:47:14.000000000 +0000 @@ -1 +1 @@ -10 +11 diff -Nru jline2-2.12.1/debian/control jline2-2.14.6/debian/control --- jline2-2.12.1/debian/control 2018-01-10 02:48:31.000000000 +0000 +++ jline2-2.14.6/debian/control 2018-03-30 10:57:18.000000000 +0000 @@ -4,12 +4,14 @@ Maintainer: Debian Java Maintainers Uploaders: tony mancill Build-Depends: - debhelper (>= 10), + debhelper (>= 11), default-jdk, maven-debian-helper (>= 1.6.5), javahelper (>= 0.43) Build-Depends-Indep: - libjansi-java, + libeasymock-java, + libjansi-java (>= 1.12), + libpowermock-java, junit4 Standards-Version: 4.1.3 Vcs-Git: https://anonscm.debian.org/git/pkg-java/jline2.git diff -Nru jline2-2.12.1/debian/copyright jline2-2.14.6/debian/copyright --- jline2-2.12.1/debian/copyright 2018-01-10 02:48:31.000000000 +0000 +++ jline2-2.14.6/debian/copyright 2018-03-30 10:46:59.000000000 +0000 @@ -1,13 +1,15 @@ -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: jline2 Source: https://github.com/jline/jline2 Files: * -Copyright: Copyright 2013 Marc Prud'hommeaux +Copyright: 2002-2018, Marc Prud'hommeaux License: BSD-3-clause Files: debian/* -Copyright: Copyright 2013 Eugenio Cano-Manuel Mendoza +Copyright: 2013, Eugenio Cano-Manuel Mendoza + 2013-2018, tony mancill + 2015-2018, Emmanuel Bourg License: BSD-3-clause License: BSD-3-clause diff -Nru jline2-2.12.1/debian/maven.ignoreRules jline2-2.14.6/debian/maven.ignoreRules --- jline2-2.12.1/debian/maven.ignoreRules 2018-01-10 02:48:31.000000000 +0000 +++ jline2-2.14.6/debian/maven.ignoreRules 2018-03-30 10:53:24.000000000 +0000 @@ -2,6 +2,7 @@ com.github.stephenc.wagon wagon-gitsite * * * * com.mycila.maven-license-plugin maven-license-plugin * * * * org.apache.felix maven-bundle-plugin * * * * +org.apache.maven.plugins maven-enforcer-plugin * * * * org.apache.maven.plugins maven-jar-plugin * * * * org.apache.maven.plugins maven-javadoc-plugin * * * * org.apache.maven.plugins maven-jxr-plugin * * * * diff -Nru jline2-2.12.1/debian/maven.properties jline2-2.14.6/debian/maven.properties --- jline2-2.12.1/debian/maven.properties 2018-01-10 02:48:31.000000000 +0000 +++ jline2-2.14.6/debian/maven.properties 2018-03-30 10:30:43.000000000 +0000 @@ -2,4 +2,4 @@ # For example: # maven.test.skip=true -maven.test.skip=false +maven.test.skip=true diff -Nru jline2-2.12.1/debian/patches/01-ignore-warnings.patch jline2-2.14.6/debian/patches/01-ignore-warnings.patch --- jline2-2.12.1/debian/patches/01-ignore-warnings.patch 1970-01-01 00:00:00.000000000 +0000 +++ jline2-2.14.6/debian/patches/01-ignore-warnings.patch 2018-03-30 10:30:43.000000000 +0000 @@ -0,0 +1,17 @@ +Description: Don't break the build on warnings +Author: Emmanuel Bourg +Forwarded: not-needed +--- a/pom.xml ++++ b/pom.xml +@@ -305,11 +305,6 @@ + maven-compiler-plugin + 3.1 + +- true +- +- -Xlint:all,-options +- -Werror +- + true + + diff -Nru jline2-2.12.1/debian/patches/series jline2-2.14.6/debian/patches/series --- jline2-2.12.1/debian/patches/series 1970-01-01 00:00:00.000000000 +0000 +++ jline2-2.14.6/debian/patches/series 2018-03-30 10:30:43.000000000 +0000 @@ -0,0 +1 @@ +01-ignore-warnings.patch diff -Nru jline2-2.12.1/debian/rules jline2-2.14.6/debian/rules --- jline2-2.12.1/debian/rules 2018-01-10 02:48:31.000000000 +0000 +++ jline2-2.14.6/debian/rules 2018-03-30 10:47:14.000000000 +0000 @@ -1,6 +1,4 @@ #!/usr/bin/make -f -export DH_VERBOSE=1 - %: - dh $@ --buildsystem=maven --with javahelper + dh $@ --with javahelper diff -Nru jline2-2.12.1/.gitignore jline2-2.14.6/.gitignore --- jline2-2.12.1/.gitignore 2015-02-10 00:54:19.000000000 +0000 +++ jline2-2.14.6/.gitignore 2018-03-26 09:14:37.000000000 +0000 @@ -1,4 +1,8 @@ *.iml *.ipr *.iws -target +/target +/.classpath +/.project +/.settings/ +.idea diff -Nru jline2-2.12.1/header.txt jline2-2.14.6/header.txt --- jline2-2.12.1/header.txt 2015-02-10 00:54:19.000000000 +0000 +++ jline2-2.14.6/header.txt 2018-03-26 09:14:37.000000000 +0000 @@ -1,4 +1,4 @@ -Copyright (c) 2002-2012, the original author or authors. +Copyright (c) 2002-2016, the original author or authors. This software is distributable under the BSD license. See the terms of the BSD license in the documentation provided with this software. diff -Nru jline2-2.12.1/LICENSE.txt jline2-2.14.6/LICENSE.txt --- jline2-2.12.1/LICENSE.txt 2015-02-10 00:54:19.000000000 +0000 +++ jline2-2.14.6/LICENSE.txt 2018-03-26 09:14:37.000000000 +0000 @@ -1,4 +1,4 @@ -Copyright (c) 2002-2012, the original author or authors. +Copyright (c) 2002-2016, the original author or authors. All rights reserved. http://www.opensource.org/licenses/bsd-license.php diff -Nru jline2-2.12.1/pom.xml jline2-2.14.6/pom.xml --- jline2-2.12.1/pom.xml 2015-02-10 00:54:19.000000000 +0000 +++ jline2-2.14.6/pom.xml 2018-03-26 09:14:37.000000000 +0000 @@ -1,7 +1,7 @@ junit junit - 4.10 + 4.12 + test + + + + org.easymock + easymock + 3.3.1 + test + + + + org.powermock + powermock-module-junit4 + 1.6.2 + test + + + + org.powermock + powermock-api-easymock + 1.6.2 test @@ -146,19 +168,19 @@ org.apache.maven.scm maven-scm-provider-gitexe - 1.8.1 + 1.9.4 org.apache.maven.scm maven-scm-manager-plexus - 1.8.1 + 1.9.4 com.github.stephenc.wagon wagon-gitsite - 0.4.1 + 0.5 @@ -205,18 +227,7 @@ org.apache.maven.plugins maven-site-plugin - 3.2 - - - org.apache.maven.doxia - doxia-module-markdown - 1.3 - - - - UTF-8 - UTF-8 - + 3.4 attach-descriptor @@ -230,9 +241,38 @@ org.apache.maven.plugins maven-javadoc-plugin - 2.9 + 2.10.3 + + + -Xdoclint:none + + false + + + + + + org.eclipse.m2e + lifecycle-mapping + 1.0.0 - 1.5 + + + + + org.apache.maven.plugins + maven-enforcer-plugin + [1.0,) + + enforce + + + + + + + + @@ -242,7 +282,7 @@ org.apache.maven.plugins maven-surefire-plugin - 2.12 + 2.18.1 ${maven.test.redirectTestOutputToFile} @@ -266,17 +306,21 @@ org.apache.maven.plugins maven-compiler-plugin - 2.5 + 3.1 - 1.5 - 1.5 + true + + -Xlint:all,-options + -Werror + + true org.apache.maven.plugins maven-source-plugin - 2.1.2 + 2.4 attach-sources @@ -290,7 +334,7 @@ org.codehaus.mojo animal-sniffer-maven-plugin - 1.9 + 1.14 @@ -310,7 +354,7 @@ org.apache.felix maven-bundle-plugin - 2.1.0 + 2.5.4 process-classes @@ -320,13 +364,12 @@ - jline;jline.console;jline.console.completer;jline.console.history;version:=${project.version};-noimport:=true, + jline.*;-noimport:=true, =org.fusesource.jansi;version=${jansi.version} - javax.swing;resolution:=optional + !javax.swing - * @@ -336,7 +379,7 @@ org.apache.maven.plugins maven-jar-plugin - 2.4 + 2.6 ${project.build.outputDirectory}/META-INF/MANIFEST.MF @@ -354,14 +397,14 @@ org.apache.maven.plugins maven-scm-plugin - 1.8.1 + 1.9.4 org.apache.maven.plugins maven-shade-plugin - 1.6 + 2.4.1 @@ -406,6 +449,19 @@ + + + org.apache.maven.plugins + maven-javadoc-plugin + + + javadoc + + jar + + + +