Skip to content
Commits on Source (3)
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 <ebourg@apache.org> Mon, 30 Apr 2018 23:04:40 +0200
procyon (0.5.32-3) unstable; urgency=medium
* Backported a Java 9 fix (Closes: #894286)
......
......@@ -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
......
Description: Fixes the compatibility with the version of jcommander in Debian
Author: Emmanuel Bourg <ebourg@apache.org>
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" },
01-disable-fatjar-plugin.patch
02-cli-program-name.patch
03-java9-compatibility.patch
04-jcommander-compatibility.patch