[libcode-tidyall-perl] 01/374: init

Jonas Smedegaard js at alioth.debian.org
Sun Sep 29 22:25:38 UTC 2013


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

js pushed a commit to branch master
in repository libcode-tidyall-perl.

commit 74f5e58de0c258c9f317ad7a7662c9b49de2f635
Author: Jonathan Swartz <swartz at pobox.com>
Date:   Tue May 15 17:32:13 2012 -0700

    init
---
 .gitignore                   |    9 +++++++++
 .gitrepo                     |    1 +
 .perltidyrc                  |    1 +
 Changes                      |    8 ++++++++
 MANIFEST.SKIP                |   19 +++++++++++++++++++
 dist.ini                     |   42 ++++++++++++++++++++++++++++++++++++++++++
 lib/Code/TidyAll.pm          |   41 +++++++++++++++++++++++++++++++++++++++++
 lib/Code/TidyAll/Util.pm     |    9 +++++++++
 lib/Code/TidyAll/t/Sanity.pm |   14 ++++++++++++++
 t/01-use.t                   |    4 ++++
 weaver.ini                   |    9 +++++++++
 11 files changed, 157 insertions(+)

diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..de9666b
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,9 @@
+NOTES
+TODO
+bench
+data
+docs
+htdocs
+release
+tmp
+z-backup
diff --git a/.gitrepo b/.gitrepo
new file mode 100644
index 0000000..99fad2d
--- /dev/null
+++ b/.gitrepo
@@ -0,0 +1 @@
+perl-code-tidyall
diff --git a/.perltidyrc b/.perltidyrc
new file mode 100644
index 0000000..5725109
--- /dev/null
+++ b/.perltidyrc
@@ -0,0 +1 @@
+-noll -l=100
diff --git a/Changes b/Changes
new file mode 100644
index 0000000..54feb86
--- /dev/null
+++ b/Changes
@@ -0,0 +1,8 @@
+Revision history for Code-TidyAll
+
+** denotes an incompatible change
+
+0.01 May 15, 2012
+
+- Initial version
+
diff --git a/MANIFEST.SKIP b/MANIFEST.SKIP
new file mode 100644
index 0000000..9d99cb6
--- /dev/null
+++ b/MANIFEST.SKIP
@@ -0,0 +1,19 @@
+^MANIFEST.SKIP$
+^NOTES
+^TODO
+^bench
+^data
+^dist.ini
+^docs
+^git
+^htdocs
+^release
+^tmp
+^weaver.ini
+^z-backup
+
+~$
+(^|/)#
+(^|/)\.
+\.bak$
+\.tar\.gz$
diff --git a/dist.ini b/dist.ini
new file mode 100644
index 0000000..3247fb0
--- /dev/null
+++ b/dist.ini
@@ -0,0 +1,42 @@
+name    = Code-TidyAll
+abstract = Tidy and validate code in many ways at once
+main_module = lib/Code/TidyAll.pm
+author  = Jonathan Swartz <swartz at pobox.com>
+license = Perl_5
+copyright_year   = 2011
+copyright_holder = Jonathan Swartz
+
+version = 0.01
+
+[MetaResources]
+bugtracker.web    = http://rt.cpan.org/NoAuth/Bugs.html?Dist=Code-TidyAll
+bugtracker.mailto = bug-code-tidyall at rt.cpan.org
+repository.url    = git://github.com/jonswar/perl-code-tidyall.git
+repository.web    = https://github.com/jonswar/perl-code-tidyall
+repository.type   = git
+
+; Build
+[ExecDir]
+[ExtraTests]
+[GatherDir]
+[License]
+[MakeMaker]
+[ManifestSkip]
+[Manifest]
+[MetaJSON]
+[MetaYAML]
+[MetaNoIndex]
+directory = lib/Code/TidyAll/t
+directory = lib/Code/TidyAll/Test
+file = lib/Code/TidyAll/Util.pm
+[PkgVersion]
+[PodWeaverIfPod]
+[PruneCruft]
+
+[Prereqs / RuntimeRequires]
+
+[Prereqs / TestRequires]
+Test::More = 0
+
+; These need to be at the bottom
+[InstallGuide]
diff --git a/lib/Code/TidyAll.pm b/lib/Code/TidyAll.pm
new file mode 100644
index 0000000..e45c2f6
--- /dev/null
+++ b/lib/Code/TidyAll.pm
@@ -0,0 +1,41 @@
+package Code::TidyAll;
+use 5.008;
+use strict;
+use warnings;
+
+1;
+
+__END__
+
+=pod
+
+=head1 NAME
+
+Code::TidyAll - Tidy and validate code in many ways at once
+
+=head1 SYNOPSIS
+
+    use Code::TidyAll;
+
+=head1 DESCRIPTION
+
+Code::TidyAll provides
+
+Questions and feedback are welcome, and should be directed to the mailing list:
+
+    http://groups.google.com/...
+
+Bugs and feature requests will be tracked at RT:
+
+    http://rt.cpan.org/NoAuth/Bugs.html?Dist=Code-TidyAll
+    bug-code-tidyall at rt.cpan.org
+
+The latest source code can be browsed and fetched at:
+
+    http://github.com/jonswar/perl-code-tidyall
+    git clone git://github.com/jonswar/perl-code-tidyall.git
+
+=head1 SEE ALSO
+
+L<Some::Module>
+
diff --git a/lib/Code/TidyAll/Util.pm b/lib/Code/TidyAll/Util.pm
new file mode 100644
index 0000000..7d3eb78
--- /dev/null
+++ b/lib/Code/TidyAll/Util.pm
@@ -0,0 +1,9 @@
+package Code::TidyAll::Util;
+use strict;
+use warnings;
+use base qw(Exporter);
+
+our @EXPORT_OK = qw(
+);
+
+1;
diff --git a/lib/Code/TidyAll/t/Sanity.pm b/lib/Code/TidyAll/t/Sanity.pm
new file mode 100644
index 0000000..6de718c
--- /dev/null
+++ b/lib/Code/TidyAll/t/Sanity.pm
@@ -0,0 +1,14 @@
+package Code::TidyAll::t::Sanity;
+use strict;
+use warnings;
+use base qw(Test::Class);
+
+# or
+# use Test::Class::Most parent => 'Code::TidyAll::Test::Class';
+
+sub test_ok : Test(1) {
+    my $self = shift;
+    ok(1);
+}
+
+1;
diff --git a/t/01-use.t b/t/01-use.t
new file mode 100644
index 0000000..bcd527f
--- /dev/null
+++ b/t/01-use.t
@@ -0,0 +1,4 @@
+#!perl
+use Test::More tests => 1;
+
+use_ok('Code::TidyAll');
diff --git a/weaver.ini b/weaver.ini
new file mode 100644
index 0000000..7a7e35a
--- /dev/null
+++ b/weaver.ini
@@ -0,0 +1,9 @@
+[@CorePrep]
+[Generic / NAME]
+[Version]
+[Generic / SYNOPSIS]
+[Generic / DESCRIPTION]
+[Leftovers]
+[Generic / SEE ALSO]
+[Authors]
+[Legal]

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libcode-tidyall-perl.git



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