--- libconfig-model-openssh-perl-1.205.orig/debian/control +++ libconfig-model-openssh-perl-1.205/debian/control @@ -0,0 +1,44 @@ +Source: libconfig-model-openssh-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 7), + perl-modules (>= 5.10) | libmodule-build-perl +Build-Depends-Indep: perl (>= 5.8.8-12), + libconfig-model-perl, + libconfig-model-backend-augeas-perl (>= 0.107), + libtest-pod-perl, + liblog-log4perl-perl +Maintainer: Debian Perl Group +Uploaders: Dominique Dumont , + gregor herrmann +Standards-Version: 3.8.1 +Homepage: http://search.cpan.org/dist/Config-Model-OpenSsh/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libconfig-model-openssh-perl/ +Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libconfig-model-openssh-perl/ + +Package: libconfig-model-openssh-perl +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends}, + libconfig-model-perl, + liblog-log4perl-perl +Recommends: libconfig-model-tkui-perl, + libconfig-model-backend-augeas-perl (>= 0.107) +Suggests: libconfig-model-cursesui-perl +Description: OpenSsh configuration files editor + Config::Model::OpenSsh provides a configuration editor for + /etc/ssh/sshd_config and /etc/ssh/ssh_config (for root) and + ~/.ssh/config for non-root users. + . + When the following dependencies are installed, you will get extra + functionalities: + . + * A graphical OpenSsh files editor with libconfig-model-tkui-perl + * A curses OpenSsh files editor with libconfig-model-cursesui-perl + * When libconfig-model-backend-augeas-perl is installed, the comments + and structure of /etc/ssh/sshd_config will be preserved (not + available for ssh config data) + . + When run with '-ui none', OpenSsh configuration editor can also be + used as a command line to validate the semantic content of OpenSsh + configuration files. + --- libconfig-model-openssh-perl-1.205.orig/debian/copyright +++ libconfig-model-openssh-perl-1.205/debian/copyright @@ -0,0 +1,21 @@ +Format-Specification: + http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196 +Upstream-Maintainer: Dominique Dumont (ddumont@cpan.org) +Upstream-Source: http://search.cpan.org/dist/Config-Model-OpenSsh/ +Upstream-Name: Config-Model-OpenSsh + +Files: * +Copyright: 2008-2009, Dominique Dumont (ddumont@cpan.org) +License: LGPL-2.1+ + +Files: debian/* +Copyright: 2009, Dominique Dumont +License: LGPL-2.1+ + +License: LGPL-2.1+ + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser Public License as + published by the Free Software Foundation; either version 2.1 of + the License, or (at your option) any later version. + On Debian GNU/Linux systems, the complete text of version 2.1 of the GNU + Lesser Public License can be found in `/usr/share/common-licenses/LGPL-2.1' --- libconfig-model-openssh-perl-1.205.orig/debian/watch +++ libconfig-model-openssh-perl-1.205/debian/watch @@ -0,0 +1,4 @@ +# format version number, currently 3; this line is compulsory! +version=3 +# URL to the package page followed by a regex to search +http://search.cpan.org/dist/Config-Model-OpenSsh/ .*/Config-Model-OpenSsh-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ --- libconfig-model-openssh-perl-1.205.orig/debian/compat +++ libconfig-model-openssh-perl-1.205/debian/compat @@ -0,0 +1 @@ +7 --- libconfig-model-openssh-perl-1.205.orig/debian/libconfig-model-openssh-perl.dirs +++ libconfig-model-openssh-perl-1.205/debian/libconfig-model-openssh-perl.dirs @@ -0,0 +1 @@ +usr/sbin --- libconfig-model-openssh-perl-1.205.orig/debian/changelog +++ libconfig-model-openssh-perl-1.205/debian/changelog @@ -0,0 +1,27 @@ +libconfig-model-openssh-perl (1.205-2) unstable; urgency=low + + * (Build) depend on libconfig-model-backend-augeas-perl >= 0.107 + (closes: #531233). + + -- gregor herrmann Mon, 01 Jun 2009 20:32:31 +0200 + +libconfig-model-openssh-perl (1.205-1) unstable; urgency=low + + * New upstream release: + - small bug fix that breaks with libconfig-model-perl 0.635 + * control: change Standards-Version: 3.8.1 + + -- Dominique Dumont Sun, 19 Apr 2009 14:46:00 +0200 + +libconfig-model-openssh-perl (1.204-1) unstable; urgency=low + + * New upstream release. + * Add /me to Uploaders. + + -- gregor herrmann Tue, 10 Mar 2009 20:57:03 +0100 + +libconfig-model-openssh-perl (1.203-1) unstable; urgency=low + + * Initial Release. (Closes: #514013) + + -- Dominique Dumont Tue, 3 Feb 2009 13:54:07 +0100 --- libconfig-model-openssh-perl-1.205.orig/debian/libconfig-model-openssh-perl.docs +++ libconfig-model-openssh-perl-1.205/debian/libconfig-model-openssh-perl.docs @@ -0,0 +1,2 @@ +TODO +README --- libconfig-model-openssh-perl-1.205.orig/debian/rules +++ libconfig-model-openssh-perl-1.205/debian/rules @@ -0,0 +1,25 @@ +#!/usr/bin/make -f + +build: build-stamp +build-stamp: + dh build + touch $@ + +clean: + dh $@ + +install: install-stamp +install-stamp: build-stamp + dh install + mv $(CURDIR)/debian/libconfig-model-openssh-perl/usr/bin/config-edit-sshd \ + $(CURDIR)/debian/libconfig-model-openssh-perl/usr/sbin/ + touch $@ + +binary-arch: + +binary-indep: install + dh $@ + +binary: binary-arch binary-indep + +.PHONY: binary binary-arch binary-indep install clean build