Sync from SUSE:SLFO:Main jsch-agent-proxy revision 1acd358cf89247dd6ce553a859baa594
This commit is contained in:
commit
b6ba0edb8f
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
## Default LFS
|
||||
*.7z filter=lfs diff=lfs merge=lfs -text
|
||||
*.bsp filter=lfs diff=lfs merge=lfs -text
|
||||
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.gem filter=lfs diff=lfs merge=lfs -text
|
||||
*.gz filter=lfs diff=lfs merge=lfs -text
|
||||
*.jar filter=lfs diff=lfs merge=lfs -text
|
||||
*.lz filter=lfs diff=lfs merge=lfs -text
|
||||
*.lzma filter=lfs diff=lfs merge=lfs -text
|
||||
*.obscpio filter=lfs diff=lfs merge=lfs -text
|
||||
*.oxt filter=lfs diff=lfs merge=lfs -text
|
||||
*.pdf filter=lfs diff=lfs merge=lfs -text
|
||||
*.png filter=lfs diff=lfs merge=lfs -text
|
||||
*.rpm filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.tgz filter=lfs diff=lfs merge=lfs -text
|
||||
*.ttf filter=lfs diff=lfs merge=lfs -text
|
||||
*.txz filter=lfs diff=lfs merge=lfs -text
|
||||
*.whl filter=lfs diff=lfs merge=lfs -text
|
||||
*.xz filter=lfs diff=lfs merge=lfs -text
|
||||
*.zip filter=lfs diff=lfs merge=lfs -text
|
||||
*.zst filter=lfs diff=lfs merge=lfs -text
|
BIN
jsch-agent-proxy-0.0.7-build.tar.xz
(Stored with Git LFS)
Normal file
BIN
jsch-agent-proxy-0.0.7-build.tar.xz
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
jsch-agent-proxy-0.0.7.tar.gz
(Stored with Git LFS)
Normal file
BIN
jsch-agent-proxy-0.0.7.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
19
jsch-agent-proxy.changes
Normal file
19
jsch-agent-proxy.changes
Normal file
@ -0,0 +1,19 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Mar 20 15:18:34 UTC 2022 - Fridrich Strba <fstrba@suse.com>
|
||||
|
||||
- Build with source and target levels 1.8
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 10 21:06:23 UTC 2019 - Fridrich Strba <fstrba@suse.com>
|
||||
|
||||
- BuildRequire the new jna-contrib package
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Jul 7 22:05:12 UTC 2019 - Jan Engelhardt <jengelh@inai.de>
|
||||
|
||||
- Trim bias and conjecture from descriptions.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jun 27 10:16:27 UTC 2019 - Ismail Dönmez <idonmez@suse.com>
|
||||
|
||||
- Initial release (v0.0.7) for openSUSE
|
189
jsch-agent-proxy.spec
Normal file
189
jsch-agent-proxy.spec
Normal file
@ -0,0 +1,189 @@
|
||||
#
|
||||
# spec file for package jsch-agent-proxy
|
||||
#
|
||||
# Copyright (c) 2022 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: jsch-agent-proxy
|
||||
Version: 0.0.7
|
||||
Release: 0
|
||||
Summary: Proxy to ssh-agent and Pageant in Java
|
||||
License: BSD-3-Clause
|
||||
Group: Development/Libraries/Java
|
||||
URL: http://www.jcraft.com/jsch-agent-proxy/
|
||||
Source0: https://github.com/ymnk/jsch-agent-proxy/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
||||
Source1: %{name}-%{version}-build.tar.xz
|
||||
BuildRequires: ant
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: java-devel
|
||||
BuildRequires: javapackages-local
|
||||
BuildRequires: jna
|
||||
BuildRequires: jna-contrib
|
||||
BuildRequires: jsch
|
||||
BuildRequires: trilead-ssh2
|
||||
BuildArch: noarch
|
||||
|
||||
%description
|
||||
jsch-agent-proxy is a proxy program to OpenSSH ssh-agent and Pageant
|
||||
included Putty. It can be integrated into JSch, and users
|
||||
can be allowed to use those programs in authentications. This
|
||||
software has been developed for JSch, but it can be applicable
|
||||
to other SSH2 implementations in Java.
|
||||
|
||||
%package connector-factory
|
||||
Summary: Connector factory for jsch-agent-proxy
|
||||
Group: Development/Libraries/Java
|
||||
Requires: mvn(com.jcraft:jsch.agentproxy.core) = %{version}
|
||||
Requires: mvn(com.jcraft:jsch.agentproxy.pageant) = %{version}
|
||||
Requires: mvn(com.jcraft:jsch.agentproxy.sshagent) = %{version}
|
||||
Requires: mvn(com.jcraft:jsch.agentproxy.usocket-jna) = %{version}
|
||||
Requires: mvn(com.jcraft:jsch.agentproxy.usocket-nc) = %{version}
|
||||
|
||||
%description connector-factory
|
||||
%{summary}.
|
||||
|
||||
%package core
|
||||
Summary: jsch-agent-proxy core module
|
||||
Group: Development/Libraries/Java
|
||||
|
||||
%description core
|
||||
%{summary}.
|
||||
|
||||
%package jsch
|
||||
Summary: JSch connector for jsch-agent-proxy
|
||||
Group: Development/Libraries/Java
|
||||
Requires: mvn(com.jcraft:jsch)
|
||||
Requires: mvn(com.jcraft:jsch.agentproxy.core) = %{version}
|
||||
|
||||
%description jsch
|
||||
%{summary}.
|
||||
|
||||
%package pageant
|
||||
Summary: Pageant connector for jsch-agent-proxy
|
||||
Group: Development/Libraries/Java
|
||||
Requires: mvn(com.jcraft:jsch.agentproxy.core) = %{version}
|
||||
Requires: mvn(net.java.dev.jna:jna)
|
||||
Requires: mvn(net.java.dev.jna:platform)
|
||||
|
||||
%description pageant
|
||||
%{summary}.
|
||||
|
||||
%package sshagent
|
||||
Summary: ssh-agent connector for jsch-agent-proxy
|
||||
Group: Development/Libraries/Java
|
||||
Requires: mvn(com.jcraft:jsch.agentproxy.core) = %{version}
|
||||
|
||||
%description sshagent
|
||||
%{summary}.
|
||||
|
||||
%package svnkit-trilead-ssh2
|
||||
Summary: trilead-ssh2 connector for jsch-agent-proxy
|
||||
Group: Development/Libraries/Java
|
||||
Requires: mvn(com.jcraft:jsch.agentproxy.core) = %{version}
|
||||
Requires: mvn(com.trilead:trilead-ssh2)
|
||||
|
||||
%description svnkit-trilead-ssh2
|
||||
%{summary}.
|
||||
|
||||
%package usocket-jna
|
||||
Summary: USocketFactory implementation using JNA
|
||||
Group: Development/Libraries/Java
|
||||
Requires: mvn(com.jcraft:jsch.agentproxy.core) = %{version}
|
||||
Requires: mvn(net.java.dev.jna:jna)
|
||||
Requires: mvn(net.java.dev.jna:platform)
|
||||
|
||||
%description usocket-jna
|
||||
%{summary}.
|
||||
|
||||
%package usocket-nc
|
||||
Summary: USocketFactory implementation using Netcat
|
||||
Group: Development/Libraries/Java
|
||||
|
||||
%description usocket-nc
|
||||
%{summary}.
|
||||
|
||||
%package javadoc
|
||||
Summary: API documentation for %{name}
|
||||
Group: Documentation/HTML
|
||||
Requires: mvn(com.jcraft:jsch.agentproxy.core) = %{version}
|
||||
|
||||
%description javadoc
|
||||
This package provides %{summary}.
|
||||
|
||||
%prep
|
||||
%setup -q -a1
|
||||
|
||||
# Unnecessary for RPM builds
|
||||
%pom_remove_plugin ":maven-javadoc-plugin"
|
||||
%pom_remove_plugin ":maven-source-plugin"
|
||||
%pom_xpath_remove pom:build/pom:extensions
|
||||
%pom_disable_module jsch-agent-proxy-sshj
|
||||
|
||||
for package in connector-factory core jsch pageant sshagent \
|
||||
svnkit-trilead-ssh2 usocket-jna usocket-nc; do
|
||||
%pom_remove_parent %{name}-${package}
|
||||
%pom_xpath_inject pom:project "
|
||||
<groupId>com.jcraft</groupId>
|
||||
<version>%{version}</version>" %{name}-${package}
|
||||
done
|
||||
|
||||
%build
|
||||
mkdir lib
|
||||
build-jar-repository -s lib jna jna-platform jsch trilead-ssh2
|
||||
|
||||
%{ant} \
|
||||
-Dtest.skip=true \
|
||||
package javadoc
|
||||
|
||||
%install
|
||||
install -dm 0755 %{buildroot}/usr/share/java
|
||||
install -dm 0755 %{buildroot}%{_mavenpomdir}
|
||||
|
||||
for package in connector-factory core jsch pageant sshagent \
|
||||
svnkit-trilead-ssh2 usocket-jna usocket-nc; do
|
||||
install -pm 0644 %{name}-${package}/target/jsch.agentproxy.${package}-%{version}.jar %{buildroot}/usr/share/java/jsch.agentproxy.${package}.jar
|
||||
install -pm 0644 %{name}-${package}/pom.xml %{buildroot}%{_mavenpomdir}/jsch.agentproxy.${package}.pom
|
||||
%add_maven_depmap jsch.agentproxy.${package}.pom jsch.agentproxy.${package}.jar -f ${package}
|
||||
|
||||
# javadoc
|
||||
install -dm 0755 %{buildroot}%{_javadocdir}/%{name}-${package}
|
||||
cp -pr %{name}-${package}/target/site/apidocs/* %{buildroot}%{_javadocdir}/%{name}-${package}/
|
||||
done
|
||||
|
||||
%fdupes -s %{buildroot}%{_javadocdir}
|
||||
|
||||
%files core -f .mfiles-core
|
||||
%doc README README.md
|
||||
%license LICENSE.txt
|
||||
|
||||
%files connector-factory -f .mfiles-connector-factory
|
||||
|
||||
%files jsch -f .mfiles-jsch
|
||||
|
||||
%files pageant -f .mfiles-pageant
|
||||
|
||||
%files sshagent -f .mfiles-sshagent
|
||||
|
||||
%files svnkit-trilead-ssh2 -f .mfiles-svnkit-trilead-ssh2
|
||||
|
||||
%files usocket-jna -f .mfiles-usocket-jna
|
||||
|
||||
%files usocket-nc -f .mfiles-usocket-nc
|
||||
|
||||
%files javadoc
|
||||
%license LICENSE.txt
|
||||
%{_javadocdir}
|
||||
|
||||
%changelog
|
Loading…
Reference in New Issue
Block a user