-
Notifications
You must be signed in to change notification settings - Fork 4
/
MANIFEST.SKIP
66 lines (56 loc) · 1.35 KB
/
MANIFEST.SKIP
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# -*- conf -*-
#
# Files to ignore when generating a Perl module manifest.
#
# The canonical version of this file is maintained in the rra-c-util package,
# which can be found at <https://www.eyrie.org/~eagle/software/rra-c-util/>.
#
# Copyright 2018, 2022-2024 Russ Allbery <[email protected]>
#
# Copying and distribution of this file, with or without modification, are
# permitted in any medium without royalty provided the copyright notice and
# this notice are preserved. This file is offered as-is, without any
# warranty.
#
# SPDX-License-Identifier: FSFAP
# Avoid version control files.
^\.git/
# Avoid generated build files.
\bblib/
^scripts/pod2man$
^scripts/pod2text$
# Avoid ExtUtils::MakeMaker generated files.
\bMakefile$
\bpm_to_blib$
# Avoid Module::Build generated and utility files.
\bBuild$
\b_build/
\bBuild.bat$
\bBuild.COM$
\bBUILD.COM$
\bbuild.com$
# Avoid temp and backup files.
~$
\.old$
\#$
\b\.#
\.bak$
\.tmp$
\.#
\.rej$
# Avoid OS-specific files/dirs
# Mac OSX metadata
\B\.DS_Store
# Mac OSX SMB mount metadata files
\B\._
# Avoid Devel::Cover and Devel::CoverX::Covered files.
\bcover_db\b
\bcovered\b
# Avoid MYMETA files
^MYMETA\.
# Avoid archives of this distribution
\b[\w-]+-[\d\.\_]+\.tar\..z$
\b[\w-]+-[\d\.\_]+\.zip$
# CI configuration. Do not include in the distribution so that it doesn't
# make its way into Perl core.
^\.github/