Sync up .gitignore and MANIFEST* with recent changes.
This commit is contained in:
parent
55d3f05cf2
commit
81da7be357
3 changed files with 29 additions and 26 deletions
37
.gitignore
vendored
37
.gitignore
vendored
|
@ -1,29 +1,28 @@
|
||||||
.dirstamp
|
.dirstamp
|
||||||
Build
|
/Build
|
||||||
ChangeLog
|
/ChangeLog
|
||||||
MYMETA.json
|
/MYMETA.json
|
||||||
MYMETA.yml
|
/MYMETA.yml
|
||||||
Makefile
|
/Makefile
|
||||||
Makefile.in
|
/Makefile.in
|
||||||
|
/bin/chkstow
|
||||||
|
/bin/stow
|
||||||
|
/doc/stow.info
|
||||||
|
/doc/version.texi
|
||||||
|
/tmp-testing-trees/
|
||||||
_build/
|
_build/
|
||||||
autom4te.cache/
|
autom4te.cache/
|
||||||
blib/
|
blib/
|
||||||
chkstow
|
|
||||||
config.log
|
config.log
|
||||||
config.status
|
config.status
|
||||||
configure
|
configure
|
||||||
doc/manual.html
|
/doc/ChangeLog.OLD
|
||||||
doc/manual.pdf
|
/doc/manual.html
|
||||||
doc/manual.texi
|
/doc/manual.pdf
|
||||||
doc/stow.8
|
/doc/manual.texi
|
||||||
doc/stow.html
|
/doc/stow.pdf
|
||||||
doc/stow.pdf
|
/doc/stow.8
|
||||||
lib/Stow.pm
|
/lib/Stow.pm
|
||||||
stamp-vti
|
stamp-vti
|
||||||
stamp-vti
|
|
||||||
stow
|
|
||||||
stow-[0-9].[0-9].[0-9].tar.*
|
stow-[0-9].[0-9].[0-9].tar.*
|
||||||
stow-[0-9].[0-9].[0-9]/
|
stow-[0-9].[0-9].[0-9]/
|
||||||
stow.info
|
|
||||||
tmp-testing-trees/
|
|
||||||
version.texi
|
|
||||||
|
|
10
MANIFEST
10
MANIFEST
|
@ -1,9 +1,4 @@
|
||||||
aclocal.m4
|
|
||||||
AUTHORS
|
AUTHORS
|
||||||
automake/install-sh
|
|
||||||
automake/mdate-sh
|
|
||||||
automake/missing
|
|
||||||
automake/stamp-vti
|
|
||||||
bin/chkstow
|
bin/chkstow
|
||||||
bin/chkstow.in
|
bin/chkstow.in
|
||||||
bin/stow
|
bin/stow
|
||||||
|
@ -13,6 +8,10 @@ ChangeLog
|
||||||
configure
|
configure
|
||||||
configure.ac
|
configure.ac
|
||||||
COPYING
|
COPYING
|
||||||
|
default-ignore-list
|
||||||
|
doc/ChangeLog.OLD
|
||||||
|
doc/manual.html
|
||||||
|
doc/manual.pdf
|
||||||
doc/stow.8
|
doc/stow.8
|
||||||
doc/stow.info
|
doc/stow.info
|
||||||
doc/stow.texi
|
doc/stow.texi
|
||||||
|
@ -33,6 +32,7 @@ t/defer.t
|
||||||
t/examples.t
|
t/examples.t
|
||||||
t/find_stowed_path.t
|
t/find_stowed_path.t
|
||||||
t/foldable.t
|
t/foldable.t
|
||||||
|
t/ignore.t
|
||||||
t/join_paths.t
|
t/join_paths.t
|
||||||
t/parent.t
|
t/parent.t
|
||||||
t/stow.t
|
t/stow.t
|
||||||
|
|
|
@ -66,13 +66,17 @@
|
||||||
^MANIFEST\.SKIP
|
^MANIFEST\.SKIP
|
||||||
|
|
||||||
# Avoid archives of this distribution
|
# Avoid archives of this distribution
|
||||||
\bStow-[\d\.\_]+
|
\b[sS]tow-[\d\.\_]+
|
||||||
|
|
||||||
# Avoid autotools stuff
|
# Avoid autotools stuff
|
||||||
|
^aclocal.m4$
|
||||||
|
^automake/
|
||||||
^autom4te\.cache/.+$
|
^autom4te\.cache/.+$
|
||||||
^config\.(log|status)$
|
^config\.(log|status)$
|
||||||
^doc/\.dirstamp$
|
^doc/\.dirstamp$
|
||||||
^doc/stamp-vti$
|
^doc/stamp-vti$
|
||||||
|
^doc/manual.texi
|
||||||
|
^doc/stow.pdf
|
||||||
|
|
||||||
# Avoid test files
|
# Avoid test files
|
||||||
^t/(stow|target)/.+$
|
^tmp-testing-trees
|
||||||
|
|
Loading…
Reference in a new issue