Compare commits
No commits in common. "c8-stream-3.6" and "c9s" have entirely different histories.
c8-stream-
...
c9s
19
.gitignore
vendored
19
.gitignore
vendored
@ -1 +1,18 @@
|
|||||||
SOURCES/google-guice-4.2.2.tar.xz
|
/results_*
|
||||||
|
/*.src.rpm
|
||||||
|
|
||||||
|
/guice-2.0-1219.tar.xz
|
||||||
|
/guice-3.0-rc2-src.zip
|
||||||
|
/google-guice-3.1.3.tar.xz
|
||||||
|
/google-guice-3.1.8.tar.xz
|
||||||
|
/google-guice-3.1.9.tar.xz
|
||||||
|
/google-guice-3.1.10.tar.xz
|
||||||
|
/google-guice-3.2.1.tar.xz
|
||||||
|
/google-guice-3.2.2.tar.xz
|
||||||
|
/google-guice-3.2.4.tar.xz
|
||||||
|
/google-guice-3.2.5.tar.xz
|
||||||
|
/google-guice-3.2.6.tar.xz
|
||||||
|
/google-guice-4.0.tar.xz
|
||||||
|
/google-guice-4.1.tar.xz
|
||||||
|
/google-guice-4.2.2.tar.xz
|
||||||
|
/google-guice-4.2.3.tar.xz
|
||||||
|
@ -1 +0,0 @@
|
|||||||
b6026a2dca56aae1b1f7ebab2cd28b2d8445c2d8 SOURCES/google-guice-4.2.2.tar.xz
|
|
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}
|
@ -1,6 +1,8 @@
|
|||||||
|
%bcond_with bootstrap
|
||||||
|
|
||||||
Name: google-guice
|
Name: google-guice
|
||||||
Version: 4.2.2
|
Version: 4.2.3
|
||||||
Release: 4%{?dist}
|
Release: 9%{?dist}
|
||||||
Summary: Lightweight dependency injection framework for Java 5 and above
|
Summary: Lightweight dependency injection framework for Java 5 and above
|
||||||
License: ASL 2.0
|
License: ASL 2.0
|
||||||
URL: https://github.com/google/guice
|
URL: https://github.com/google/guice
|
||||||
@ -11,8 +13,10 @@ Source0: %{name}-%{version}.tar.xz
|
|||||||
Source1: create-tarball.sh
|
Source1: create-tarball.sh
|
||||||
|
|
||||||
BuildRequires: maven-local-openjdk8
|
BuildRequires: maven-local-openjdk8
|
||||||
BuildRequires: %{?module_prefix}mvn(aopalliance:aopalliance)
|
%if %{with bootstrap}
|
||||||
BuildRequires: mvn(cglib:cglib)
|
BuildRequires: javapackages-bootstrap
|
||||||
|
%else
|
||||||
|
BuildRequires: mvn(com.google.code.findbugs:jsr305)
|
||||||
BuildRequires: %{?module_prefix}mvn(com.google.guava:guava)
|
BuildRequires: %{?module_prefix}mvn(com.google.guava:guava)
|
||||||
BuildRequires: %{?module_prefix}mvn(javax.inject:javax.inject)
|
BuildRequires: %{?module_prefix}mvn(javax.inject:javax.inject)
|
||||||
BuildRequires: mvn(javax.servlet:servlet-api)
|
BuildRequires: mvn(javax.servlet:servlet-api)
|
||||||
@ -20,12 +24,12 @@ BuildRequires: mvn(org.apache.felix:maven-bundle-plugin)
|
|||||||
BuildRequires: mvn(org.apache.maven.plugins:maven-remote-resources-plugin)
|
BuildRequires: mvn(org.apache.maven.plugins:maven-remote-resources-plugin)
|
||||||
BuildRequires: mvn(org.apache.maven.plugins:maven-source-plugin)
|
BuildRequires: mvn(org.apache.maven.plugins:maven-source-plugin)
|
||||||
BuildRequires: mvn(org.codehaus.mojo:build-helper-maven-plugin)
|
BuildRequires: mvn(org.codehaus.mojo:build-helper-maven-plugin)
|
||||||
BuildRequires: mvn(org.ow2.asm:asm)
|
|
||||||
BuildRequires: mvn(org.slf4j:slf4j-api)
|
|
||||||
BuildRequires: mvn(org.sonatype.plugins:munge-maven-plugin)
|
BuildRequires: mvn(org.sonatype.plugins:munge-maven-plugin)
|
||||||
|
%endif
|
||||||
# xmvn-builddep misses this:
|
# xmvn-builddep misses this:
|
||||||
|
%if %{without bootstrap}
|
||||||
BuildRequires: mvn(org.apache:apache-jar-resource-bundle)
|
BuildRequires: mvn(org.apache:apache-jar-resource-bundle)
|
||||||
|
%endif
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Put simply, Guice alleviates the need for factories and the use of new
|
Put simply, Guice alleviates the need for factories and the use of new
|
||||||
@ -95,7 +99,6 @@ Summary: MultiBindings extension module for Guice
|
|||||||
Guice is a lightweight dependency injection framework for Java 5
|
Guice is a lightweight dependency injection framework for Java 5
|
||||||
and above. This package provides MultiBindings module for Guice.
|
and above. This package provides MultiBindings module for Guice.
|
||||||
|
|
||||||
|
|
||||||
%package -n guice-servlet
|
%package -n guice-servlet
|
||||||
Summary: Servlet extension module for Guice
|
Summary: Servlet extension module for Guice
|
||||||
|
|
||||||
@ -103,7 +106,6 @@ Summary: Servlet extension module for Guice
|
|||||||
Guice is a lightweight dependency injection framework for Java 5
|
Guice is a lightweight dependency injection framework for Java 5
|
||||||
and above. This package provides Servlet module for Guice.
|
and above. This package provides Servlet module for Guice.
|
||||||
|
|
||||||
|
|
||||||
%package -n guice-throwingproviders
|
%package -n guice-throwingproviders
|
||||||
Summary: ThrowingProviders extension module for Guice
|
Summary: ThrowingProviders extension module for Guice
|
||||||
|
|
||||||
@ -118,7 +120,6 @@ Summary: Bill of Materials for Guice
|
|||||||
Guice is a lightweight dependency injection framework for Java 5
|
Guice is a lightweight dependency injection framework for Java 5
|
||||||
and above. This package provides Bill of Materials module for Guice.
|
and above. This package provides Bill of Materials module for Guice.
|
||||||
|
|
||||||
%{?module_package}
|
|
||||||
%{?javadoc_package}
|
%{?javadoc_package}
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
@ -150,7 +151,7 @@ and above. This package provides Bill of Materials module for Guice.
|
|||||||
# remove test dependency to make sure we don't produce requires
|
# remove test dependency to make sure we don't produce requires
|
||||||
# see #1007498
|
# see #1007498
|
||||||
%pom_remove_dep :guava-testlib extensions
|
%pom_remove_dep :guava-testlib extensions
|
||||||
%pom_xpath_remove "pom:dependency[pom:classifier[text()='tests']]" extensions
|
%pom_xpath_remove "pom:dependency[pom:classifier='tests']" extensions
|
||||||
|
|
||||||
%pom_remove_parent
|
%pom_remove_parent
|
||||||
%pom_set_parent com.google.inject:guice-parent:%{version} jdk8-tests
|
%pom_set_parent com.google.inject:guice-parent:%{version} jdk8-tests
|
||||||
@ -166,10 +167,21 @@ and above. This package provides Bill of Materials module for Guice.
|
|||||||
|
|
||||||
%pom_disable_module testlib extensions
|
%pom_disable_module testlib extensions
|
||||||
|
|
||||||
|
%pom_remove_dep :aopalliance core
|
||||||
|
%pom_remove_dep :asm core
|
||||||
|
%pom_remove_dep :cglib core
|
||||||
|
%pom_xpath_remove "pom:plugin[pom:artifactId='maven-jar-plugin']/pom:configuration"
|
||||||
|
%pom_xpath_remove "pom:plugin[pom:artifactId='maven-jar-plugin']/pom:executions"
|
||||||
|
%pom_xpath_set "pom:plugin[pom:artifactId='munge-maven-plugin']/pom:executions/pom:execution/pom:phase" generate-sources core
|
||||||
|
%pom_xpath_set "pom:plugin[pom:artifactId='munge-maven-plugin']/pom:executions/pom:execution/pom:goals/pom:goal" munge core
|
||||||
|
|
||||||
|
%pom_xpath_inject "pom:dependency[pom:artifactId='guice']" "<scope>provided</scope>" extensions
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%mvn_alias "com.google.inject.extensions:" "org.sonatype.sisu.inject:"
|
%mvn_alias "com.google.inject.extensions:" "org.sonatype.sisu.inject:"
|
||||||
|
|
||||||
%mvn_package :::no_aop: guice
|
%mvn_package :::no_aop: guice
|
||||||
|
%mvn_package :guice:jar:{}: __noinstall
|
||||||
|
|
||||||
%mvn_file ":guice-{*}" guice/guice-@1
|
%mvn_file ":guice-{*}" guice/guice-@1
|
||||||
%mvn_file ":guice" guice/%{name} %{name}
|
%mvn_file ":guice" guice/%{name} %{name}
|
||||||
@ -197,12 +209,60 @@ and above. This package provides Bill of Materials module for Guice.
|
|||||||
%files -n guice-bom -f .mfiles-guice-bom
|
%files -n guice-bom -f .mfiles-guice-bom
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Jan 30 2023 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.2.3-9
|
||||||
|
- Rebuild to regenerate auto-requires
|
||||||
|
|
||||||
|
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 4.2.3-8
|
||||||
|
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
||||||
|
Related: rhbz#1991688
|
||||||
|
|
||||||
|
* Wed Jun 09 2021 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.2.3-7
|
||||||
|
- Rebuild to workaround DistroBaker issue
|
||||||
|
|
||||||
|
* Tue Jun 08 2021 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.2.3-6
|
||||||
|
- Bootstrap Maven for CentOS Stream 9
|
||||||
|
|
||||||
|
* Mon May 17 2021 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.2.3-5
|
||||||
|
- Bump release
|
||||||
|
|
||||||
|
* Mon May 17 2021 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.2.3-2
|
||||||
|
- Bootstrap build
|
||||||
|
- Non-bootstrap build
|
||||||
|
|
||||||
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 4.2.3-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Sep 18 2020 Marian Koncek <mkoncek@redhat.com> - 4.2.3-1
|
||||||
|
- Update to upstream version 4.2.3
|
||||||
|
|
||||||
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4.2.3-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 10 2020 Jiri Vanek <jvanek@redhat.com> - 4.2.3-2
|
||||||
|
- Rebuilt for JDK-11, see https://fedoraproject.org/wiki/Changes/Java11
|
||||||
|
|
||||||
|
* Fri May 08 2020 Fabio Valentini <decathorpe@gmail.com> - 4.2.3-1
|
||||||
|
- Update to version 4.2.3.
|
||||||
|
|
||||||
|
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4.2.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
* Sat Jan 25 2020 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.2.2-4
|
* Sat Jan 25 2020 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.2.2-4
|
||||||
- Build with OpenJDK 8
|
- Build with OpenJDK 8
|
||||||
|
|
||||||
* Tue Nov 05 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.2.2-3
|
* Tue Nov 05 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.2.2-3
|
||||||
- Mass rebuild for javapackages-tools 201902
|
- Mass rebuild for javapackages-tools 201902
|
||||||
|
|
||||||
|
* Mon Jul 29 2019 Fabio Valentini <decathorpe@gmail.com> - 4.2.2-1
|
||||||
|
- Update to version 4.2.2.
|
||||||
|
- Obsolete guice-testlib.
|
||||||
|
|
||||||
|
* Fri Jul 26 2019 Fabio Valentini <decathorpe@gmail.com> - 4.1-16
|
||||||
|
- Disable support for spring and JPA.
|
||||||
|
|
||||||
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 4.1-15
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
* Fri May 24 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.2.2-2
|
* Fri May 24 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.2.2-2
|
||||||
- Mass rebuild for javapackages-tools 201901
|
- Mass rebuild for javapackages-tools 201901
|
||||||
|
|
||||||
@ -210,6 +270,15 @@ and above. This package provides Bill of Materials module for Guice.
|
|||||||
- Update to upstream version 4.2.2
|
- Update to upstream version 4.2.2
|
||||||
- Fixes: RHBZ #1563661
|
- Fixes: RHBZ #1563661
|
||||||
|
|
||||||
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 4.1-14
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Dec 13 2018 Mat Booth <mat.booth@redhat.com> - 4.1-13
|
||||||
|
- Regenerate OSGi metadata due to ASM 7
|
||||||
|
|
||||||
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 4.1-12
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
* Wed Apr 18 2018 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.1-11
|
* Wed Apr 18 2018 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.1-11
|
||||||
- Remove legacy Provides
|
- Remove legacy Provides
|
||||||
|
|
Loading…
Reference in New Issue
Block a user