~ubuntu-branches/ubuntu/utopic/libconfig-model-openssh-perl/utopic-proposed

« back to all changes in this revision

Viewing changes to lib/Config/Model/Backend/OpenSsh/Ssh.pm

  • Committer: Package Import Robot
  • Author(s): Dominique Dumont, Salvatore Bonaccorso, Dominique Dumont
  • Date: 2013-05-04 21:11:02 UTC
  • mfrom: (1.1.19)
  • Revision ID: package-import@ubuntu.com-20130504211102-l2oiug4e6peqptte
Tags: 1.227-1
[ Salvatore Bonaccorso ]
* Change Vcs-Git to canonical URI (git://anonscm.debian.org)
* Change search.cpan.org based URIs to metacpan.org based URIs

[ Dominique Dumont ]
* Imported Upstream version 1.227:
  * Removed Augeas backend (no longer needed, comments are handled
    by Config::Model::Backend::OpenSsh)
  * Replaced Any::Moose with Mouse.
* control:
  * updated std-version
  * added enhances openssh-client openssh-server
  * updated description
  * depends on libmouse-perl instead of libany-moose-perl
  * depends on libconfig-model-perl ( >= 2.034)
* copyright: updated years

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
#
10
10
package Config::Model::Backend::OpenSsh::Ssh ;
11
11
{
12
 
  $Config::Model::Backend::OpenSsh::Ssh::VERSION = '1.225';
 
12
  $Config::Model::Backend::OpenSsh::Ssh::VERSION = '1.227';
13
13
}
14
14
 
15
 
use Any::Moose ;
 
15
use Mouse ;
16
16
extends "Config::Model::Backend::OpenSsh" ;
17
17
 
18
18
use Carp ;
205
205
}
206
206
1;
207
207
 
208
 
no Any::Moose;
 
208
no Mouse;
209
209
 
210
210
__END__
211
211