Accepting request 1175437 from Java:packages
1.83 OBS-URL: https://build.opensuse.org/request/show/1175437 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/beust-jcommander?expand=0&rev=5
This commit is contained in:
commit
a5ea09e89a
2
_service
2
_service
@ -2,7 +2,7 @@
|
|||||||
<service name="tar_scm" mode="disabled">
|
<service name="tar_scm" mode="disabled">
|
||||||
<param name="scm">git</param>
|
<param name="scm">git</param>
|
||||||
<param name="url">https://github.com/cbeust/jcommander.git</param>
|
<param name="url">https://github.com/cbeust/jcommander.git</param>
|
||||||
<param name="revision">1.82</param>
|
<param name="revision">1.83</param>
|
||||||
<param name="versionformat">@PARENT_TAG@</param>
|
<param name="versionformat">@PARENT_TAG@</param>
|
||||||
<param name="exclude">**.jar</param>
|
<param name="exclude">**.jar</param>
|
||||||
<param name="exclude">**.class</param>
|
<param name="exclude">**.class</param>
|
||||||
|
@ -23,7 +23,8 @@
|
|||||||
<property name="build.srcDir" value="src/main/java"/>
|
<property name="build.srcDir" value="src/main/java"/>
|
||||||
<property name="build.resourceDir" value="src/main/resources"/>
|
<property name="build.resourceDir" value="src/main/resources"/>
|
||||||
|
|
||||||
<property name="compiler.source" value="1.8"/>
|
<property name="compiler.release" value="8"/>
|
||||||
|
<property name="compiler.source" value="1.${compiler.release}"/>
|
||||||
<property name="compiler.target" value="${compiler.source}"/>
|
<property name="compiler.target" value="${compiler.source}"/>
|
||||||
|
|
||||||
<property name="reporting.outputDirectory" value="${build.dir}/site"/>
|
<property name="reporting.outputDirectory" value="${build.dir}/site"/>
|
||||||
@ -48,14 +49,30 @@
|
|||||||
debug="true"
|
debug="true"
|
||||||
optimize="false"
|
optimize="false"
|
||||||
deprecation="true"
|
deprecation="true"
|
||||||
target="${compiler.target}"
|
release="${compiler.release}"
|
||||||
verbose="false"
|
verbose="false"
|
||||||
fork="false"
|
fork="false">
|
||||||
source="${compiler.source}">
|
|
||||||
<src>
|
<src>
|
||||||
<pathelement location="${build.srcDir}"/>
|
<pathelement location="${build.srcDir}"/>
|
||||||
</src>
|
</src>
|
||||||
</javac>
|
</javac>
|
||||||
|
<javac destdir="${build.outputDir}"
|
||||||
|
encoding="${project.build.sourceEncoding}"
|
||||||
|
nowarn="false"
|
||||||
|
debug="true"
|
||||||
|
optimize="false"
|
||||||
|
deprecation="true"
|
||||||
|
release="9"
|
||||||
|
verbose="false"
|
||||||
|
fork="false">
|
||||||
|
<modulepath>
|
||||||
|
<pathelement location="${build.outputDir}"/>
|
||||||
|
</modulepath>
|
||||||
|
<src>
|
||||||
|
<pathelement location="."/>
|
||||||
|
</src>
|
||||||
|
<include name="**/module-info.java"/>
|
||||||
|
</javac>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<!-- ====================================================================== -->
|
<!-- ====================================================================== -->
|
||||||
|
@ -1,3 +1,19 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon May 20 16:56:11 UTC 2024 - Fridrich Strba <fstrba@suse.com>
|
||||||
|
|
||||||
|
- Update to version 1.83
|
||||||
|
* Fixes:
|
||||||
|
+ Fixed Docs Timestamp
|
||||||
|
+ Fixed: #563 - JCommander does not recognize command by alias.
|
||||||
|
+ fixed: missing null check
|
||||||
|
+ renamed IRule to IParametersValidator
|
||||||
|
+ `@Parameters(rules = <? extends IRule>)`
|
||||||
|
+ Unit Test for #532
|
||||||
|
+ Fixed #532: @-syntax not working with command objects
|
||||||
|
+ enable testng tests
|
||||||
|
+ Fix regression with removed usage methods
|
||||||
|
+ Add OSGi entries in MANIFEST.MF during jar creation
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Feb 21 08:20:16 UTC 2024 - Fridrich Strba <fstrba@suse.com>
|
Wed Feb 21 08:20:16 UTC 2024 - Fridrich Strba <fstrba@suse.com>
|
||||||
|
|
||||||
|
@ -16,14 +16,15 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
|
%define __requires_exclude java-headless
|
||||||
%global short_name jcommander
|
%global short_name jcommander
|
||||||
Name: beust-%{short_name}
|
Name: beust-%{short_name}
|
||||||
Version: 1.82
|
Version: 1.83
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Java framework for parsing command line parameters
|
Summary: Java framework for parsing command line parameters
|
||||||
License: Apache-2.0
|
License: Apache-2.0
|
||||||
Group: Development/Libraries/Java
|
Group: Development/Libraries/Java
|
||||||
URL: http://jcommander.org/
|
URL: https://jcommander.org/
|
||||||
Source0: %{short_name}-%{version}.tar.xz
|
Source0: %{short_name}-%{version}.tar.xz
|
||||||
# Adapted from earlier version that still shipped poms. It uses kobalt for building now
|
# Adapted from earlier version that still shipped poms. It uses kobalt for building now
|
||||||
Source1: %{name}.pom
|
Source1: %{name}.pom
|
||||||
@ -31,8 +32,8 @@ Source2: %{name}-build.xml
|
|||||||
Patch0: 0001-ParseValues-NullPointerException-patch.patch
|
Patch0: 0001-ParseValues-NullPointerException-patch.patch
|
||||||
BuildRequires: ant
|
BuildRequires: ant
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: java-devel >= 1.8
|
BuildRequires: java-devel >= 9
|
||||||
BuildRequires: javapackages-local
|
BuildRequires: javapackages-local >= 6
|
||||||
Requires: java >= 1.8
|
Requires: java >= 1.8
|
||||||
Obsoletes: %{short_name} < %{version}-%{release}
|
Obsoletes: %{short_name} < %{version}-%{release}
|
||||||
Provides: %{short_name} = %{version}-%{release}
|
Provides: %{short_name} = %{version}-%{release}
|
||||||
|
BIN
jcommander-1.82.tar.xz
(Stored with Git LFS)
BIN
jcommander-1.82.tar.xz
(Stored with Git LFS)
Binary file not shown.
BIN
jcommander-1.83.tar.xz
(Stored with Git LFS)
Normal file
BIN
jcommander-1.83.tar.xz
(Stored with Git LFS)
Normal file
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user