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
|
# Files and directories that are NOT part of the module distribution
# (i.e., are not to be added to the distribution tarball)
# Patterns here are Perl regexes, applied to full file paths
# (relative to the module root directory, of course).
# See https://metacpan.org/pod/ExtUtils::Manifest#MANIFEST.SKIP
\.tar\.gz$ # Distributions
# Version control directories
\bCVS\b
^\.cvsignore$
^\.git
^\.gitignore$
# Temporary build files/dirs
^Build$
^Build.bat$
^Makefile$
^Makefile.old$
^_build/
^blib/
^blibdirs
^MYMETA
^MANIFEST.bak$
^Time-Format-[\d.]+/
# Temporary files/dirs from profiling tools
^nytprof
^cover_db/
# Documentation temporary files/dirs
^pm_to_blib
^pod.*\.tmp$
# Editor temp files
~$
^#.*#$
^\.#
# Developer notes and tools
^project-readme
^DEV-NOTES\.org
^TAGS$
build_tags\.cmd
TAGS_expr\.txt
# Windows image index files
Thumbs\.db
# --------------------------------
# The following is for Emacs:
# Local Variables:
# mode: text
# comment-start: "# "
# comment-start-skip: "#+ *"
# comment-use-syntax: nil
# End:
|