Skip to content

Commit 500a5cb

Browse files
committed
turn feature-recommends into recommends so CPAN smokers report versions
1 parent 3eb098f commit 500a5cb

2 files changed

Lines changed: 17 additions & 52 deletions

File tree

META.json

Lines changed: 14 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -23,38 +23,6 @@
2323
"xt"
2424
]
2525
},
26-
"optional_features" : {
27-
"dpss" : {
28-
"description" : "Support for DPSS windows",
29-
"prereqs" : {
30-
"runtime" : {
31-
"recommends" : {
32-
"PDL::LinearAlgebra::Special" : "0"
33-
}
34-
}
35-
}
36-
},
37-
"kaiser" : {
38-
"description" : "Support for kaiser windows",
39-
"prereqs" : {
40-
"runtime" : {
41-
"recommends" : {
42-
"PDL::GSLSF::BESSEL" : "0"
43-
}
44-
}
45-
}
46-
},
47-
"plot" : {
48-
"description" : "Plot windows",
49-
"prereqs" : {
50-
"runtime" : {
51-
"recommends" : {
52-
"PDL::Graphics::Simple" : "0"
53-
}
54-
}
55-
}
56-
}
57-
},
5826
"prereqs" : {
5927
"configure" : {
6028
"requires" : {
@@ -72,6 +40,11 @@
7240
}
7341
},
7442
"runtime" : {
43+
"recommends" : {
44+
"PDL::GSLSF::BESSEL" : "0",
45+
"PDL::Graphics::Simple" : "0",
46+
"PDL::LinearAlgebra::Special" : "0"
47+
},
7548
"requires" : {
7649
"PDL" : "2.055",
7750
"perl" : "5.010"
@@ -92,11 +65,11 @@
9265
"provides" : {
9366
"PDL::DSP::Windows" : {
9467
"file" : "lib/PDL/DSP/Windows.pm",
95-
"version" : "0.102"
68+
"version" : "0.103"
9669
},
9770
"PDL::Demos::DSPWindows" : {
9871
"file" : "lib/PDL/Demos/DSPWindows.pm",
99-
"version" : "0.102"
72+
"version" : "0.103"
10073
}
10174
},
10275
"release_status" : "stable",
@@ -106,7 +79,7 @@
10679
"web" : "https://github.com/PDLPorters/PDL-DSP-Windows/issues"
10780
}
10881
},
109-
"version" : "0.102",
82+
"version" : "0.103",
11083
"x_Dist_Zilla" : {
11184
"perl" : {
11285
"version" : "5.032000"
@@ -236,7 +209,7 @@
236209
"changelog" : "Changes"
237210
},
238211
"Dist::Zilla::Role::Git::Repo" : {
239-
"git_version" : "2.34.1",
212+
"git_version" : "2.43.0",
240213
"repo_root" : "."
241214
}
242215
},
@@ -318,7 +291,7 @@
318291
"changelog" : "Changes"
319292
},
320293
"Dist::Zilla::Role::Git::Repo" : {
321-
"git_version" : "2.34.1",
294+
"git_version" : "2.43.0",
322295
"repo_root" : "."
323296
},
324297
"Dist::Zilla::Role::Git::StringFormatter" : {
@@ -335,12 +308,12 @@
335308
"branch" : null,
336309
"changelog" : "Changes",
337310
"signed" : 0,
338-
"tag" : "release/0.102",
311+
"tag" : "release/0.103",
339312
"tag_format" : "release/%v",
340313
"tag_message" : ""
341314
},
342315
"Dist::Zilla::Role::Git::Repo" : {
343-
"git_version" : "2.34.1",
316+
"git_version" : "2.43.0",
344317
"repo_root" : "."
345318
},
346319
"Dist::Zilla::Role::Git::StringFormatter" : {
@@ -384,7 +357,7 @@
384357
"changelog" : "Changes"
385358
},
386359
"Dist::Zilla::Role::Git::Repo" : {
387-
"git_version" : "2.34.1",
360+
"git_version" : "2.43.0",
388361
"repo_root" : "."
389362
},
390363
"Dist::Zilla::Role::Git::StringFormatter" : {
@@ -490,7 +463,7 @@
490463
"class" : "Dist::Zilla::Plugin::Git::Contributors",
491464
"config" : {
492465
"Dist::Zilla::Plugin::Git::Contributors" : {
493-
"git_version" : "2.34.1",
466+
"git_version" : "2.43.0",
494467
"include_authors" : 0,
495468
"include_releaser" : 1,
496469
"order_by" : "name",

cpanfile

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,8 @@
11
requires 'PDL' => '2.055';
22

3-
feature dpss => 'Support for DPSS windows' => sub {
4-
recommends 'PDL::LinearAlgebra::Special';
5-
};
6-
7-
feature kaiser => 'Support for kaiser windows' => sub {
8-
recommends 'PDL::GSLSF::BESSEL';
9-
};
10-
11-
feature plot => 'Plot windows' => sub {
12-
recommends 'PDL::Graphics::Simple';
13-
};
3+
recommends 'PDL::LinearAlgebra::Special';
4+
recommends 'PDL::GSLSF::BESSEL';
5+
recommends 'PDL::Graphics::Simple';
146

157
on test => sub {
168
requires 'Test::More' => '0.96';

0 commit comments

Comments
 (0)