summaryrefslogtreecommitdiffstats
path: root/dzil
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2010-06-12 15:58:35 -0500
committerJesse Luehrs <doy@tozt.net>2010-06-12 15:59:46 -0500
commitba266d90197db329eb474a895e3d751c11d6145f (patch)
treef92169ac7a9ca88d178a82b495459eae9c1d3bc6 /dzil
parentf5aa8b3a5a17ac7a12dddb6c10fea862a0eeec90 (diff)
downloadconf-ba266d90197db329eb474a895e3d751c11d6145f.tar.gz
conf-ba266d90197db329eb474a895e3d751c11d6145f.zip
add dzil configuration
Diffstat (limited to 'dzil')
-rw-r--r--dzil/pod_templates/bugs.section5
-rw-r--r--dzil/pod_templates/support.section25
-rw-r--r--dzil/profiles/default/Module.pm0
-rw-r--r--dzil/profiles/default/profile.ini12
-rw-r--r--dzil/profiles/default/root/.gitignore12
-rw-r--r--dzil/profiles/default/root/Changes4
-rw-r--r--dzil/profiles/default/root/dist.ini11
-rw-r--r--dzil/profiles/default/root/weaver.ini36
8 files changed, 105 insertions, 0 deletions
diff --git a/dzil/pod_templates/bugs.section b/dzil/pod_templates/bugs.section
new file mode 100644
index 0000000..c633fe4
--- /dev/null
+++ b/dzil/pod_templates/bugs.section
@@ -0,0 +1,5 @@
+No known bugs.
+
+Please report any bugs through RT: email
+C<bug-{{ lc($name) }} at rt.cpan.org>, or browse to
+L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue={{ $name }}>.
diff --git a/dzil/pod_templates/support.section b/dzil/pod_templates/support.section
new file mode 100644
index 0000000..1f4c42b
--- /dev/null
+++ b/dzil/pod_templates/support.section
@@ -0,0 +1,25 @@
+You can find this documentation for this module with the perldoc command.
+
+ perldoc {{ $main_module_name }}
+
+You can also look for information at:
+
+=over 4
+
+=item * AnnoCPAN: Annotated CPAN documentation
+
+L<http://annocpan.org/dist/{{ $name }}>
+
+=item * CPAN Ratings
+
+L<http://cpanratings.perl.org/d/{{ $name }}>
+
+=item * RT: CPAN's request tracker
+
+L<http://rt.cpan.org/NoAuth/Bugs.html?Dist={{ $name }}>
+
+=item * Search CPAN
+
+L<http://search.cpan.org/dist/{{ $name }}>
+
+=back
diff --git a/dzil/profiles/default/Module.pm b/dzil/profiles/default/Module.pm
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/dzil/profiles/default/Module.pm
diff --git a/dzil/profiles/default/profile.ini b/dzil/profiles/default/profile.ini
new file mode 100644
index 0000000..57ca230
--- /dev/null
+++ b/dzil/profiles/default/profile.ini
@@ -0,0 +1,12 @@
+[%Rights]
+license_class = Perl_5
+copyright_holder = Jesse Luehrs
+
+[GatherDir::Template]
+root = root
+include_dotfiles = 1
+
+[TemplateModule / :DefaultModuleMaker]
+template = Module.pm
+
+[Git::Init]
diff --git a/dzil/profiles/default/root/.gitignore b/dzil/profiles/default/root/.gitignore
new file mode 100644
index 0000000..22fed7e
--- /dev/null
+++ b/dzil/profiles/default/root/.gitignore
@@ -0,0 +1,12 @@
+cover_db
+META.yml
+Makefile
+blib
+inc
+pm_to_blib
+MANIFEST
+Makefile.old
+nytprof.out
+MANIFEST.bak
+*.sw[po]
+{{$dist->name}}-*
diff --git a/dzil/profiles/default/root/Changes b/dzil/profiles/default/root/Changes
new file mode 100644
index 0000000..0d8af06
--- /dev/null
+++ b/dzil/profiles/default/root/Changes
@@ -0,0 +1,4 @@
+Revision history for {{ $dist->name }}
+
+{{ '{{$NEXT}}' }}
+ - Initial release
diff --git a/dzil/profiles/default/root/dist.ini b/dzil/profiles/default/root/dist.ini
new file mode 100644
index 0000000..eada9b2
--- /dev/null
+++ b/dzil/profiles/default/root/dist.ini
@@ -0,0 +1,11 @@
+name = Pod-Weaver-Section-Template
+author = Jesse Luehrs <doy at tozt dot net>
+license = Perl_5
+copyright_holder = Jesse Luehrs
+
+[@DOY]
+dist = Pod-Weaver-Section-Template
+
+[Prereq]
+Pod::Weaver = 0
+Text::Template = 0
diff --git a/dzil/profiles/default/root/weaver.ini b/dzil/profiles/default/root/weaver.ini
new file mode 100644
index 0000000..219a165
--- /dev/null
+++ b/dzil/profiles/default/root/weaver.ini
@@ -0,0 +1,36 @@
+[@CorePrep]
+
+[Name]
+[Version]
+
+[Region / prelude]
+
+[Generic / SYNOPSIS]
+[Generic / DESCRIPTION]
+[Generic / OVERVIEW]
+
+[Collect / ATTRIBUTES]
+command = attr
+
+[Collect / METHODS]
+command = method
+
+[Collect / FUNCTIONS]
+command = func
+
+[Leftovers]
+
+[Region / postlude]
+
+[Template / BUGS]
+template = ~/.dzil/pod_templates/bugs.section
+main_module_only = 1
+
+[SeeAlso]
+
+[Template / SUPPORT]
+template = ~/.dzil/pod_templates/support.section
+main_module_only = 1
+
+[Authors]
+[Legal]