forked from pool/guava
Accepting request 1148908 from Java:packages
cleanup OBS-URL: https://build.opensuse.org/request/show/1148908 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/guava?expand=0&rev=10
This commit is contained in:
commit
a2c580359e
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Feb 21 22:05:15 UTC 2024 - Fridrich Strba <fstrba@suse.com>
|
||||||
|
|
||||||
|
- Clean the spec file and simplify it a bit
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Jun 15 13:20:35 UTC 2023 - Fridrich Strba <fstrba@suse.com>
|
Thu Jun 15 13:20:35 UTC 2023 - Fridrich Strba <fstrba@suse.com>
|
||||||
|
|
||||||
|
21
guava.spec
21
guava.spec
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package guava
|
# spec file for package guava
|
||||||
#
|
#
|
||||||
# Copyright (c) 2023 SUSE LLC
|
# Copyright (c) 2024 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -30,10 +30,9 @@ BuildRequires: checker-qual
|
|||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: google-errorprone-annotations
|
BuildRequires: google-errorprone-annotations
|
||||||
BuildRequires: j2objc-annotations
|
BuildRequires: j2objc-annotations
|
||||||
BuildRequires: javapackages-local
|
BuildRequires: javapackages-local >= 6
|
||||||
BuildRequires: jsr-305
|
BuildRequires: jsr-305
|
||||||
BuildRequires: junit
|
BuildRequires: junit
|
||||||
Requires: mvn(com.google.code.findbugs:jsr305)
|
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@ -54,7 +53,6 @@ API documentation for %{name}.
|
|||||||
%package testlib
|
%package testlib
|
||||||
Summary: The guava-testlib artifact
|
Summary: The guava-testlib artifact
|
||||||
Group: Development/Libraries/Java
|
Group: Development/Libraries/Java
|
||||||
Requires: mvn(junit:junit)
|
|
||||||
|
|
||||||
%description testlib
|
%description testlib
|
||||||
guava-testlib provides additional functionality for conveninent unit testing
|
guava-testlib provides additional functionality for conveninent unit testing
|
||||||
@ -76,19 +74,10 @@ find . -name '*.jar' -delete
|
|||||||
%pom_remove_dep -r :listenablefuture
|
%pom_remove_dep -r :listenablefuture
|
||||||
%pom_remove_dep -r :failureaccess
|
%pom_remove_dep -r :failureaccess
|
||||||
|
|
||||||
for mod in guava guava-testlib futures/failureaccess; do
|
|
||||||
%pom_remove_parent ${mod}
|
|
||||||
%pom_xpath_inject pom:project '
|
|
||||||
<groupId>com.google.guava</groupId>
|
|
||||||
<version>%{version}</version>' ${mod}
|
|
||||||
done
|
|
||||||
|
|
||||||
%pom_change_dep -r :error_prone_annotations :::provided
|
%pom_change_dep -r :error_prone_annotations :::provided
|
||||||
%pom_change_dep -r :j2objc-annotations :::provided
|
%pom_change_dep -r :j2objc-annotations :::provided
|
||||||
%pom_change_dep -r org.checkerframework: :::provided
|
%pom_change_dep -r org.checkerframework: :::provided
|
||||||
|
|
||||||
%pom_change_dep -r -f :::: ::::
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
mkdir -p lib
|
mkdir -p lib
|
||||||
build-jar-repository -s lib junit jsr-305 google-errorprone/annotations checker-qual j2objc-annotations
|
build-jar-repository -s lib junit jsr-305 google-errorprone/annotations checker-qual j2objc-annotations
|
||||||
@ -102,12 +91,12 @@ install -pm 0644 %{name}-testlib/target/%{name}-testlib-%{version}*.jar %{buildr
|
|||||||
|
|
||||||
# poms
|
# poms
|
||||||
install -dm 0755 %{buildroot}%{_mavenpomdir}/%{name}
|
install -dm 0755 %{buildroot}%{_mavenpomdir}/%{name}
|
||||||
install -pm 0644 %{name}/pom.xml %{buildroot}%{_mavenpomdir}/%{name}/%{name}.pom
|
%{mvn_install_pom} %{name}/pom.xml %{buildroot}%{_mavenpomdir}/%{name}/%{name}.pom
|
||||||
%add_maven_depmap %{name}/%{name}.pom %{name}/%{name}.jar
|
%add_maven_depmap %{name}/%{name}.pom %{name}/%{name}.jar
|
||||||
# We integrated this artifact in our main package
|
# We integrated this artifact in our main package
|
||||||
install -pm 0644 futures/failureaccess/pom.xml %{buildroot}%{_mavenpomdir}/%{name}/failureaccess.pom
|
%{mvn_install_pom} futures/failureaccess/pom.xml %{buildroot}%{_mavenpomdir}/%{name}/failureaccess.pom
|
||||||
%add_maven_depmap %{name}/failureaccess.pom %{name}/%{name}.jar
|
%add_maven_depmap %{name}/failureaccess.pom %{name}/%{name}.jar
|
||||||
install -pm 0644 %{name}-testlib/pom.xml %{buildroot}%{_mavenpomdir}/%{name}/%{name}-testlib.pom
|
%{mvn_install_pom} %{name}-testlib/pom.xml %{buildroot}%{_mavenpomdir}/%{name}/%{name}-testlib.pom
|
||||||
%add_maven_depmap %{name}/%{name}-testlib.pom %{name}/%{name}-testlib.jar -f %{name}-testlib
|
%add_maven_depmap %{name}/%{name}-testlib.pom %{name}/%{name}-testlib.jar -f %{name}-testlib
|
||||||
|
|
||||||
# javadoc
|
# javadoc
|
||||||
|
Loading…
x
Reference in New Issue
Block a user