import jsch-0.1.55-3.module+el8.2.0+4938+c0cffa5b
This commit is contained in:
commit
d0f7b63ea9
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
SOURCES/jsch-0.1.55.zip
|
1
.jsch.metadata
Normal file
1
.jsch.metadata
Normal file
@ -0,0 +1 @@
|
|||||||
|
5e7b17414533005c4f163bec8be41d023b1f0810 SOURCES/jsch-0.1.55.zip
|
15
SOURCES/MANIFEST.MF
Normal file
15
SOURCES/MANIFEST.MF
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
Manifest-Version: 1.0
|
||||||
|
Bundle-ManifestVersion: 2
|
||||||
|
Bundle-Name: %bundleName
|
||||||
|
Bundle-SymbolicName: com.jcraft.jsch
|
||||||
|
Bundle-Version: 0.1.54
|
||||||
|
Bundle-Vendor: %venderName
|
||||||
|
Bundle-Localization: plugin
|
||||||
|
Export-Package: com.jcraft.jsch;version="0.1.54",
|
||||||
|
com.jcraft.jsch.jce;version="0.1.54";x-internal:=true,
|
||||||
|
com.jcraft.jsch.jcraft;version="0.1.54";x-internal:=true,
|
||||||
|
com.jcraft.jsch.jgss;version="0.1.54";x-internal:=true
|
||||||
|
Bundle-RequiredExecutionEnvironment: J2SE-1.4
|
||||||
|
Created-By: 1.4.0 (Sun Microsystems Inc.)
|
||||||
|
|
||||||
|
|
13
SOURCES/plugin.properties
Normal file
13
SOURCES/plugin.properties
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
###############################################################################
|
||||||
|
# Copyright (c) 2006 IBM Corporation and others.
|
||||||
|
# All rights reserved. This program and the accompanying materials
|
||||||
|
# are made available under the terms of the Eclipse Public License v1.0
|
||||||
|
# which accompanies this distribution, and is available at
|
||||||
|
# http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
#
|
||||||
|
# Contributors:
|
||||||
|
# Atsuhiko Yamanaka, JCraft,Inc. - initial API and implementation.
|
||||||
|
# IBM Corporation - implementation
|
||||||
|
###############################################################################
|
||||||
|
venderName=JCraft, Inc.
|
||||||
|
bundleName=JSch
|
117
SPECS/jsch.spec
Normal file
117
SPECS/jsch.spec
Normal file
@ -0,0 +1,117 @@
|
|||||||
|
Name: jsch
|
||||||
|
Version: 0.1.55
|
||||||
|
Release: 3%{?dist}
|
||||||
|
Summary: Pure Java implementation of SSH2
|
||||||
|
License: BSD
|
||||||
|
URL: http://www.jcraft.com/jsch/
|
||||||
|
BuildArch: noarch
|
||||||
|
|
||||||
|
Source0: http://download.sourceforge.net/sourceforge/jsch/jsch-%{version}.zip
|
||||||
|
# wget \
|
||||||
|
# http://download.eclipse.org/tools/orbit/downloads/drops/R20090825191606/bundles/com.jcraft.jsch_0.1.41.v200903070017.jar
|
||||||
|
# unzip com.jcraft.jsch_*.jar META-INF/MANIFEST.MF
|
||||||
|
# mv META-INF/MANIFEST.MF .
|
||||||
|
# sed -i "/^Name/d" MANIFEST.MF
|
||||||
|
# sed -i "/^SHA1/d" MANIFEST.MF
|
||||||
|
# dos2unix MANIFEST.MF
|
||||||
|
# sed -i "/^$/d" MANIFEST.MF
|
||||||
|
# unix2dos MANIFEST.MF
|
||||||
|
Source1: MANIFEST.MF
|
||||||
|
Source2: plugin.properties
|
||||||
|
|
||||||
|
BuildRequires: maven-local
|
||||||
|
BuildRequires: mvn(com.jcraft:jzlib)
|
||||||
|
BuildRequires: mvn(org.apache.maven.plugins:maven-source-plugin)
|
||||||
|
BuildRequires: mvn(org.sonatype.oss:oss-parent:pom:)
|
||||||
|
BuildRequires: zip
|
||||||
|
|
||||||
|
Requires: jzlib >= 0:1.0.5
|
||||||
|
|
||||||
|
%description
|
||||||
|
JSch allows you to connect to an sshd server and use port forwarding,
|
||||||
|
X11 forwarding, file transfer, etc., and you can integrate its
|
||||||
|
functionality into your own Java programs.
|
||||||
|
|
||||||
|
%package javadoc
|
||||||
|
Summary: Javadoc for %{name}
|
||||||
|
|
||||||
|
%description javadoc
|
||||||
|
%{summary}.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q
|
||||||
|
%mvn_file : jsch
|
||||||
|
|
||||||
|
%pom_remove_plugin :maven-javadoc-plugin
|
||||||
|
%pom_remove_plugin :maven-compiler-plugin
|
||||||
|
|
||||||
|
%pom_xpath_remove pom:project/pom:build/pom:extensions
|
||||||
|
%pom_xpath_set pom:project/pom:version %{version}
|
||||||
|
|
||||||
|
%build
|
||||||
|
%mvn_build
|
||||||
|
|
||||||
|
# inject the OSGi Manifest
|
||||||
|
mkdir META-INF
|
||||||
|
cp %{SOURCE1} META-INF
|
||||||
|
cp %{SOURCE2} plugin.properties
|
||||||
|
touch META-INF/MANIFEST.MF
|
||||||
|
touch plugin.properties
|
||||||
|
zip target/%{name}-%{version}.jar META-INF/MANIFEST.MF
|
||||||
|
zip target/%{name}-%{version}.jar plugin.properties
|
||||||
|
|
||||||
|
%install
|
||||||
|
%mvn_install
|
||||||
|
|
||||||
|
%files -f .mfiles
|
||||||
|
%license LICENSE.txt
|
||||||
|
|
||||||
|
%files javadoc -f .mfiles-javadoc
|
||||||
|
%license LICENSE.txt
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Tue Nov 05 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 0.1.55-3
|
||||||
|
- Mass rebuild for javapackages-tools 201902
|
||||||
|
|
||||||
|
* Fri May 24 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 0.1.55-2
|
||||||
|
- Mass rebuild for javapackages-tools 201901
|
||||||
|
|
||||||
|
* Mon May 13 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 0.1.55-1
|
||||||
|
- Update to upstream version 0.1.55
|
||||||
|
|
||||||
|
* Wed Sep 5 2018 Mikolaj Izdebski <mizdebsk@redhat.com> - 0.1.54-7
|
||||||
|
- Remove unneeded maven-compiler-plugin configuration
|
||||||
|
|
||||||
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.54-6
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.54-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Feb 23 2017 Mikolaj Izdebski <mizdebsk@redhat.com> - 0.1.54-4
|
||||||
|
- Remove unneeded maven-javadoc-plugin invocation
|
||||||
|
|
||||||
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.54-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Aug 31 2016 Alexander Kurtakov <akurtako@redhat.com> 0.1.54-2
|
||||||
|
- Fix version in pom.xml.
|
||||||
|
|
||||||
|
* Wed Aug 31 2016 Alexander Kurtakov <akurtako@redhat.com> - 0.1.54-1
|
||||||
|
- New upstream release 0.1.54
|
||||||
|
|
||||||
|
* Wed Jun 15 2016 Mikolaj Izdebski <mizdebsk@redhat.com> - 0.1.53-5
|
||||||
|
- Add missing build-requires
|
||||||
|
|
||||||
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.53-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.53-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jun 5 2015 Alexander Kurtakov <akurtako@redhat.com> 0.1.53-2
|
||||||
|
- Revert jsch.jar to not be in javadir subdir.
|
||||||
|
|
||||||
|
* Fri Jun 5 2015 Alexander Kurtakov <akurtako@redhat.com> 0.1.53-1
|
||||||
|
- Update to 0.1.53
|
||||||
|
- Build with xmvn.
|
Loading…
Reference in New Issue
Block a user