This is an automated email from the git hooks/post-receive script. ebourg-guest pushed a commit to branch master in repository trilead-ssh2.
commit 39205da078a07b168f2df9de71cb1164bd0548b7 Author: Matthew Johnson <[email protected]> Date: Wed Feb 20 11:41:06 2008 +0000 Imported Debian patch 211-1 --- debian/changelog | 5 ++ debian/compat | 1 + debian/control | 20 ++++++++ debian/copyright | 96 ++++++++++++++++++++++++++++++++++++ debian/libtrilead-ssh2-java.doc-base | 9 ++++ debian/libtrilead-ssh2-java.docs | 3 ++ debian/libtrilead-ssh2-java.javadoc | 13 +++++ debian/libtrilead-ssh2-java.jlibs | 1 + debian/rules | 64 ++++++++++++++++++++++++ 9 files changed, 212 insertions(+) diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..29e1c31 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +trilead-ssh2 (211-1) unstable; urgency=low + + * Initial release. (Closes: #466694) + + -- Matthew Johnson <[email protected]> Wed, 20 Feb 2008 11:41:06 +0000 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..7ed6ff8 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +5 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..88a737c --- /dev/null +++ b/debian/control @@ -0,0 +1,20 @@ +Source: trilead-ssh2 +Section: libs +Priority: optional +Maintainer: Matthew Johnson <[email protected]> +Build-Depends: debhelper (>> 5), javahelper +Build-Depends-Indep: java-gcj-compat-dev +Standards-Version: 3.7.3 +Homepage: http://www.trilead.com/Products/Trilead-SSH-2-Java/ + +Package: libtrilead-ssh2-java +Architecture: all +Depends: ${java:Depends}, ${misc:Depends} +Description: Java SSH libarary + Trilead SSH for Java is a freely available open-source library which + implements the SSH-2 protocol in pure Java (tested on J2SE 1.4.2 and 5.0). It + allows one to connect to SSH servers from within Java programs. It supports + SSH sessions (remote command execution and shell access), local and remote + port forwarding, local stream forwarding, X11 forwarding, SCP and SFTP. There + are no dependencies on any JCE provider, as all crypto functionality is + included. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..6c8ee89 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,96 @@ +This package was Debianised by Matthew Johnson <[email protected]> on Wed Feb 20 11:41:05 GMT 2008 + +This package was downloaded from http://www.trilead.com/Download/Trilead-SSH-2-Java/. + +Copyright (c) 2007 Trilead AG (http://www.trilead.com) + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +a.) Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. +b.) Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. +c.) Neither the name of Trilead nor the names of its contributors may + be used to endorse or promote products derived from this software + without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. + +Trilead SSH-2 for Java includes code that was written by Dr. Christian Plattner +during his PhD at ETH Zurich. The license states the following: + +Copyright (c) 2005 - 2006 Swiss Federal Institute of Technology (ETH Zurich), + Department of Computer Science (http://www.inf.ethz.ch), + Christian Plattner. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +a.) Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. +b.) Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. +c.) Neither the name of ETH Zurich nor the names of its contributors may + be used to endorse or promote products derived from this software + without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. + +The Java implementations of the AES, Blowfish and 3DES ciphers have been +taken (and slightly modified) from the cryptography package released by +"The Legion Of The Bouncy Castle". + +Their license states the following: + +Copyright (c) 2000 - 2004 The Legion Of The Bouncy Castle +(http://www.bouncycastle.org) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +The packaging is Copyright 2008 Matthew Johnson <[email protected]> and is licenced +under the terms of the BSD licence. On Debian systems the BSD licence can be +found in /usr/share/common-licenses/BSD. diff --git a/debian/libtrilead-ssh2-java.doc-base b/debian/libtrilead-ssh2-java.doc-base new file mode 100644 index 0000000..1b0fc9c --- /dev/null +++ b/debian/libtrilead-ssh2-java.doc-base @@ -0,0 +1,9 @@ +Document: libtrilead-ssh2-java +Title: API JavaDoc for libtrilead-ssh2-java +Author: Trilead AG +Abstract: This the API JavaDoc provided by Trilead AG for libtrilead-ssh2-java +Section: Programming + +Format: HTML +Index: /usr/share/doc/libtrilead-ssh2-java/api/ +Files: /usr/share/doc/libtrilead-ssh2-java/api/*.html diff --git a/debian/libtrilead-ssh2-java.docs b/debian/libtrilead-ssh2-java.docs new file mode 100644 index 0000000..2754efd --- /dev/null +++ b/debian/libtrilead-ssh2-java.docs @@ -0,0 +1,3 @@ +README.txt +examples +faq/FAQ.html diff --git a/debian/libtrilead-ssh2-java.javadoc b/debian/libtrilead-ssh2-java.javadoc new file mode 100644 index 0000000..ad208dc --- /dev/null +++ b/debian/libtrilead-ssh2-java.javadoc @@ -0,0 +1,13 @@ +com.trilead.ssh2 +com.trilead.ssh2.channel +com.trilead.ssh2.transport +com.trilead.ssh2.signature +com.trilead.ssh2.packets +com.trilead.ssh2.crypto +com.trilead.ssh2.crypto.cipher +com.trilead.ssh2.crypto.dh +com.trilead.ssh2.crypto.digest +com.trilead.ssh2.sftp +com.trilead.ssh2.auth +com.trilead.ssh2.log +com.trilead.ssh2.util diff --git a/debian/libtrilead-ssh2-java.jlibs b/debian/libtrilead-ssh2-java.jlibs new file mode 100644 index 0000000..017234e --- /dev/null +++ b/debian/libtrilead-ssh2-java.jlibs @@ -0,0 +1 @@ +trilead-ssh2.jar diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..ccd199b --- /dev/null +++ b/debian/rules @@ -0,0 +1,64 @@ +#!/usr/bin/make -f +# +# Sample debian/rules that uses javahelper. +# This file was generated by jh_makepkg and may be used +# without restriction. It was inspired by the dh-make +# sample debian/rules + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +export JAVA_HOME=/usr/lib/jvm/java-gcj + +# Put depended upon jars in here +# export CLASSPATH= + +build: build-arch-stamp build-indep-stamp +build-arch: build-arch-stamp +build-arch-stamp: + dh_testdir + touch $@ + +build-indep: build-indep-stamp +build-indep-stamp: + dh_testdir + # Build the package + jh_build trilead-ssh2.jar src + touch $@ + +clean: + dh_testdir + dh_testroot + jh_build --clean + dh_clean + rm -f build-arch-stamp build-indep-stamp trilead-ssh2.jar + +install-indep: build-indep + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + +binary-arch: build-arch + # Java packages are arch: all, nothing to do here + +binary-indep: build-indep install-indep + # Create the package here + dh_testdir + dh_testroot + dh_clean -k + dh_install -i + dh_installdocs -i + dh_installchangelogs -i HISTORY.txt + dh_javadoc -i --sourcedir=src + jh_installlibs -i + jh_depends -i + dh_compress -i + dh_fixperms -i + dh_installdeb -i + dh_gencontrol -i + dh_md5sums -i + dh_builddeb -i + +binary: binary-indep binary-arch +.PHONY: build build-arch build-indep clean binary-indep binary-arch binary install-indep -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/trilead-ssh2.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

