File tree 5 files changed +38
-25
lines changed
5 files changed +38
-25
lines changed Original file line number Diff line number Diff line change @@ -11,8 +11,10 @@ my $builder = Module::Build->new(
11
11
requires => {
12
12
' Syntax::Highlight::Engine::Kate' => 0.06,
13
13
' Digest::MD5' => 0,
14
- ' Term::ANSIColor' => 0, # 3.0 or better to get bright colors
14
+ ' Term::ANSIColor' => 0, # 3.0 or better to get bright colors
15
+ ' File::Path' => ' 2.07' ,
15
16
},
17
+ configure_requires => { ' Module::Build' => ' 0.4' },
16
18
add_to_cleanup => [' DB-Color-*' ],
17
19
create_makefile_pl => ' traditional' ,
18
20
recursive_test_files => 1,
Original file line number Diff line number Diff line change 1
1
Revision history for DB-Color
2
2
3
+ 0.10 2012/01/08
4
+ - Fix "Argument isn't numeric" warnings.
5
+ - Assert minimum version of File::Path to fix "make_path is not
6
+ exported" build failures.
7
+
3
8
0.09 2012/09/05
4
9
- Don't use BRIGHT_BLUE if they have Term::ANSIColor < 3 (Cosimo
5
10
Streppone)
Original file line number Diff line number Diff line change 4
4
" Curtis 'Ovid' Poe <[email protected] >"
5
5
],
6
6
"dynamic_config" : 1 ,
7
- "generated_by" : " Module::Build version 0.4, CPAN::Meta::Converter version 2.120630 " ,
7
+ "generated_by" : " Module::Build version 0.4, CPAN::Meta::Converter version 2.120351 " ,
8
8
"license" : [
9
9
" perl_5"
10
10
],
21
21
},
22
22
"configure" : {
23
23
"requires" : {
24
- "Module::Build" : " 0.36 "
24
+ "Module::Build" : " 0.4 "
25
25
}
26
26
},
27
27
"runtime" : {
28
28
"requires" : {
29
29
"Digest::MD5" : " 0" ,
30
- "Syntax::Highlight::Engine::Kate" : " 0.06"
30
+ "File::Path" : " 2.07" ,
31
+ "Syntax::Highlight::Engine::Kate" : " 0.06" ,
32
+ "Term::ANSIColor" : " 0"
31
33
}
32
34
}
33
35
},
34
36
"provides" : {
35
37
"DB::Color" : {
36
38
"file" : " lib/DB/Color.pm" ,
37
- "version" : " 0.08 "
39
+ "version" : " 0.10 "
38
40
},
39
41
"DB::Color::Config" : {
40
42
"file" : " lib/DB/Color/Config.pm" ,
41
- "version" : " 0.08 "
43
+ "version" : " 0.10 "
42
44
},
43
45
"DB::Color::Highlight" : {
44
46
"file" : " lib/DB/Color/Highlight.pm" ,
45
- "version" : " 0.08 "
47
+ "version" : " 0.10 "
46
48
}
47
49
},
48
50
"release_status" : " stable" ,
54
56
"url" : " https://github.com/Ovid/DB--Color"
55
57
}
56
58
},
57
- "version" : " 0.08 "
59
+ "version" : " 0.10 "
58
60
}
Original file line number Diff line number Diff line change 5
5
build_requires :
6
6
Test::More : 0
7
7
configure_requires :
8
- Module::Build : 0.36
8
+ Module::Build : 0.4
9
9
dynamic_config : 1
10
- generated_by : ' Module::Build version 0.4, CPAN::Meta::Converter version 2.120630 '
10
+ generated_by : ' Module::Build version 0.4, CPAN::Meta::Converter version 2.120351 '
11
11
license : perl
12
12
meta-spec :
13
13
url : http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -16,17 +16,19 @@ name: DB-Color
16
16
provides :
17
17
DB::Color :
18
18
file : lib/DB/Color.pm
19
- version : 0.08
19
+ version : 0.10
20
20
DB::Color::Config :
21
21
file : lib/DB/Color/Config.pm
22
- version : 0.08
22
+ version : 0.10
23
23
DB::Color::Highlight :
24
24
file : lib/DB/Color/Highlight.pm
25
- version : 0.08
25
+ version : 0.10
26
26
requires :
27
27
Digest::MD5 : 0
28
+ File::Path : 2.07
28
29
Syntax::Highlight::Engine::Kate : 0.06
30
+ Term::ANSIColor : 0
29
31
resources :
30
32
license : http://dev.perl.org/licenses/
31
33
repository : https://github.com/Ovid/DB--Color
32
- version : 0.08
34
+ version : 0.10
Original file line number Diff line number Diff line change 2
2
use ExtUtils::MakeMaker;
3
3
WriteMakefile
4
4
(
5
- ' test' => {
6
- ' TESTS' => ' t/*.t'
7
- },
8
- ' PL_FILES' => {},
9
- ' INSTALLDIRS' => ' site' ,
10
5
' NAME' => ' DB::Color' ,
11
- ' EXE_FILES' => [
12
- ' script/perldbsyntax'
13
- ],
14
6
' VERSION_FROM' => ' lib/DB/Color.pm' ,
15
7
' PREREQ_PM' => {
16
- ' Test::More' => 0,
8
+ ' Digest::MD5' => 0,
9
+ ' File::Path' => ' 2.07' ,
17
10
' Syntax::Highlight::Engine::Kate' => ' 0.06' ,
18
- ' Digest::MD5' => 0
19
- }
11
+ ' Term::ANSIColor' => 0,
12
+ ' Test::More' => 0
13
+ },
14
+ ' INSTALLDIRS' => ' site' ,
15
+ ' EXE_FILES' => [
16
+ ' script/perldbsyntax'
17
+ ],
18
+ ' PL_FILES' => {},
19
+ ' test' => {
20
+ ' TESTS' => ' t/*.t'
21
+ }
20
22
)
21
23
;
You can’t perform that action at this time.
0 commit comments