debian/0000755000000000000000000000000012067363767007207 5ustar debian/copyright0000644000000000000000000000216512067363767011146 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: Net-SSH Source: http://search.cpan.org/dist/Net-SSH/ Upstream-Contact: Ivan Kohler Files: * Copyright: 2004, Ivan Kohler 2007-2008, Freeside Internet Services, Inc. License: Artistic or GPL-1+ Files: debian/* Copyright: 2001-2008, Ivan Kohler 2012, Xavier Guimard License: Artistic or GPL-1+ License: Artistic This program is free software; you can redistribute it and/or modify it under the terms of the Artistic License, which comes with Perl. . On Debian systems, the complete text of the Artistic License can be found in `/usr/share/common-licenses/Artistic'. License: GPL-1+ This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 1, or (at your option) any later version. . On Debian systems, the complete text of version 1 of the GNU General Public License can be found in `/usr/share/common-licenses/GPL-1'. debian/watch0000644000000000000000000000015012067363767010234 0ustar version=3 http://search.cpan.org/dist/Net-SSH/ .*/Net-SSH-v?(\d[\d.]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip) debian/control0000644000000000000000000000146512067363767010620 0ustar Source: libnet-ssh-perl Maintainer: Debian Perl Group Uploaders: Ivan Kohler , Xavier Guimard Section: perl Priority: optional Build-Depends: debhelper (>= 8), perl Standards-Version: 3.9.4 Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/libnet-ssh-perl.git Vcs-Git: git://git.debian.org/pkg-perl/packages/libnet-ssh-perl.git Homepage: http://search.cpan.org/dist/Net-SSH/ Package: libnet-ssh-perl Architecture: all Depends: ${misc:Depends}, ${perl:Depends}, openssh-client | ssh-client Description: Perl extension for secure shell Net::SSH provides simple wrappers around the "ssh" command. It can be called in batch mode to launch remote commands or interactively. debian/changelog0000644000000000000000000000470612067363767011070 0ustar libnet-ssh-perl (0.09-3) unstable; urgency=low * Fix typo error in patch -- Xavier Guimard Fri, 28 Dec 2012 13:45:20 +0100 libnet-ssh-perl (0.09-2) unstable; urgency=low * Take over for the Debian Perl Group on maintainer's request (http://bugs.debian.org/677732#10) * Add debian/watch file * Update source format to 3.0 (quilt) * Update debian/copyright (years and format) * Bump Standards-Version to 3.9.4 * Bump debhelper compatibility to 8 * Update description * Update debian/rules to use "dh $@" * Add patches : + spelling-error.patch: little spelling error + synopsis-error.patch: little error in synopsis which prevents example running + basic-test.patch: add a basic test -- Xavier Guimard Wed, 26 Dec 2012 08:46:30 +0100 libnet-ssh-perl (0.09-1) unstable; urgency=low * New upstream release * Depend on ssh-client instead of ssh (closes: Bug#333248) * Better description (closes: Bug#278647). -- Ivan Kohler Wed, 14 May 2008 11:45:30 -0700 libnet-ssh-perl (0.08-1) unstable; urgency=low * New upstream release * Change section from interpreters to perl * Debhelper compat level 4 -- Ivan Kohler Thu, 12 Feb 2004 17:13:19 -0800 libnet-ssh-perl (0.07-1) unstable; urgency=low * new upstream release * build in binary-indep, not binary-arch (closes: Bug#153365, Bug#157497) * debian/copyright pedantry (closes: Bug#153339, Bug#157634, Bug#153383, Bug#157525) -- Ivan Kohler Mon, 26 Aug 2002 02:58:24 -0700 libnet-ssh-perl (0.06-1) unstable; urgency=low * new upstream release, upload to ftp-master -- Ivan Kohler Wed, 3 Jul 2002 07:58:39 -0700 libnet-ssh-perl (0.05-1) unstable; urgency=low * new upstream release -- Ivan Kohler Sat, 16 Feb 2002 10:31:34 -0800 libnet-ssh-perl (0.04-1) unstable; urgency=low * new upstream release -- Ivan Kohler Fri, 15 Feb 2002 12:21:38 -0800 libnet-ssh-perl (0.03-1) unstable; urgency=low * new upstream release -- Ivan Kohler Sun, 2 Dec 2001 16:16:53 -0800 libnet-ssh-perl (0.02-2) unstable; urgency=low * change to section non-US/main -- Ivan Kohler Sun, 13 May 2001 00:47:52 -0700 libnet-ssh-perl (0.02-1) unstable; urgency=low * Initial Release. -- Ivan Kohler Tue, 1 May 2001 16:28:17 -0700 debian/rules0000755000000000000000000000003612067363767010266 0ustar #!/usr/bin/make -f %: dh $@ debian/source/0000755000000000000000000000000012067363767010507 5ustar debian/source/format0000644000000000000000000000001412067363767011715 0ustar 3.0 (quilt) debian/compat0000644000000000000000000000000212067363767010405 0ustar 8 debian/patches/0000755000000000000000000000000012067363767010636 5ustar debian/patches/series0000644000000000000000000000007312067363767012053 0ustar spelling-error.patch synopsis-error.patch basic-test.patch debian/patches/basic-test.patch0000644000000000000000000000111112067363767013707 0ustar Description: Add basic test Author: Xavier Guimard Bug: https://rt.cpan.org/Public/Bug/Display.html?id=59536 Forwarded: https://rt.cpan.org/Public/Bug/Display.html?id=59536 Last-Update: 2012-12-26 --- /dev/null +++ b/t/01-test-basic.t @@ -0,0 +1,11 @@ +# Before `make install' is performed this script should be runnable with +# `make test'. After `make install' it should work as `perl Lemonldap-NG-Portal.t' + +######################### + +# change 'tests => 1' to 'tests => last_test_to_print'; + +use Test::More tests => 1; + +BEGIN { use_ok( 'Net::SSH' ) } + debian/patches/synopsis-error.patch0000644000000000000000000000100612067363767014672 0ustar Description: Synopsis error The example shows how to use ssh_cmd but the 'use' statement doesn't import the function. Author: Xavier Guimard Bug: https://rt.cpan.org/Public/Bug/Display.html?id=81097 Forwarded: https://rt.cpan.org/Public/Bug/Display.html?id=81097 Last-Update: 2012-12-26 --- a/SSH.pm +++ b/SSH.pm @@ -23,7 +23,7 @@ =head1 SYNOPSIS - use Net::SSH qw(ssh issh sshopen2 sshopen3); + use Net::SSH qw(ssh ssh_cmd issh sshopen2 sshopen3); ssh('user@hostname', $command); debian/patches/spelling-error.patch0000644000000000000000000000075512067363767014632 0ustar Description: Spelling error Author: Xavier Guimard Bug: https://rt.cpan.org/Ticket/Display.html?id=82250 Forwarded: https://rt.cpan.org/Ticket/Display.html?id=82250 Last-Update: 2012-12-26 --- a/SSH.pm +++ b/SSH.pm @@ -94,7 +94,7 @@ If using the hashref-style of passing arguments, possible keys are: user (optional) - host (requried) + host (required) command (required) args (optional, arrayref) stdin_string (optional) - written to the command's STDIN