libconfig-model-cursesui-perl (1.103-1) debian-dir only changes

Summary

 debian/changelog                          |   18 +++++++++++++++
 debian/compat                             |    1 
 debian/control                            |   36 ++++++++++++++++++++++++++++++
 debian/copyright                          |   21 +++++++++++++++++
 debian/libconfig-model-cursesui-perl.docs |    1 
 debian/rules                              |   23 +++++++++++++++++++
 debian/watch                              |    4 +++
 7 files changed, 104 insertions(+)

    
download this patch

Patch contents

--- libconfig-model-cursesui-perl-1.103.orig/debian/control
+++ libconfig-model-cursesui-perl-1.103/debian/control
@@ -0,0 +1,36 @@
+Source: libconfig-model-cursesui-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 (>= 0.637),
+		     libcurses-ui-perl (>= 0.9606),
+		     libexception-class-perl,
+		     libtest-pod-perl,
+		     liblog-log4perl-perl (>= 1.11)
+Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
+Uploaders: Dominique Dumont <dominique.dumont@hp.com>
+Standards-Version: 3.8.2
+Homepage: http://search.cpan.org/dist/Config-Model-CursesUI/
+Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libconfig-model-cursesui-perl/
+Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libconfig-model-cursesui-perl/
+
+Package: libconfig-model-cursesui-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}, 
+	 libconfig-model-perl (>= 0.637),
+	 libcurses-ui-perl (>= 0.9606),
+	 libexception-class-perl
+Description: Curses interface to edit config data through Config::Model
+ Config::Model::CursesUI provides a Curses interface to the configuration
+ editor provided by Config::Model.
+ .
+ For instance, with this module, Config::Model and
+ Config::Model::OpenSsh, you get a curses configuration editor for
+ sshd_config.
+ .
+ This interface is used by config-edit program provided by
+ Config::Model.
+ .
+ See also http://config-model.wiki.sourceforge.net/
--- libconfig-model-cursesui-perl-1.103.orig/debian/copyright
+++ libconfig-model-cursesui-perl-1.103/debian/copyright
@@ -0,0 +1,21 @@
+Format-Specification:
+    http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196
+Upstream-Maintainer: Dominique Dumont (ddumont at cpan dot org)
+Upstream-Source: http://search.cpan.org/dist/Config-Model-CursesUI/
+Upstream-Name: Config-Model-CursesUI
+
+Files: *
+Copyright: 2007-2009, Dominique Dumont (ddumont@cpan.org)
+License:  LGPL-2+
+
+Files: debian/*
+Copyright: 2009, Dominique Dumont <dominique.dumont@hp.com>
+License:  LGPL-2+
+
+License: LGPL-2+
+    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 of the GNU
+    Lesser Public License can be found in `/usr/share/common-licenses/LGPL-2'
--- libconfig-model-cursesui-perl-1.103.orig/debian/libconfig-model-cursesui-perl.docs
+++ libconfig-model-cursesui-perl-1.103/debian/libconfig-model-cursesui-perl.docs
@@ -0,0 +1 @@
+README
--- libconfig-model-cursesui-perl-1.103.orig/debian/watch
+++ libconfig-model-cursesui-perl-1.103/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-CursesUI/   .*/Config-Model-CursesUI-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$
--- libconfig-model-cursesui-perl-1.103.orig/debian/compat
+++ libconfig-model-cursesui-perl-1.103/debian/compat
@@ -0,0 +1 @@
+7
--- libconfig-model-cursesui-perl-1.103.orig/debian/changelog
+++ libconfig-model-cursesui-perl-1.103/debian/changelog
@@ -0,0 +1,18 @@
+libconfig-model-cursesui-perl (1.103-1) unstable; urgency=low
+
+  [ Nathan Handler ]
+  * debian/watch: Update to ignore development releases.
+
+  [ Dominique Dumont ]
+  * New upstream release
+  * control: depends on libconfig-model-perl 0.637
+  * control: build-depends on liblog-log4perl-perl 1.11
+  * control: updated to policy 3.8.2
+
+ -- Dominique Dumont <dominique.dumont@hp.com>  Fri, 26 Jun 2009 14:26:55 +0200
+
+libconfig-model-cursesui-perl (1.102-1) unstable; urgency=low
+
+  * Initial Release. (Closes: #510880)
+
+ -- Dominique Dumont <dominique.dumont@hp.com>  Tue, 6 Jan 2009 13:58:14 +0100
--- libconfig-model-cursesui-perl-1.103.orig/debian/rules
+++ libconfig-model-cursesui-perl-1.103/debian/rules
@@ -0,0 +1,23 @@
+#!/usr/bin/make -f
+
+build: build-stamp
+build-stamp:
+	dh build
+	touch $@
+
+clean:
+	dh $@
+
+install: install-stamp
+install-stamp: build-stamp
+	dh install
+	touch $@
+
+binary-arch:
+
+binary-indep: install
+	dh $@
+
+binary: binary-arch binary-indep
+
+.PHONY: binary binary-arch binary-indep install clean build