Compare commits
No commits in common. "c8-stream-201902" and "c9s" have entirely different histories.
c8-stream-
...
c9s
@ -1 +0,0 @@
|
||||
1aa7db759071fdc0b72475d88cd8cc13db0fa5ca SOURCES/RELEASE_3_3_0.tar.gz
|
11
.gitignore
vendored
11
.gitignore
vendored
@ -1 +1,10 @@
|
||||
SOURCES/RELEASE_3_3_0.tar.gz
|
||||
cglib-src-2.2.jar
|
||||
/cglib-src-3.0.jar
|
||||
/cglib-3.0.pom
|
||||
/cglib-src-3.1.jar
|
||||
/cglib-3.1.pom
|
||||
/RELEASE_3_2_4.tar.gz
|
||||
/cglib-RELEASE_3_2_4
|
||||
/RELEASE_3_2_9.tar.gz
|
||||
/RELEASE_3_2_12.tar.gz
|
||||
/RELEASE_3_3_0.tar.gz
|
||||
|
@ -1,8 +1,10 @@
|
||||
%bcond_with bootstrap
|
||||
|
||||
%global tarball_name RELEASE_%(echo '%{version}' | tr . _)
|
||||
|
||||
Name: cglib
|
||||
Version: 3.3.0
|
||||
Release: 2%{?dist}
|
||||
Release: 6%{?dist}
|
||||
Summary: Code Generation Library for Java
|
||||
# ASM MethodVisitor is based on ASM code and therefore
|
||||
# BSD-licensed. Everything else is ASL 2.0.
|
||||
@ -15,10 +17,13 @@ Source0: https://github.com/cglib/cglib/archive/%{tarball_name}.tar.gz
|
||||
Patch0: 0001-Remove-unused-import.patch
|
||||
|
||||
BuildRequires: maven-local
|
||||
%if %{with bootstrap}
|
||||
BuildRequires: javapackages-bootstrap
|
||||
%else
|
||||
BuildRequires: mvn(org.apache.ant:ant)
|
||||
BuildRequires: mvn(org.apache.felix:maven-bundle-plugin)
|
||||
BuildRequires: mvn(org.ow2.asm:asm)
|
||||
BuildRequires: mvn(org.sonatype.oss:oss-parent:pom:)
|
||||
%endif
|
||||
|
||||
%description
|
||||
cglib is a powerful, high performance and quality code generation library
|
||||
@ -35,6 +40,9 @@ Documentation for the cglib code generation library.
|
||||
%setup -q -n %{name}-%{tarball_name}
|
||||
%patch0 -p1
|
||||
|
||||
# remove unnecessary dependency on parent POM
|
||||
%pom_remove_parent
|
||||
|
||||
%pom_disable_module cglib-nodep
|
||||
%pom_disable_module cglib-integration-test
|
||||
%pom_disable_module cglib-jmh
|
||||
@ -73,12 +81,48 @@ Documentation for the cglib code generation library.
|
||||
%license LICENSE NOTICE
|
||||
|
||||
%changelog
|
||||
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 3.3.0-6
|
||||
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
||||
Related: rhbz#1991688
|
||||
|
||||
* Wed Jun 09 2021 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.3.0-5
|
||||
- Rebuild to workaround DistroBaker issue
|
||||
|
||||
* Tue Jun 08 2021 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.3.0-4
|
||||
- Bootstrap Maven for CentOS Stream 9
|
||||
|
||||
* Mon May 17 2021 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.3.0-3
|
||||
- Bootstrap build
|
||||
- Non-bootstrap build
|
||||
|
||||
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 3.2.9-9
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Sun Aug 30 2020 Fabio Valentini <decathorpe@gmail.com> - 3.2.9-8
|
||||
- Remove unnecessary dependency on parent POM.
|
||||
|
||||
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.2.9-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Fri Jul 10 2020 Jiri Vanek <jvanek@redhat.com> - 3.2.9-6
|
||||
- Rebuilt for JDK-11, see https://fedoraproject.org/wiki/Changes/Java11
|
||||
|
||||
* Fri Jun 26 2020 Roland Grunberg <rgrunber@redhat.com> - 3.2.9-5
|
||||
- Set maven-javadoc-plugin source to 1.8 for Java 11 build.
|
||||
- Ignore 5 test failures from upstream when run on Java 9 or above.
|
||||
|
||||
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.2.9-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Tue Nov 05 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.3.0-2
|
||||
- Mass rebuild for javapackages-tools 201902
|
||||
|
||||
* Thu Aug 15 2019 Marian Koncek <mkoncek@redhat.com> - 3.3.0-1
|
||||
- Update to upstream version 3.3.0
|
||||
|
||||
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.2.9-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Thu Jun 27 2019 Marian Koncek <mkoncek@redhat.com> - 3.2.12-1
|
||||
- Update to upstream version 3.2.12
|
||||
|
8
gating.yaml
Normal file
8
gating.yaml
Normal file
@ -0,0 +1,8 @@
|
||||
--- !Policy
|
||||
product_versions:
|
||||
- rhel-9
|
||||
decision_contexts:
|
||||
- osci_compose_gate
|
||||
rules:
|
||||
# https://docs.engineering.redhat.com/display/RHELPLAN/Maven+Bootstrap+manual+gating+test
|
||||
- !PassingTestCaseRule {test_case_name: manual.sst_cs_apps.maven.bootstrap}
|
Loading…
Reference in New Issue
Block a user