Compare commits
No commits in common. "c8-stream-3.6" and "c8-beta-stream-3.8" have entirely different histories.
c8-stream-
...
c8-beta-st
@ -1 +1 @@
|
|||||||
afef31c97292677f68dedd79b041beeb5d7f6642 SOURCES/commons-codec-1.13-src.tar.gz
|
2ff502f16cc9d6619a5d05dea2579196a08b05bb SOURCES/commons-codec-1.15-src.tar.gz
|
||||||
|
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1 @@
|
|||||||
SOURCES/commons-codec-1.13-src.tar.gz
|
SOURCES/commons-codec-1.15-src.tar.gz
|
||||||
|
@ -1,27 +1,33 @@
|
|||||||
|
%bcond_with bootstrap
|
||||||
|
|
||||||
Name: apache-commons-codec
|
Name: apache-commons-codec
|
||||||
Version: 1.13
|
Version: 1.15
|
||||||
Release: 3%{?dist}
|
Release: 8%{?dist}
|
||||||
Summary: Implementations of common encoders and decoders
|
Summary: Implementations of common encoders and decoders
|
||||||
License: ASL 2.0
|
License: ASL 2.0
|
||||||
URL: http://commons.apache.org/codec/
|
URL: https://commons.apache.org/codec/
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
ExclusiveArch: %{java_arches} noarch
|
||||||
|
|
||||||
Source0: http://archive.apache.org/dist/commons/codec/source/commons-codec-%{version}-src.tar.gz
|
Source0: https://archive.apache.org/dist/commons/codec/source/commons-codec-%{version}-src.tar.gz
|
||||||
# Data in DoubleMetaphoneTest.java originally has an inadmissible license.
|
# Data in DoubleMetaphoneTest.java originally has an inadmissible license.
|
||||||
# The author gives MIT in e-mail communication.
|
# The author gives MIT in e-mail communication.
|
||||||
Source1: aspell-mail.txt
|
Source1: aspell-mail.txt
|
||||||
|
|
||||||
|
%if %{with bootstrap}
|
||||||
|
BuildRequires: javapackages-bootstrap-openjdk8
|
||||||
|
%else
|
||||||
BuildRequires: maven-local-openjdk8
|
BuildRequires: maven-local-openjdk8
|
||||||
BuildRequires: mvn(junit:junit)
|
BuildRequires: mvn(junit:junit)
|
||||||
BuildRequires: mvn(org.apache.commons:commons-lang3)
|
BuildRequires: mvn(org.apache.commons:commons-lang3)
|
||||||
BuildRequires: mvn(org.apache.commons:commons-parent:pom:)
|
BuildRequires: mvn(org.apache.commons:commons-parent:pom:)
|
||||||
|
%endif
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Commons Codec is an attempt to provide definitive implementations of
|
Commons Codec is an attempt to provide definitive implementations of
|
||||||
commonly used encoders and decoders. Examples include Base64, Hex,
|
commonly used encoders and decoders. Examples include Base64, Hex,
|
||||||
Phonetic and URLs.
|
Phonetic and URLs.
|
||||||
|
|
||||||
%{?module_package}
|
|
||||||
%{?javadoc_package}
|
%{?javadoc_package}
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
@ -33,31 +39,89 @@ sed -i 's/\r//' RELEASE-NOTES*.txt LICENSE.txt NOTICE.txt
|
|||||||
%mvn_alias : commons-codec:commons-codec
|
%mvn_alias : commons-codec:commons-codec
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%mvn_build
|
# Avoid running out of heap on s390x during test suite execution
|
||||||
|
export MAVEN_OPTS="-Xmx1024m"
|
||||||
|
|
||||||
|
%mvn_build -- -Dcommons.osgi.symbolicName=org.apache.commons.codec
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%mvn_install
|
%mvn_install
|
||||||
|
|
||||||
%files -n %{?module_prefix}%{name} -f .mfiles
|
%files -f .mfiles
|
||||||
%license LICENSE.txt NOTICE.txt aspell-mail.txt
|
%license LICENSE.txt NOTICE.txt aspell-mail.txt
|
||||||
%doc RELEASE-NOTES*
|
%doc RELEASE-NOTES*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Sat Jan 25 2020 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.13-3
|
* Mon Feb 05 2024 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.15-8
|
||||||
|
- Rebuild to regenerate auto-requires
|
||||||
|
|
||||||
|
* Wed Jul 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.15-7
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Feb 05 2022 Jiri Vanek <jvanek@redhat.com> - 1.15-6
|
||||||
|
- Rebuilt for java-17-openjdk as system jdk
|
||||||
|
|
||||||
|
* Wed Jan 19 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.15-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.15-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon May 17 2021 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.15-3
|
||||||
|
- Bootstrap build
|
||||||
|
- Non-bootstrap build
|
||||||
|
|
||||||
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.15-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Sep 11 2020 Marian Koncek <mkoncek@redhat.com> - 1.15-1
|
||||||
|
- Update to upstream version 1.15
|
||||||
|
|
||||||
|
* Fri Sep 04 2020 Mat Booth <mat.booth@redhat.com> - 1.15-1
|
||||||
|
- Update to latest upstream release
|
||||||
|
|
||||||
|
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.13-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 10 2020 Jiri Vanek <jvanek@redhat.com> - 1.13-3
|
||||||
|
- Rebuilt for JDK-11, see https://fedoraproject.org/wiki/Changes/Java11
|
||||||
|
|
||||||
|
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.13-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jan 25 2020 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.14-2
|
||||||
- Build with OpenJDK 8
|
- Build with OpenJDK 8
|
||||||
|
|
||||||
|
* Wed Jan 22 2020 Marian Koncek <mkoncek@redhat.com> - 1.14-1
|
||||||
|
- Update to upstream version 1.14
|
||||||
|
|
||||||
|
* Thu Dec 12 2019 Mat Booth <mat.booth@redhat.com> - 1.13-1
|
||||||
|
- Update to upstream version 1.13
|
||||||
|
|
||||||
* Tue Nov 05 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.13-2
|
* Tue Nov 05 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.13-2
|
||||||
- Mass rebuild for javapackages-tools 201902
|
- Mass rebuild for javapackages-tools 201902
|
||||||
|
|
||||||
* Mon Jul 29 2019 Marian Koncek <mkoncek@redhat.com> - 1.13-1
|
* Mon Jul 29 2019 Marian Koncek <mkoncek@redhat.com> - 1.13-1
|
||||||
- Update to upstream version 1.13
|
- Update to upstream version 1.13
|
||||||
|
|
||||||
|
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.11-7
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
* Fri May 24 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.12-2
|
* Fri May 24 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.12-2
|
||||||
- Mass rebuild for javapackages-tools 201901
|
- Mass rebuild for javapackages-tools 201901
|
||||||
|
|
||||||
* Mon May 13 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.12-1
|
* Mon May 13 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.12-1
|
||||||
- Update to upstream version 1.12
|
- Update to upstream version 1.12
|
||||||
|
|
||||||
|
* Thu Feb 07 2019 Mat Booth <mat.booth@redhat.com> - 1.11-6
|
||||||
|
- Rebuild to regenerate OSGi metadata
|
||||||
|
|
||||||
|
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.11-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.11-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.11-3
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.11-3
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user