Emmanuel Bourg pushed to branch master at Debian Java Maintainers / procyon
Commits: 48202f5d by Emmanuel Bourg at 2018-04-30T23:05:20+02:00 Fixed the compatibility with the latest version of jcommander (Closes: #897237) - - - - - 07a77d36 by Emmanuel Bourg at 2018-04-30T23:05:38+02:00 Standards-Version updated to 4.1.4 - - - - - 44309852 by Emmanuel Bourg at 2018-04-30T23:06:14+02:00 Use salsa.debian.org Vcs-* URLs - - - - - 4 changed files: - debian/changelog - debian/control - + debian/patches/04-jcommander-compatibility.patch - debian/patches/series Changes: ===================================== debian/changelog ===================================== --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,13 @@ +procyon (0.5.32-4) UNRELEASED; urgency=medium + + * Team upload. + * Fixed the compatibility with the latest version of jcommander + (Closes: #897237) + * Standards-Version updated to 4.1.4 + * Use salsa.debian.org Vcs-* URLs + + -- Emmanuel Bourg <[email protected]> Mon, 30 Apr 2018 23:04:40 +0200 + procyon (0.5.32-3) unstable; urgency=medium * Backported a Java 9 fix (Closes: #894286) ===================================== debian/control ===================================== --- a/debian/control +++ b/debian/control @@ -10,9 +10,9 @@ Build-Depends: javahelper, libjcommander-java (>= 1.71-1~), maven-repo-helper -Standards-Version: 4.1.3 -Vcs-Git: https://anonscm.debian.org/git/pkg-java/procyon.git -Vcs-Browser: https://anonscm.debian.org/cgit/pkg-java/procyon.git +Standards-Version: 4.1.4 +Vcs-Git: https://salsa.debian.org/java-team/procyon.git +Vcs-Browser: https://salsa.debian.org/java-team/procyon Homepage: https://bitbucket.org/mstrobel/procyon Package: libprocyon-java ===================================== debian/patches/04-jcommander-compatibility.patch ===================================== --- /dev/null +++ b/debian/patches/04-jcommander-compatibility.patch @@ -0,0 +1,14 @@ +Description: Fixes the compatibility with the version of jcommander in Debian +Author: Emmanuel Bourg <[email protected]> +Forwarded: no +--- a/Procyon.Decompiler/src/main/java/com/strobel/decompiler/CommandLineOptions.java ++++ b/Procyon.Decompiler/src/main/java/com/strobel/decompiler/CommandLineOptions.java +@@ -23,7 +23,7 @@ + + public class CommandLineOptions { + @Parameter(description = "<type names or class/jar files>") +- private final List<String> _inputs = new ArrayList<>(); ++ private List<String> _inputs = new ArrayList<>(); + + @Parameter( + names = { "-?", "--help" }, ===================================== debian/patches/series ===================================== --- a/debian/patches/series +++ b/debian/patches/series @@ -1,3 +1,4 @@ 01-disable-fatjar-plugin.patch 02-cli-program-name.patch 03-java9-compatibility.patch +04-jcommander-compatibility.patch View it on GitLab: https://salsa.debian.org/java-team/procyon/compare/571598178340b567e25b4cff7224ed3601f59542...4430985202fd45ff5bf787099530708811b15fb9 --- View it on GitLab: https://salsa.debian.org/java-team/procyon/compare/571598178340b567e25b4cff7224ed3601f59542...4430985202fd45ff5bf787099530708811b15fb9 You're receiving this email because of your account on salsa.debian.org.
_______________________________________________ pkg-java-commits mailing list [email protected] https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-java-commits

