89 lines
2.8 KiB
RPMSpec
89 lines
2.8 KiB
RPMSpec
|
#
|
||
|
# spec file for package apache-commons-cli
|
||
|
#
|
||
|
# 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 base_name cli
|
||
|
%global short_name commons-%{base_name}
|
||
|
Name: apache-commons-cli
|
||
|
Version: 1.5.0
|
||
|
Release: 0
|
||
|
Summary: Command Line Interface Library for Java
|
||
|
License: Apache-2.0
|
||
|
Group: Development/Libraries/Java
|
||
|
URL: https://commons.apache.org/%{base_name}/
|
||
|
Source0: https://dlcdn.apache.org/commons/%{base_name}/source/%{short_name}-%{version}-src.tar.gz
|
||
|
Source1: %{name}-build.xml
|
||
|
Source2: apache-commons-cli-rpmlintrc
|
||
|
Patch0: CLI-253-workaround.patch
|
||
|
BuildRequires: ant
|
||
|
BuildRequires: fdupes
|
||
|
BuildRequires: javapackages-local
|
||
|
Provides: jakarta-%{short_name} = %{version}-%{release}
|
||
|
Obsoletes: jakarta-%{short_name} < %{version}-%{release}
|
||
|
Provides: apache-cli = %{version}-%{release}
|
||
|
Obsoletes: apache-cli < %{version}-%{release}
|
||
|
BuildArch: noarch
|
||
|
|
||
|
%description
|
||
|
The CLI library provides an API for working with the
|
||
|
command line arguments and options.
|
||
|
|
||
|
%package javadoc
|
||
|
Summary: Javadoc for %{name}
|
||
|
Group: Documentation/HTML
|
||
|
Provides: jakarta-%{short_name}-javadoc = %{version}-%{release}
|
||
|
Obsoletes: jakarta-%{short_name}-javadoc < %{version}-%{release}
|
||
|
|
||
|
%description javadoc
|
||
|
This package contains the API documentation for %{name}.
|
||
|
|
||
|
%prep
|
||
|
%setup -q -n %{short_name}-%{version}-src
|
||
|
cp %{SOURCE1} build.xml
|
||
|
%patch0 -p1
|
||
|
|
||
|
%pom_remove_parent
|
||
|
|
||
|
%build
|
||
|
%ant package javadoc
|
||
|
|
||
|
%install
|
||
|
# jars
|
||
|
install -Dpm 644 target/%{short_name}-%{version}.jar %{buildroot}%{_javadir}/%{short_name}.jar
|
||
|
ln -sf %{short_name}.jar %{buildroot}%{_javadir}/%{name}.jar
|
||
|
|
||
|
# pom
|
||
|
install -d -m 755 %{buildroot}%{_mavenpomdir}
|
||
|
install -pm 644 pom.xml %{buildroot}%{_mavenpomdir}/%{short_name}.pom
|
||
|
%add_maven_depmap %{short_name}.pom %{short_name}.jar -a "org.apache.commons:%{short_name}"
|
||
|
|
||
|
# javadoc
|
||
|
install -d -m 0755 %{buildroot}%{_javadocdir}/%{name}
|
||
|
cp -pr target/site/api*/* %{buildroot}%{_javadocdir}/%{name}
|
||
|
%fdupes -s %{buildroot}%{_javadocdir}/%{name}
|
||
|
|
||
|
%files -f .mfiles
|
||
|
%license LICENSE.txt NOTICE.txt
|
||
|
%doc README.md RELEASE-NOTES.txt
|
||
|
%{_javadir}/%{name}.jar
|
||
|
|
||
|
%files javadoc
|
||
|
%license LICENSE.txt
|
||
|
%{_javadocdir}/%{name}
|
||
|
|
||
|
%changelog
|