Compare commits
28 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5b25f257f7 | ||
|
|
e42d8406c9 | ||
|
|
45da626305 | ||
|
|
b77f92e4d0 | ||
|
|
194e595e35 | ||
|
|
3cddc8dbdd | ||
|
|
a05ce65ef6 | ||
|
|
7f93d30820 | ||
|
|
4d8b857afa | ||
|
|
4fa509534e | ||
|
|
06bab565f3 | ||
|
|
d68c605ec7 | ||
|
|
1f71c4f4ec | ||
|
|
9d29604bc2 | ||
|
|
0d3aac01ee | ||
|
|
595cca0102 | ||
|
|
61a0446e6c | ||
|
|
a6b99c7d98 | ||
|
|
cbca251c26 | ||
|
|
0c3cd269c5 | ||
|
|
383dd9c110 | ||
|
|
474cbe82ab | ||
|
|
bec5da06b1 | ||
|
|
9eb07f1c52 | ||
|
|
1a7ac5a332 | ||
|
|
60dab0a7b7 | ||
|
|
4a2bc2f8f1 | ||
|
|
082df8ff8f |
9 changed files with 270 additions and 141 deletions
1
.fmf/version
Normal file
1
.fmf/version
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
1
|
||||||
4
.gitignore
vendored
4
.gitignore
vendored
|
|
@ -3,3 +3,7 @@
|
||||||
/commons-cli-1.3.1-src.tar.gz
|
/commons-cli-1.3.1-src.tar.gz
|
||||||
/commons-cli-1.4-src.tar.gz
|
/commons-cli-1.4-src.tar.gz
|
||||||
/commons-cli-1.5.0-src.tar.gz
|
/commons-cli-1.5.0-src.tar.gz
|
||||||
|
/commons-cli-1.6.0-src.tar.gz
|
||||||
|
/commons-cli-1.8.0-src.tar.gz
|
||||||
|
/commons-cli-1.9.0-src.tar.gz
|
||||||
|
/commons-cli-1.10.0-src.tar.gz
|
||||||
|
|
|
||||||
67
0001-Port-tests-to-commons-lang3.patch
Normal file
67
0001-Port-tests-to-commons-lang3.patch
Normal file
|
|
@ -0,0 +1,67 @@
|
||||||
|
From 92fcda0792a631eebef413a6608bd9c91794158d Mon Sep 17 00:00:00 2001
|
||||||
|
From: Mikolaj Izdebski <mizdebsk@redhat.com>
|
||||||
|
Date: Fri, 10 Oct 2025 16:50:15 +0200
|
||||||
|
Subject: [PATCH] Port tests to commons-lang3
|
||||||
|
|
||||||
|
We want to avoid dependency on commons-text for now.
|
||||||
|
---
|
||||||
|
pom.xml | 4 ++--
|
||||||
|
.../org/apache/commons/cli/example/AptHelpAppendable.java | 6 +++---
|
||||||
|
.../org/apache/commons/cli/example/XhtmlHelpAppendable.java | 2 +-
|
||||||
|
3 files changed, 6 insertions(+), 6 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/pom.xml b/pom.xml
|
||||||
|
index 2663f3f..95ac48c 100644
|
||||||
|
--- a/pom.xml
|
||||||
|
+++ b/pom.xml
|
||||||
|
@@ -69,8 +69,8 @@
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.commons</groupId>
|
||||||
|
- <artifactId>commons-text</artifactId>
|
||||||
|
- <version>1.14.0</version>
|
||||||
|
+ <artifactId>commons-lang3</artifactId>
|
||||||
|
+ <version>3.18.0</version>
|
||||||
|
<scope>test</scope>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
diff --git a/src/test/java/org/apache/commons/cli/example/AptHelpAppendable.java b/src/test/java/org/apache/commons/cli/example/AptHelpAppendable.java
|
||||||
|
index cbedfe2..7e275c1 100644
|
||||||
|
--- a/src/test/java/org/apache/commons/cli/example/AptHelpAppendable.java
|
||||||
|
+++ b/src/test/java/org/apache/commons/cli/example/AptHelpAppendable.java
|
||||||
|
@@ -25,8 +25,8 @@ import org.apache.commons.cli.help.FilterHelpAppendable;
|
||||||
|
import org.apache.commons.cli.help.TableDefinition;
|
||||||
|
import org.apache.commons.cli.help.TextStyle;
|
||||||
|
import org.apache.commons.lang3.StringUtils;
|
||||||
|
-import org.apache.commons.text.translate.CharSequenceTranslator;
|
||||||
|
-import org.apache.commons.text.translate.LookupTranslator;
|
||||||
|
+import org.apache.commons.lang3.text.translate.CharSequenceTranslator;
|
||||||
|
+import org.apache.commons.lang3.text.translate.LookupTranslator;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Appends APT formatted text to an {@link Appendable}.
|
||||||
|
@@ -45,7 +45,7 @@ public class AptHelpAppendable extends FilterHelpAppendable {
|
||||||
|
escapeAptMap.put("*", "\\*");
|
||||||
|
escapeAptMap.put("+", "\\+");
|
||||||
|
escapeAptMap.put("|", "\\|");
|
||||||
|
- ESCAPE_APT = new LookupTranslator(escapeAptMap);
|
||||||
|
+ ESCAPE_APT = new LookupTranslator(escapeAptMap.entrySet().stream().map(e -> new CharSequence[]{ e.getKey(), e.getValue() }).toArray(CharSequence[][]::new));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
diff --git a/src/test/java/org/apache/commons/cli/example/XhtmlHelpAppendable.java b/src/test/java/org/apache/commons/cli/example/XhtmlHelpAppendable.java
|
||||||
|
index 51ae058..ee6f2b3 100644
|
||||||
|
--- a/src/test/java/org/apache/commons/cli/example/XhtmlHelpAppendable.java
|
||||||
|
+++ b/src/test/java/org/apache/commons/cli/example/XhtmlHelpAppendable.java
|
||||||
|
@@ -24,7 +24,7 @@ import java.util.Objects;
|
||||||
|
import org.apache.commons.cli.help.FilterHelpAppendable;
|
||||||
|
import org.apache.commons.cli.help.TableDefinition;
|
||||||
|
import org.apache.commons.lang3.StringUtils;
|
||||||
|
-import org.apache.commons.text.StringEscapeUtils;
|
||||||
|
+import org.apache.commons.lang3.StringEscapeUtils;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Appends XHTML formatted text to an {@link Appendable}.
|
||||||
|
--
|
||||||
|
2.51.0
|
||||||
|
|
||||||
|
|
@ -1,39 +1,46 @@
|
||||||
%bcond_with bootstrap
|
%bcond_with bootstrap
|
||||||
|
|
||||||
Name: apache-commons-cli
|
Name: apache-commons-cli
|
||||||
Version: 1.5.0
|
Version: 1.10.0
|
||||||
Release: 4%{?dist}
|
Release: %autorelease
|
||||||
Summary: Command Line Interface Library for Java
|
Summary: Command Line Interface Library for Java
|
||||||
License: ASL 2.0
|
License: Apache-2.0
|
||||||
URL: http://commons.apache.org/cli/
|
URL: https://commons.apache.org/proper/commons-cli/
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
ExclusiveArch: %{java_arches} noarch
|
ExclusiveArch: %{java_arches} noarch
|
||||||
|
|
||||||
Source0: http://www.apache.org/dist/commons/cli/source/commons-cli-%{version}-src.tar.gz
|
Source0: https://www.apache.org/dist/commons/cli/source/commons-cli-%{version}-src.tar.gz
|
||||||
|
|
||||||
|
Patch: 0001-Port-tests-to-commons-lang3.patch
|
||||||
|
|
||||||
%if %{with bootstrap}
|
%if %{with bootstrap}
|
||||||
BuildRequires: javapackages-bootstrap
|
BuildRequires: javapackages-bootstrap
|
||||||
%else
|
%else
|
||||||
BuildRequires: maven-local
|
BuildRequires: maven-local-openjdk25
|
||||||
BuildRequires: mvn(junit:junit)
|
BuildRequires: mvn(commons-io:commons-io)
|
||||||
BuildRequires: mvn(org.apache.commons:commons-parent:pom:)
|
BuildRequires: mvn(org.apache.commons:commons-parent:pom:)
|
||||||
|
BuildRequires: mvn(org.apache.maven.plugins:maven-antrun-plugin)
|
||||||
|
BuildRequires: mvn(org.junit.jupiter:junit-jupiter-api)
|
||||||
|
BuildRequires: mvn(org.junit.jupiter:junit-jupiter-engine)
|
||||||
|
BuildRequires: mvn(org.junit.jupiter:junit-jupiter-params)
|
||||||
|
BuildRequires: mvn(org.mockito:mockito-core)
|
||||||
%endif
|
%endif
|
||||||
|
# TODO Remove in Fedora 46
|
||||||
|
Obsoletes: %{name}-javadoc < 1.9.0-7
|
||||||
|
|
||||||
%description
|
%description
|
||||||
The CLI library provides a simple and easy to use API for working with the
|
The CLI library provides a simple and easy to use API for working with the
|
||||||
command line arguments and options.
|
command line arguments and options.
|
||||||
|
|
||||||
%{?javadoc_package}
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%autosetup -p1 -n commons-cli-%{version}-src
|
%autosetup -p1 -C
|
||||||
|
|
||||||
# Compatibility links
|
# Compatibility links
|
||||||
%mvn_alias : org.apache.commons:commons-cli
|
%mvn_alias : org.apache.commons:commons-cli
|
||||||
%mvn_file : commons-cli %{name}
|
%mvn_file : commons-cli %{name}
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%mvn_build
|
%mvn_build -j
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%mvn_install
|
%mvn_install
|
||||||
|
|
@ -43,132 +50,4 @@ command line arguments and options.
|
||||||
%doc README.md RELEASE-NOTES.txt
|
%doc README.md RELEASE-NOTES.txt
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Wed Jul 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.0-4
|
%autochangelog
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sat Feb 05 2022 Jiri Vanek <jvanek@redhat.com> - 1.5.0-3
|
|
||||||
- Rebuilt for java-17-openjdk as system jdk
|
|
||||||
|
|
||||||
* Wed Jan 19 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.0-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
||||||
|
|
||||||
* Thu Nov 4 2021 Christian Schuermann <spike@fedoraproject.org> 1.5.0-1
|
|
||||||
- Update to upstream version 1.5.0
|
|
||||||
|
|
||||||
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.4-14
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon May 17 2021 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.4-13
|
|
||||||
- Bootstrap build
|
|
||||||
- Non-bootstrap build
|
|
||||||
|
|
||||||
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.4-12
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.4-11
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Jul 10 2020 Jiri Vanek <jvanek@redhat.com> - 1.4-10
|
|
||||||
- Rebuilt for JDK-11, see https://fedoraproject.org/wiki/Changes/Java11
|
|
||||||
|
|
||||||
* Wed Jun 24 2020 Alexander Kurtakov <akurtako@redhat.com> 1.4-9
|
|
||||||
- Fix build with Java 11
|
|
||||||
|
|
||||||
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.4-8
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sat Jan 25 2020 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.4-7
|
|
||||||
- Build with OpenJDK 8
|
|
||||||
|
|
||||||
* Tue Nov 05 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.4-6
|
|
||||||
- Mass rebuild for javapackages-tools 201902
|
|
||||||
|
|
||||||
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.4-7
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri May 24 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.4-5
|
|
||||||
- Mass rebuild for javapackages-tools 201901
|
|
||||||
|
|
||||||
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.4-6
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
||||||
|
|
||||||
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.4-5
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.4-4
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Jan 29 2018 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.4-3
|
|
||||||
- Cleanup spec file
|
|
||||||
|
|
||||||
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.4-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Apr 11 2017 Michael Simacek <msimacek@redhat.com> - 1.4-1
|
|
||||||
- Update to upstream version 1.4
|
|
||||||
|
|
||||||
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.1-6
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Feb 01 2017 Michael Simacek <msimacek@redhat.com> - 1.3.1-5
|
|
||||||
- Remove BR on jacoco
|
|
||||||
|
|
||||||
* Wed Jun 15 2016 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.3.1-4
|
|
||||||
- Regenerate build-requires
|
|
||||||
|
|
||||||
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.1-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Jun 23 2015 Michal Srb <msrb@redhat.com> - 1.3.1-2
|
|
||||||
- Add workaround for CLI-253
|
|
||||||
|
|
||||||
* Wed Jun 17 2015 Michal Srb <msrb@redhat.com> - 1.3.1-1
|
|
||||||
- Update to upstream version 1.3.1
|
|
||||||
|
|
||||||
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Jun 3 2015 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.3-1
|
|
||||||
- Update to upstream version 1.3
|
|
||||||
|
|
||||||
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2-13
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Mar 04 2014 Stanislav Ochotnicky <sochotnicky@redhat.com> - 1.2-12
|
|
||||||
- Use Requires: java-headless rebuild (#1067528)
|
|
||||||
|
|
||||||
* Mon Aug 05 2013 Mat Booth <fedora@matbooth.co.uk> - 1.2-11
|
|
||||||
- Update for newer guidelines
|
|
||||||
- Drop ancient obsoletes/provides on old jakarta name
|
|
||||||
|
|
||||||
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2-10
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Feb 19 2013 Mat Booth <fedora@matbooth.co.uk> - 1.2-9
|
|
||||||
- Add missing maven-local BuildRequires
|
|
||||||
|
|
||||||
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2-8
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2-7
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
||||||
|
|
||||||
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2-6
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Nov 30 2011 Alexander Kurtakov <akurtako@redhat.com> 1.2-5
|
|
||||||
- Build with maven 3.
|
|
||||||
- Adapt to current guidelines.
|
|
||||||
|
|
||||||
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2-4
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Nov 9 2010 Chris Spike <chris.spike@arcor.de> 1.2-3
|
|
||||||
- Removed maven* BRs in favour of apache-commons-parent
|
|
||||||
- Added deprecated groupId to depmap for compatibility reasons
|
|
||||||
|
|
||||||
* Mon Oct 18 2010 Chris Spike <chris.spike@arcor.de> 1.2-2
|
|
||||||
- Removed Epoch
|
|
||||||
|
|
||||||
* Sun Oct 3 2010 Chris Spike <chris.spike@arcor.de> 1.2-1
|
|
||||||
- Rename and rebase from jakarta-commons-cli
|
|
||||||
|
|
|
||||||
162
changelog
Normal file
162
changelog
Normal file
|
|
@ -0,0 +1,162 @@
|
||||||
|
* Wed Jul 17 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jul 16 2024 Marian Koncek <mkoncek@redhat.com> - 1.8.0-1
|
||||||
|
- Update to upstream version 1.8.0
|
||||||
|
|
||||||
|
* Tue Feb 27 2024 Jiri Vanek <jvanek@redhat.com> - 1.6.0-5
|
||||||
|
- Rebuilt for java-21-openjdk as system jdk
|
||||||
|
|
||||||
|
* Fri Feb 23 2024 Jiri Vanek <jvanek@redhat.com> - 1.6.0-4
|
||||||
|
- bump of release for for java-21-openjdk as system jdk
|
||||||
|
|
||||||
|
* Mon Jan 22 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.6.0-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jan 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.6.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Dec 04 2023 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.6.0-1
|
||||||
|
- Update to upstream version 1.6.0
|
||||||
|
|
||||||
|
* Wed Sep 20 2023 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.5.0-8
|
||||||
|
- Rebuild to regenerate auto-Requires on java
|
||||||
|
|
||||||
|
* Fri Sep 01 2023 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.5.0-7
|
||||||
|
- Convert License tag to SPDX format
|
||||||
|
|
||||||
|
* Wed Jul 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.0-6
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 18 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.0-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.0-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Feb 05 2022 Jiri Vanek <jvanek@redhat.com> - 1.5.0-3
|
||||||
|
- Rebuilt for java-17-openjdk as system jdk
|
||||||
|
|
||||||
|
* Wed Jan 19 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Nov 4 2021 Christian Schuermann <spike@fedoraproject.org> 1.5.0-1
|
||||||
|
- Update to upstream version 1.5.0
|
||||||
|
|
||||||
|
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.4-14
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon May 17 2021 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.4-13
|
||||||
|
- Bootstrap build
|
||||||
|
- Non-bootstrap build
|
||||||
|
|
||||||
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.4-12
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.4-11
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 10 2020 Jiri Vanek <jvanek@redhat.com> - 1.4-10
|
||||||
|
- Rebuilt for JDK-11, see https://fedoraproject.org/wiki/Changes/Java11
|
||||||
|
|
||||||
|
* Wed Jun 24 2020 Alexander Kurtakov <akurtako@redhat.com> 1.4-9
|
||||||
|
- Fix build with Java 11
|
||||||
|
|
||||||
|
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.4-8
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jan 25 2020 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.4-7
|
||||||
|
- Build with OpenJDK 8
|
||||||
|
|
||||||
|
* Tue Nov 05 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.4-6
|
||||||
|
- Mass rebuild for javapackages-tools 201902
|
||||||
|
|
||||||
|
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.4-7
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri May 24 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.4-5
|
||||||
|
- Mass rebuild for javapackages-tools 201901
|
||||||
|
|
||||||
|
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.4-6
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.4-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.4-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jan 29 2018 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.4-3
|
||||||
|
- Cleanup spec file
|
||||||
|
|
||||||
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.4-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Apr 11 2017 Michael Simacek <msimacek@redhat.com> - 1.4-1
|
||||||
|
- Update to upstream version 1.4
|
||||||
|
|
||||||
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.1-6
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Feb 01 2017 Michael Simacek <msimacek@redhat.com> - 1.3.1-5
|
||||||
|
- Remove BR on jacoco
|
||||||
|
|
||||||
|
* Wed Jun 15 2016 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.3.1-4
|
||||||
|
- Regenerate build-requires
|
||||||
|
|
||||||
|
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.1-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jun 23 2015 Michal Srb <msrb@redhat.com> - 1.3.1-2
|
||||||
|
- Add workaround for CLI-253
|
||||||
|
|
||||||
|
* Wed Jun 17 2015 Michal Srb <msrb@redhat.com> - 1.3.1-1
|
||||||
|
- Update to upstream version 1.3.1
|
||||||
|
|
||||||
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jun 3 2015 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.3-1
|
||||||
|
- Update to upstream version 1.3
|
||||||
|
|
||||||
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2-13
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Mar 04 2014 Stanislav Ochotnicky <sochotnicky@redhat.com> - 1.2-12
|
||||||
|
- Use Requires: java-headless rebuild (#1067528)
|
||||||
|
|
||||||
|
* Mon Aug 05 2013 Mat Booth <fedora@matbooth.co.uk> - 1.2-11
|
||||||
|
- Update for newer guidelines
|
||||||
|
- Drop ancient obsoletes/provides on old jakarta name
|
||||||
|
|
||||||
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2-10
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Feb 19 2013 Mat Booth <fedora@matbooth.co.uk> - 1.2-9
|
||||||
|
- Add missing maven-local BuildRequires
|
||||||
|
|
||||||
|
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2-8
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2-7
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2-6
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Nov 30 2011 Alexander Kurtakov <akurtako@redhat.com> 1.2-5
|
||||||
|
- Build with maven 3.
|
||||||
|
- Adapt to current guidelines.
|
||||||
|
|
||||||
|
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Nov 9 2010 Chris Spike <chris.spike@arcor.de> 1.2-3
|
||||||
|
- Removed maven* BRs in favour of apache-commons-parent
|
||||||
|
- Added deprecated groupId to depmap for compatibility reasons
|
||||||
|
|
||||||
|
* Mon Oct 18 2010 Chris Spike <chris.spike@arcor.de> 1.2-2
|
||||||
|
- Removed Epoch
|
||||||
|
|
||||||
|
* Sun Oct 3 2010 Chris Spike <chris.spike@arcor.de> 1.2-1
|
||||||
|
- Rename and rebase from jakarta-commons-cli
|
||||||
1
ci.fmf
Normal file
1
ci.fmf
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
resultsdb-testcase: separate
|
||||||
8
gating.yaml
Normal file
8
gating.yaml
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
--- !Policy
|
||||||
|
product_versions:
|
||||||
|
- fedora-*
|
||||||
|
decision_contexts:
|
||||||
|
- bodhi_update_push_testing
|
||||||
|
- bodhi_update_push_stable
|
||||||
|
rules:
|
||||||
|
- !PassingTestCaseRule {test_case_name: fedora-ci.koji-build./plans/javapackages.functional}
|
||||||
7
plans/javapackages.fmf
Normal file
7
plans/javapackages.fmf
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
summary: Run javapackages-specific tests
|
||||||
|
discover:
|
||||||
|
how: fmf
|
||||||
|
url: https://gitlab.com/redhat/centos-stream/tests/javapackages.git
|
||||||
|
ref: f43
|
||||||
|
execute:
|
||||||
|
how: tmt
|
||||||
2
sources
2
sources
|
|
@ -1 +1 @@
|
||||||
SHA512 (commons-cli-1.5.0-src.tar.gz) = aa2165695177c3e4561f68585cafb5434758138d8a863f3db1860477f660cf78664d2afb07cc3bc767bc8fa87befc7eaa5bdead423ee8b883c62ff00aec7cdda
|
SHA512 (commons-cli-1.10.0-src.tar.gz) = 245951919a88068f692fc4cab906cb210bbefd853d851167d5c34fd4aebab7370766458033c47cf8174d7a409c4364752770b573252d19746cbb9a0e2c8c255b
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue