- Update to v0.14.0 * Changes in release 0.14.0 + Add configuration option to disable signing (Fixes #817) + Upgrade dependencies + Make share.queryInfo public to allow for exensibility (Fixes #836) + Add support for querying volume information (Fixes #837) + Set sessionKey whenever we have it from authentication, prevents NPE when server incorrectly does not recognise guest or anon credentials (Fixes #792) OBS-URL: https://build.opensuse.org/request/show/1290152 OBS-URL: https://build.opensuse.org/package/show/Java:packages/smbj?expand=0&rev=2
82 lines
2.3 KiB
RPMSpec
82 lines
2.3 KiB
RPMSpec
#
|
|
# spec file for package smbj
|
|
#
|
|
# 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: smbj
|
|
Version: 0.14.0
|
|
Release: 0
|
|
Summary: Server Message Block (SMB2, SMB3) implementation in 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
|
|
Source2: https://www.apache.org/licenses/LICENSE-2.0.txt
|
|
BuildRequires: fdupes
|
|
BuildRequires: maven-local
|
|
BuildRequires: mvn(com.hierynomus:asn-one)
|
|
BuildRequires: mvn(net.engio:mbassador)
|
|
BuildRequires: mvn(org.bouncycastle:bcprov-jdk18on)
|
|
BuildArch: noarch
|
|
|
|
%description
|
|
SMB2 protocol library for communication with Windows servers.
|
|
|
|
%package javadoc
|
|
Summary: API documentation for %{name}
|
|
Group: Documentation/HTML
|
|
|
|
%description javadoc
|
|
API documentation for %{name}.
|
|
|
|
%prep
|
|
%autosetup
|
|
|
|
cp %{SOURCE1} pom.xml
|
|
cp %{SOURCE2} .
|
|
|
|
%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>
|
|
<Implenentation-Title>%{name}</Implenentation-Title>
|
|
<Implementation-Version>%{version}</Implementation-Version>
|
|
</manifestEntries>
|
|
</archive>
|
|
</configuration>'
|
|
|
|
%{mvn_file} : %{name}
|
|
|
|
%build
|
|
%{mvn_build} -f
|
|
|
|
%install
|
|
%mvn_install
|
|
%fdupes %{buildroot}%{_javadocdir}/%{name}
|
|
|
|
%files -f .mfiles
|
|
%license LICENSE-2.0.txt
|
|
%doc CONTRIBUTORS README.adoc
|
|
|
|
%files javadoc -f .mfiles-javadoc
|
|
%license LICENSE-2.0.txt
|
|
|
|
%changelog
|