added repo

This commit is contained in:
git@daemon.de
2014-11-07 08:58:16 +01:00
parent 792cb4cd29
commit 9d7d1e78de
3 changed files with 16 additions and 3 deletions

View File

@@ -4,7 +4,7 @@
"unknown" "unknown"
], ],
"dynamic_config" : 1, "dynamic_config" : 1,
"generated_by" : "ExtUtils::MakeMaker version 6.98, CPAN::Meta::Converter version 2.120630", "generated_by" : "ExtUtils::MakeMaker version 6.66, CPAN::Meta::Converter version 2.130880",
"license" : [ "license" : [
"unknown" "unknown"
], ],
@@ -39,5 +39,10 @@
} }
}, },
"release_status" : "stable", "release_status" : "stable",
"resources" : {
"repository" : {
"url" : "https://github.com/TLINDEN/Data-Validate-Struct"
}
},
"version" : "0.08" "version" : "0.08"
} }

View File

@@ -7,7 +7,7 @@ build_requires:
configure_requires: configure_requires:
ExtUtils::MakeMaker: 0 ExtUtils::MakeMaker: 0
dynamic_config: 1 dynamic_config: 1
generated_by: 'ExtUtils::MakeMaker version 6.98, CPAN::Meta::Converter version 2.120630' generated_by: 'ExtUtils::MakeMaker version 6.66, CPAN::Meta::Converter version 2.130880'
license: unknown license: unknown
meta-spec: meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -21,4 +21,6 @@ requires:
Data::Validate: 0.06 Data::Validate: 0.06
Data::Validate::IP: 0.18 Data::Validate::IP: 0.18
Regexp::Common: 0 Regexp::Common: 0
resources:
repository: https://github.com/TLINDEN/Data-Validate-Struct
version: 0.08 version: 0.08

View File

@@ -18,6 +18,12 @@ WriteMakefile(
'Data::Validate::IP' => '0.18', 'Data::Validate::IP' => '0.18',
}, },
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
test => { TESTS => 't/*.t' } test => { TESTS => 't/*.t' },
'META_MERGE' => {
resources => {
repository => 'https://github.com/TLINDEN/Data-Validate-Struct',
},
},
); );