[libshell-config-generate-perl] 01/01: Initial packaging by dh-make-perl 0.84

C.J. Collier cjcollier at linuxfoundation.org
Sun Jun 5 20:09:31 UTC 2016


This is an automated email from the git hooks/post-receive script.

cjadamscollier-guest pushed a commit to branch master
in repository libshell-config-generate-perl.

commit 0902e0afd5cc4511c00147953897617efe97f25b
Author: C.J. Collier <cjcollier at linuxfoundation.org>
Date:   Sat Jun 4 20:04:08 2016 -0400

    Initial packaging by dh-make-perl 0.84
    
    Signed-off-by: C.J. Collier <cjcollier at linuxfoundation.org>
---
 debian/changelog                              |  5 +++
 debian/compat                                 |  1 +
 debian/control                                | 44 +++++++++++++++++++++++++++
 debian/copyright                              | 28 +++++++++++++++++
 debian/libshell-config-generate-perl.examples |  1 +
 debian/rules                                  |  4 +++
 debian/source/format                          |  1 +
 debian/upstream/metadata                      |  7 +++++
 debian/watch                                  |  2 ++
 9 files changed, 93 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..719bd48
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+libshell-config-generate-perl (0.25-1) unstable; urgency=low
+
+  * Initial Release. (Closes: #778550)
+
+ -- C.J. Collier <cjcollier at linuxfoundation.org>  Sat, 4 Jun 2016 20:04:08 -0400
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..ec63514
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..34a92bf
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,44 @@
+Source: libshell-config-generate-perl
+Section: perl
+Priority: optional
+Maintainer: C.J. Collier <cjcollier at linuxfoundation.org>
+Build-Depends: debhelper (>= 9)
+Build-Depends-Indep: libshell-guess-perl (>= 0.02),
+ perl (>= 5.11.1)
+Standards-Version: 3.9.6
+Homepage: https://metacpan.org/release/Shell-Config-Generate
+
+Package: libshell-config-generate-perl
+Architecture: all
+Depends: ${misc:Depends}, ${perl:Depends},
+ libshell-guess-perl (>= 0.02)
+Description: Portably generate config for any shell
+ Shell::Config::Generate provides an interface for specifying shell
+ configurations for different shell environments without having to worry about
+ the arcane differences between shells such as csh, sh, cmd.exe and
+ command.com.
+ .
+ It does not modify the current environment, but it can be used to create
+ shell configurations which do modify the environment.
+ .
+ This module uses Shell::Guess to represent the different types of shells that
+ are supported. In this way you can statically specify just one or more
+ shells:
+ .
+ #!/usr/bin/perl
+ .
+ use Shell::Guess;
+ .
+ use Shell::Config::Generate;
+ .
+ my $config = Shell::Config::Generate->new;
+ .
+ # ... config ...
+ .
+ $config->generate_file(Shell::Guess->bourne_shell, 'foo.sh' );
+ .
+ $config->generate_file(Shell::Guess->c_shell, 'foo.csh');
+ .
+ $config->generate_file(Shell::Guess->cmd_shell, 'foo.cmd');
+ .
+ $config->generate_file(Shell::Guess->command_shell, 'foo.bat');
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..25f4219
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,28 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Source: https://metacpan.org/release/Shell-Config-Generate
+Upstream-Contact: Graham Ollis <plicease at cpan.org>
+Upstream-Name: Shell-Config-Generate
+
+Files: *
+Copyright: Graham Ollis <plicease at cpan.org>
+License: Artistic or GPL-1+
+
+Files: debian/*
+Copyright: 2016, C.J. Collier <cjcollier at linuxfoundation.org>
+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'.
diff --git a/debian/libshell-config-generate-perl.examples b/debian/libshell-config-generate-perl.examples
new file mode 100644
index 0000000..0bbe99e
--- /dev/null
+++ b/debian/libshell-config-generate-perl.examples
@@ -0,0 +1 @@
+example/*
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..2d33f6a
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,4 @@
+#!/usr/bin/make -f
+
+%:
+	dh $@
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/debian/upstream/metadata b/debian/upstream/metadata
new file mode 100644
index 0000000..95b8e80
--- /dev/null
+++ b/debian/upstream/metadata
@@ -0,0 +1,7 @@
+---
+Archive: CPAN
+Bug-Database: https://github.com/plicease/Shell-Config-Generate/issues
+Contact: Graham Ollis <plicease at cpan.org>
+Name: Shell-Config-Generate
+Repository: git://github.com/plicease/Shell-Config-Generate.git
+Repository-Browse: https://github.com/plicease/Shell-Config-Generate
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..2af59e5
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=3
+https://metacpan.org/release/Shell-Config-Generate   .*/Shell-Config-Generate-v?(\d[\d.-]*)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libshell-config-generate-perl.git



More information about the Pkg-perl-cvs-commits mailing list