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
|
# -*- 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 Russ Allbery <eagle@eyrie.org>
#
# 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/
# 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 archives of this distribution
\b[\w-]+-[\d\.\_]+\.tar\..z$
\b[\w-]+-[\d\.\_]+\.zip$
# MYMETA.json and MYMETA.yml are intentionally not ignored because otherwise
# Test::Kwalitee fails (https://rt.cpan.org/Ticket/Display.html?id=143514).
# They will be added back in by Module::Build during ./Build manifest, and
# have to (unfortunately) be removed by hand.
#
# This is not entirely correct, since they should indeed be ignored when
# creating the distribution, but it happens to work for me. See the bug for
# more details.
|