Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (3)
Fixed the compatibility with the latest version of jcommander (Closes: #897237)
· 48202f5d
Emmanuel Bourg
authored
Apr 30, 2018
48202f5d
Standards-Version updated to 4.1.4
· 07a77d36
Emmanuel Bourg
authored
Apr 30, 2018
07a77d36
Use salsa.debian.org Vcs-* URLs
· 44309852
Emmanuel Bourg
authored
Apr 30, 2018
44309852
Hide whitespace changes
Inline
Side-by-side
debian/changelog
View file @
44309852
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)
...
...
debian/control
View file @
44309852
...
...
@@ -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
0 → 100644
View file @
44309852
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" },
debian/patches/series
View file @
44309852
01-disable-fatjar-plugin.patch
02-cli-program-name.patch
03-java9-compatibility.patch
04-jcommander-compatibility.patch