Files
proto-google-common-protos/proto-google-common-protos.spec

82 lines
2.4 KiB
RPMSpec

#
# spec file for package proto-google-common-protos
#
# Copyright (c) 2024 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/
#
Name: proto-google-common-protos
Version: 2.49.0
Release: 0
Summary: PROTO library for proto-google-common-protos
License: Apache-2.0
Group: Development/Libraries/Java
URL: https://github.com/googleapis/sdk-platform-java
Source0: sdk-platform-java-%{version}.tar.xz
Source1: %{name}-build.xml
BuildRequires: ant
BuildRequires: fdupes
BuildRequires: java-devel >= 1.8
BuildRequires: javapackages-local >= 6
BuildRequires: protobuf-java
BuildArch: noarch
%description
PROTO library for proto-google-common-protos.
%package javadoc
Summary: Javadoc for %{name}
Group: Documentation/HTML
%description javadoc
This package contains the API documentation for %{name}.
%prep
%setup -q -n sdk-platform-java-%{version}
cp %{SOURCE1} java-common-protos/proto-google-common-protos/build.xml
mkdir -p java-common-protos/proto-google-common-protos/lib
%build
pushd java-common-protos/proto-google-common-protos
build-jar-repository -s lib protobuf-java
ant package javadoc
%install
# jar
install -dm 0755 %{buildroot}%{_javadir}
install -pm 0644 java-common-protos/%{name}/target/%{name}-%{version}.jar \
%{buildroot}%{_javadir}/%{name}.jar
# pom
install -dm 0755 %{buildroot}%{_mavenpomdir}
%{mvn_install_pom} java-common-protos/%{name}/pom.xml \
%{buildroot}%{_mavenpomdir}/%{name}.pom
%add_maven_depmap %{name}.pom %{name}.jar
# javadoc
install -dm 0755 %{buildroot}%{_javadocdir}/%{name}
cp -a java-common-protos/%{name}/target/site/apidocs/* \
%{buildroot}%{_javadocdir}/%{name}
%fdupes -s %{buildroot}%{_javadocdir}/%{name}
%files -f .mfiles
%license LICENSE
%doc README.md
%files javadoc
%{_javadocdir}/%{name}
%changelog