- Update to v0.40.0 * No changelog provided by upstream OBS-URL: https://build.opensuse.org/request/show/1290144 OBS-URL: https://build.opensuse.org/package/show/Java:packages/sshj?expand=0&rev=4
108 lines
3.5 KiB
RPMSpec
108 lines
3.5 KiB
RPMSpec
#
|
|
# spec file for package sshj
|
|
#
|
|
# Copyright (c) 2025 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: sshj
|
|
Version: 0.40.0
|
|
Release: 0
|
|
Summary: SSH, SCP and SFTP for Java
|
|
License: Apache-2.0
|
|
Group: Development/Libraries/Java
|
|
URL: https://github.com/hierynomus/%{name}
|
|
Source0: %{url}/archive/refs/tags/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
|
Source1: https://repo1.maven.org/maven2/com/hierynomus/%{name}/%{version}/%{name}-%{version}.pom
|
|
BuildRequires: fdupes
|
|
BuildRequires: maven-local
|
|
BuildRequires: mvn(com.hierynomus:asn-one)
|
|
BuildRequires: mvn(net.i2p.crypto:eddsa)
|
|
BuildRequires: mvn(org.apache.felix:maven-bundle-plugin)
|
|
BuildRequires: mvn(org.bouncycastle:bcpkix-jdk18on)
|
|
BuildRequires: mvn(org.bouncycastle:bcprov-jdk18on)
|
|
BuildArch: noarch
|
|
|
|
%description
|
|
SSH, SCP and SFTP for Java.
|
|
|
|
%package javadoc
|
|
Summary: API documentation for %{name}
|
|
Group: Documentation/HTML
|
|
|
|
%description javadoc
|
|
API documentation for %{name}.
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
cp %{SOURCE1} pom.xml
|
|
|
|
%pom_xpath_remove 'pom:scope[.="runtime"]'
|
|
|
|
%pom_add_plugin org.apache.maven.plugins:maven-jar-plugin \
|
|
'<configuration>
|
|
<archive>
|
|
<manifestEntries>
|
|
<Automatic-Module-Name>com.hierynomus.%{name}</Automatic-Module-Name>
|
|
<Bundle-ManifestVersion>2</Bundle-ManifestVersion>
|
|
<Bundle-Name>%{name}</Bundle-Name>
|
|
<Bundle-Version>%{version}</Bundle-Version>
|
|
<Bundle-SymbolicName>com.hierynomus.%{name}</Bundle-SymbolicName>
|
|
</manifestEntries>
|
|
</archive>
|
|
</configuration>'
|
|
|
|
%pom_xpath_inject pom:project '<packaging>bundle</packaging>'
|
|
|
|
%pom_add_plugin org.apache.felix:maven-bundle-plugin \
|
|
'<extensions>true</extensions>
|
|
<configuration>
|
|
<instructions>
|
|
<Bundle-Description>SSHv2 library for Java</Bundle-Description>
|
|
<Bundle-License>http://www.apache.org/licenses/LICENSE-2.0.txt</Bundle-License>
|
|
<Import-Package>!net.schmizz.*</Import-Package>
|
|
<Import-Package>!com.hierynomus.sshj.*</Import-Package>
|
|
<Import-Package>javax.crypto*</Import-Package>
|
|
<Import-Package>!net.i2p.crypto.eddsa.math</Import-Package>
|
|
<Import-Package>net.i2p*</Import-Package>
|
|
<Import-Package>com.jcraft.jzlib*;version="[1.1,2)";resolution:=optional</Import-Package>
|
|
<Import-Package>org.slf4j*;version="[1.7,5)"</Import-Package>
|
|
<Import-Package>org.bouncycastle*;resolution:=optional</Import-Package>
|
|
<Import-Package>org.bouncycastle.jce.provider;resolution:=optional</Import-Package>
|
|
<Import-Package>*</Import-Package>
|
|
<Export-Package>com.hierynomus.sshj.*;version="%{version}"</Export-Package>
|
|
<Export-Package>net.schmizz.*;version="%{version}"</Export-Package>
|
|
</instructions>
|
|
</configuration>'
|
|
|
|
%{mvn_file} : %{name}
|
|
|
|
%build
|
|
%{mvn_build} -f -- \
|
|
-Dsource=8
|
|
|
|
%install
|
|
%mvn_install
|
|
%fdupes %{buildroot}%{_javadocdir}/%{name}
|
|
|
|
%files -f .mfiles
|
|
%license NOTICE LICENSE
|
|
%doc CONTRIBUTORS README.adoc
|
|
|
|
%files javadoc -f .mfiles-javadoc
|
|
%license NOTICE LICENSE
|
|
|
|
%changelog
|