Skip to content

Commit

Permalink
This is the initial release for prepan posting
Browse files Browse the repository at this point in the history
  • Loading branch information
Jed committed Apr 3, 2012
0 parents commit 89a9ccb
Show file tree
Hide file tree
Showing 12 changed files with 1,347 additions and 0 deletions.
379 changes: 379 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

13 changes: 13 additions & 0 deletions MANIFEST
@@ -0,0 +1,13 @@
Changes
LICENSE
MANIFEST
META.json
META.yml
Makefile.PL
README
dist.ini
lib/DateTimeX/Mashup/Shiras.pm
lib/DateTimeX/Mashup/Shiras/Types.pm
t/001-load.t
t/002-DateTimeX-Mashup-Shiras.t
t/DateTimeX-Mashup-Shiras-Example.pl
51 changes: 51 additions & 0 deletions META.json
@@ -0,0 +1,51 @@
{
"abstract" : "a mashup allowing multiple date formats\r",
"author" : [
"Jed Lund <jandrew@cpan.org>"
],
"dynamic_config" : 0,
"generated_by" : "Dist::Zilla version 4.300009, CPAN::Meta::Converter version 2.113640",
"license" : [
"perl_5"
],
"meta-spec" : {
"url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
"version" : "2"
},
"name" : "DateTimeX-Mashup-Shiras",
"prereqs" : {
"configure" : {
"requires" : {
"ExtUtils::MakeMaker" : "6.30"
}
},
"runtime" : {
"requires" : {
"DateTime" : 0,
"DateTime::Format::DateManip" : 0,
"DateTime::Format::Epoch" : "v0.13.0",
"DateTime::Format::Excel" : 0,
"Moose::Role" : 0,
"MooseX::StrictConstructor" : 0,
"MooseX::Types" : 0,
"MooseX::Types::Moose" : 0,
"Smart::Comments" : 0,
"version" : "0.94"
}
},
"test" : {
"requires" : {
"Modern::Perl" : 0,
"Moose" : 0,
"MooseX::ClassCompositor" : 0,
"Test::MockTime" : 0,
"Test::Moose" : 0,
"Test::Most" : 0,
"YAML::Any" : 0
}
}
},
"release_status" : "testing",
"version" : "v0.07_01"
}

33 changes: 33 additions & 0 deletions META.yml
@@ -0,0 +1,33 @@
---
abstract: "a mashup allowing multiple date formats\r"
author:
- 'Jed Lund <jandrew@cpan.org>'
build_requires:
Modern::Perl: 0
Moose: 0
MooseX::ClassCompositor: 0
Test::MockTime: 0
Test::Moose: 0
Test::Most: 0
YAML::Any: 0
configure_requires:
ExtUtils::MakeMaker: 6.30
dynamic_config: 0
generated_by: 'Dist::Zilla version 4.300009, CPAN::Meta::Converter version 2.113640'
license: perl
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
version: 1.4
name: DateTimeX-Mashup-Shiras
requires:
DateTime: 0
DateTime::Format::DateManip: 0
DateTime::Format::Epoch: v0.13
DateTime::Format::Excel: 0
Moose::Role: 0
MooseX::StrictConstructor: 0
MooseX::Types: 0
MooseX::Types::Moose: 0
Smart::Comments: 0
version: 0.94
version: v0.07_01
68 changes: 68 additions & 0 deletions Makefile.PL
@@ -0,0 +1,68 @@

use strict;
use warnings;



use ExtUtils::MakeMaker 6.30;



my %WriteMakefileArgs = (
"ABSTRACT" => "a mashup allowing multiple date formats\r",
"AUTHOR" => "Jed Lund <jandrew\@cpan.org>",
"BUILD_REQUIRES" => {
"Modern::Perl" => 0,
"Moose" => 0,
"MooseX::ClassCompositor" => 0,
"Test::MockTime" => 0,
"Test::Moose" => 0,
"Test::Most" => 0,
"YAML::Any" => 0
},
"CONFIGURE_REQUIRES" => {
"ExtUtils::MakeMaker" => "6.30"
},
"DISTNAME" => "DateTimeX-Mashup-Shiras",
"EXE_FILES" => [],
"LICENSE" => "perl",
"NAME" => "DateTimeX::Mashup::Shiras",
"PREREQ_PM" => {
"DateTime" => 0,
"DateTime::Format::DateManip" => 0,
"DateTime::Format::Epoch" => "v0.13",
"DateTime::Format::Excel" => 0,
"Moose::Role" => 0,
"MooseX::StrictConstructor" => 0,
"MooseX::Types" => 0,
"MooseX::Types::Moose" => 0,
"Smart::Comments" => 0,
"version" => "0.94"
},
"VERSION" => "v0.07_01",
"test" => {
"TESTS" => "t/*.t"
}
);


unless ( eval { ExtUtils::MakeMaker->VERSION(6.56) } ) {
my $br = delete $WriteMakefileArgs{BUILD_REQUIRES};
my $pp = $WriteMakefileArgs{PREREQ_PM};
for my $mod ( keys %$br ) {
if ( exists $pp->{$mod} ) {
$pp->{$mod} = $br->{$mod} if $br->{$mod} > $pp->{$mod};
}
else {
$pp->{$mod} = $br->{$mod};
}
}
}

delete $WriteMakefileArgs{CONFIGURE_REQUIRES}
unless eval { ExtUtils::MakeMaker->VERSION(6.52) };

WriteMakefile(%WriteMakefileArgs);



30 changes: 30 additions & 0 deletions README
@@ -0,0 +1,30 @@
Abstract here!

Build from Source - (for example git)

Download a compressed file with the code

Extract the code from the compressed file

Change into the extracted directory

(For Windows find what version of make was used to compile your perl)
perl -V:make

Then

>perl Makefile.PL

>make

>make test

>make install

>make clean
(use the windows make version as appropriate (nmake?))dir

Build from cpanp - TODO

Install with Dist::Zilla - This only works with the CPAN download (not the github .tar.gz file)
$ dzil install Package-Name-.tar.gz
29 changes: 29 additions & 0 deletions dist.ini
@@ -0,0 +1,29 @@
name = DateTimeX-Mashup-Shiras
author = Jed Lund <jandrew@cpan.org>
license = Perl_5
copyright_holder = Jed Lund
copyright_year = 2012

[AutoPrereqs]

[MetaYAML]

[MetaJSON]

[License]

[GatherDir]
exclude_filename = Makefile.PL
exclude_filename = LICENSE
exclude_filename = MANIFEST
exclude_filename = META.json
exclude_filename = META.yml
exclude_filename = DevelopmentNotes.txt

[VersionFromModule]

[NextRelease]

[MakeMaker]

[Manifest]

0 comments on commit 89a9ccb

Please sign in to comment.