[Git][java-team/jcommander][master] 2 commits: Add patch to fix FTBFS (Closes: #1026608)

Nilesh Patra (@nilesh) gitlab at salsa.debian.org
Wed Dec 21 20:01:51 GMT 2022



Nilesh Patra pushed to branch master at Debian Java Maintainers / jcommander


Commits:
faa56c48 by Nilesh Patra at 2022-12-22T01:26:21+05:30
Add patch to fix FTBFS (Closes: #1026608)

- - - - -
4d16e390 by Nilesh Patra at 2022-12-22T01:26:21+05:30
Upload to unstable

- - - - -


3 changed files:

- debian/changelog
- + debian/patches/fix-html.patch
- debian/patches/series


Changes:

=====================================
debian/changelog
=====================================
@@ -1,3 +1,14 @@
+jcommander (1.71-4) unstable; urgency=medium
+
+  * Team Upload.
+  [ 殷啟聰 | Kai-Chung Yan ]
+  * Remove myself from Uploaders
+
+  [ Nilesh Patra ]
+  * Add patch to fix FTBFS (Closes: #1026608)
+
+ -- Nilesh Patra <nilesh at debian.org>  Thu, 22 Dec 2022 01:20:23 +0530
+
 jcommander (1.71-3) unstable; urgency=medium
 
   * Team upload.


=====================================
debian/patches/fix-html.patch
=====================================
@@ -0,0 +1,144 @@
+Description: Fix html for javadoc parse
+Author: Nilesh Patra <nilesh at debian.org>
+Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1026608
+Last-Update: 2022-12-22
+--- a/src/main/java/com/beust/jcommander/IParameterValidator.java
++++ b/src/main/java/com/beust/jcommander/IParameterValidator.java
+@@ -21,7 +21,7 @@
+ /**
+  * The class used to validate parameters.
+  *
+- * @author Cedric Beust <cedric at beust.com>
++ * @author Cedric Beust <cedric at beust.com>
+  */
+ public interface IParameterValidator {
+ 
+--- a/src/main/java/com/beust/jcommander/JCommander.java
++++ b/src/main/java/com/beust/jcommander/JCommander.java
+@@ -42,7 +42,7 @@
+  * or an instance of Iterable. In the case of an array or Iterable, JCommander will collect
+  * the \@Parameter annotations from all the objects passed in parameter..
+  *
+- * @author Cedric Beust <cedric at beust.com>
++ * @author Cedric Beust <cedric at beust.com>
+  */
+ public class JCommander {
+     public static final String DEBUG_PROPERTY = "jcommander.debug";
+--- a/src/main/java/com/beust/jcommander/MissingCommandException.java
++++ b/src/main/java/com/beust/jcommander/MissingCommandException.java
+@@ -21,7 +21,7 @@
+ /**
+  * Thrown when a command was expected.
+  *
+- * @author Cedric Beust <cedric at beust.com>
++ * @author Cedric Beust <cedric at beust.com>
+  */
+ @SuppressWarnings("serial")
+ public class MissingCommandException extends ParameterException {
+--- a/src/main/java/com/beust/jcommander/ParameterException.java
++++ b/src/main/java/com/beust/jcommander/ParameterException.java
+@@ -22,7 +22,7 @@
+  * The main exception that JCommand will throw when something goes wrong while
+  * parsing parameters.
+  *
+- * @author Cedric Beust <cedric at beust.com>
++ * @author Cedric Beust <cedric at beust.com>
+  */
+ @SuppressWarnings("serial")
+ public class ParameterException extends RuntimeException {
+--- a/src/main/java/com/beust/jcommander/ResourceBundle.java
++++ b/src/main/java/com/beust/jcommander/ResourceBundle.java
+@@ -26,7 +26,7 @@
+ /**
+  * @deprecated use @Parameters
+  * 
+- * @author Cedric Beust <cedric at beust.com>
++ * @author Cedric Beust <cedric at beust.com>
+  */
+ @Retention(java.lang.annotation.RetentionPolicy.RUNTIME)
+ @Target({ TYPE })
+--- a/src/main/java/com/beust/jcommander/validators/NoValidator.java
++++ b/src/main/java/com/beust/jcommander/validators/NoValidator.java
+@@ -24,7 +24,7 @@
+ /**
+  * This is the default value of the validateWith attribute.
+  *
+- * @author Cedric Beust <cedric at beust.com>
++ * @author Cedric Beust <cedric at beust.com>
+  */
+ public class NoValidator implements IParameterValidator {
+ 
+--- a/src/main/java/com/beust/jcommander/validators/NoValueValidator.java
++++ b/src/main/java/com/beust/jcommander/validators/NoValueValidator.java
+@@ -24,7 +24,7 @@
+ /**
+  * This is the default value of the validateValueWith attribute.
+  *
+- * @author Cedric Beust <cedric at beust.com>
++ * @author Cedric Beust <cedric at beust.com>
+  */
+ public class NoValueValidator<T> implements IValueValidator<T> {
+ 
+--- a/src/main/java/com/beust/jcommander/validators/PositiveInteger.java
++++ b/src/main/java/com/beust/jcommander/validators/PositiveInteger.java
+@@ -24,7 +24,7 @@
+ /**
+  * A validator that makes sure the value of the parameter is a positive integer.
+  *
+- * @author Cedric Beust <cedric at beust.com>
++ * @author Cedric Beust <cedric at beust.com>
+  */
+ public class PositiveInteger implements IParameterValidator {
+ 
+--- a/src/main/java/com/beust/jcommander/Parameter.java
++++ b/src/main/java/com/beust/jcommander/Parameter.java
+@@ -69,15 +69,15 @@
+   boolean password() default false;
+ 
+   /**
+-   * The string converter to use for this field. If the field is of type <tt>List</tt>
+-   * and not <tt>listConverter</tt> attribute was specified, JCommander will split
++   * The string converter to use for this field. If the field is of type <kbd>List</kbd>
++   * and not <kbd>listConverter</kbd> attribute was specified, JCommander will split
+    * the input in individual values and convert each of them separately..
+    */
+   Class<? extends IStringConverter<?>> converter() default NoConverter.class;
+ 
+   /**
+    * The list string converter to use for this field. If it's specified, the
+-   * field has to be of type <tt>List</tt> and the converter needs to return
++   * field has to be of type <kbd>List</kbd> and the converter needs to return
+    * a List that's compatible with that type.
+    */
+   Class<? extends IStringConverter<?>> listConverter() default NoConverter.class;
+@@ -103,7 +103,7 @@
+   boolean variableArity() default false;
+ 
+   /**
+-   * What splitter to use (applicable only on fields of type <tt>List</tt>). By default,
++   * What splitter to use (applicable only on fields of type <kbd>List</kbd>). By default,
+    * a comma separated splitter will be used.
+    */
+   Class<? extends IParameterSplitter> splitter() default CommaParameterSplitter.class;
+--- a/src/main/java/com/beust/jcommander/IStringConverter.java
++++ b/src/main/java/com/beust/jcommander/IStringConverter.java
+@@ -33,7 +33,7 @@
+  */
+ public interface IStringConverter<T> {
+   /**
+-   * @return an object of type <T> created from the parameter value.
++   * @return an object of type <T> created from the parameter value.
+    */
+   T convert(String value);
+ }
+--- a/src/main/java/com/beust/jcommander/SubParameter.java
++++ b/src/main/java/com/beust/jcommander/SubParameter.java
+@@ -7,7 +7,7 @@
+ import static java.lang.annotation.ElementType.METHOD;
+ 
+ /**
+- * @author Cedric Beust <cedric at refresh.io>
++ * @author Cedric Beust <cedric at refresh.io>
+  * @since 02 12, 2017
+  */
+ @Retention(java.lang.annotation.RetentionPolicy.RUNTIME)


=====================================
debian/patches/series
=====================================
@@ -1,2 +1,3 @@
 build.gradle.diff
 java8-compatibility.patch
+fix-html.patch



View it on GitLab: https://salsa.debian.org/java-team/jcommander/-/compare/0188b8751554ba70502228572f76a3bb37810cce...4d16e3904ea44c32e5c552c3a7c0eb19782e5285

-- 
View it on GitLab: https://salsa.debian.org/java-team/jcommander/-/compare/0188b8751554ba70502228572f76a3bb37810cce...4d16e3904ea44c32e5c552c3a7c0eb19782e5285
You're receiving this email because of your account on salsa.debian.org.


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-java-commits/attachments/20221221/e16c9542/attachment.htm>


More information about the pkg-java-commits mailing list