84 lines
2.5 KiB
RPMSpec
84 lines
2.5 KiB
RPMSpec
#
|
|
# spec file
|
|
#
|
|
# Copyright (c) 2023 SUSE LLC
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%global source_name error-prone
|
|
%global artifactId error_prone_annotations
|
|
%global group_name google-errorprone
|
|
Name: %{group_name}-annotations
|
|
Version: 2.11.0
|
|
Release: 0
|
|
Summary: error-prone annotations
|
|
License: Apache-2.0
|
|
Group: Development/Libraries/Java
|
|
URL: https://errorprone.info
|
|
Source0: %{source_name}-%{version}.tar.xz
|
|
Source1: %{name}-build.xml
|
|
BuildRequires: ant
|
|
BuildRequires: fdupes
|
|
BuildRequires: javapackages-local
|
|
BuildArch: noarch
|
|
|
|
%description
|
|
Google Error Prone is a static analysis tool for Java that catches
|
|
common programming mistakes at compile-time.
|
|
|
|
This package contains Google Error Prone annotations
|
|
|
|
%package javadoc
|
|
Summary: Javadoc for %{name}
|
|
Group: Documentation/HTML
|
|
|
|
%description javadoc
|
|
This package contains the API documentation for %{name}.
|
|
|
|
%prep
|
|
%setup -q -n %{source_name}-%{version}
|
|
cp %{SOURCE1} annotations/build.xml
|
|
%pom_remove_parent annotations
|
|
%pom_xpath_inject pom:project "
|
|
<groupId>com.google.errorprone</groupId>
|
|
<version>2.11.0</version>" annotations
|
|
|
|
%build
|
|
pushd annotations
|
|
%{ant} jar javadoc
|
|
popd
|
|
|
|
%install
|
|
# jars
|
|
install -d -m 0755 %{buildroot}%{_javadir}/%{group_name}
|
|
install -p -m 0644 annotations/target/%{artifactId}-%{version}.jar %{buildroot}%{_javadir}/%{group_name}/annotations.jar
|
|
# pom
|
|
install -d -m 755 %{buildroot}%{_mavenpomdir}/%{group_name}
|
|
install -pm 644 annotations/pom.xml %{buildroot}%{_mavenpomdir}/%{group_name}/annotations.pom
|
|
%add_maven_depmap %{group_name}/annotations.pom %{group_name}/annotations.jar
|
|
# javadoc
|
|
install -d -m 755 %{buildroot}%{_javadocdir}/%{name}
|
|
cp -pr annotations/target/site/apidocs/* %{buildroot}%{_javadocdir}/%{name}
|
|
%fdupes -s %{buildroot}%{_javadocdir}
|
|
|
|
%files -f .mfiles
|
|
%license COPYING
|
|
|
|
%files javadoc
|
|
%{_javadocdir}/%{name}
|
|
%license COPYING
|
|
%doc README.md
|
|
|
|
%changelog
|