Skip to content

Commit 3fcbb02

Browse files
committed
MANIFEST, xt, gitignore
1 parent 1dc2dd8 commit 3fcbb02

File tree

5 files changed

+107
-0
lines changed

5 files changed

+107
-0
lines changed

.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
SD/SD.pm
2+
SD/SD.xs
3+
SD/SD.c
4+
VS/VS.pm
5+
VS/VS.xs
6+
VS/VS.c
7+
*.o
8+
*.bs

MANIFEST

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
buildfunc.pm
2+
Changes
3+
HDF.pm
4+
Makefile.PL
5+
MANIFEST This list of files
6+
MANIFEST.SKIP
7+
SD/Changes
8+
SD/Makefile.PL
9+
SD/SD.pd
10+
t/hdf_sd.t
11+
t/hdf_vdata.t
12+
t/hdf_vgroup.t
13+
TODO
14+
typemap
15+
VS/Changes
16+
VS/Makefile.PL
17+
VS/VS.pd

MANIFEST.SKIP

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
\.DS_Store
2+
%$
3+
-stamp$
4+
.*/TAGS$
5+
.*Version_check$
6+
.*\#$
7+
.*\.0$
8+
.*\.orig$
9+
.*\.rej$
10+
\.swp$
11+
.exe$
12+
/\.\#.*
13+
/pm_to_blib$
14+
/tmp.*
15+
MANIFEST\.bak$
16+
MANIFEST\.old
17+
META\.json
18+
META\.yml
19+
Makefile$
20+
Makefile\.aperl
21+
Makefile\.old
22+
\.(tmp|new|diff|ori)$
23+
\.BAK$
24+
\.bck$
25+
\.bs
26+
\.bundle$
27+
\.lck$
28+
\.m$
29+
\.o$
30+
\.out$
31+
\.patch$
32+
\.so$
33+
\.tar\.gz$
34+
/core$
35+
\b_eumm/
36+
^SD/SD\.(pm|xs|c)$
37+
^VS/VS\.(pm|xs|c)$
38+
^\.\#.*
39+
^\.exists
40+
^\.git
41+
\.gitignore$
42+
^blib/
43+
^pm_to_blib$
44+
~$
45+
^xt/
46+
47+
^\.github/
48+
^\.cirrus\.yml
49+
50+
^cover_db/
51+
^nytprof(/|\.out)
52+
\.gc(ov|no|da)$
53+
pp-\w*\.c$

xt/00-check-changelog.t

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
use Test::More tests => 1;
2+
3+
use strict;
4+
use warnings;
5+
6+
use CPAN::Changes;
7+
use Data::Dumper;
8+
9+
my $changes = CPAN::Changes->load('Changes');
10+
11+
ok($changes);
12+
13+
my @releases = map { +{ $_->version => $_->date } } $changes->releases;
14+
15+
note Dumper \@releases;
16+
17+
done_testing;

xt/manifest.t

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
use strict;
2+
use warnings;
3+
use Test::More;
4+
use ExtUtils::Manifest;
5+
6+
unless ( $ENV{RELEASE_TESTING} ) {
7+
plan( skip_all => "Author tests not required for installation" );
8+
}
9+
plan tests => 2;
10+
11+
is_deeply [ ExtUtils::Manifest::manicheck() ], [], 'missing';
12+
is_deeply [ ExtUtils::Manifest::filecheck() ], [], 'extra';

0 commit comments

Comments
 (0)