# # # patch "ChangeLog" # from [c9d120932c269c85778d0c8d1f65ec41b1995cc9] # to [1eb8269b5ac4da78a4654ccee772a977396a2117] # # patch "std_hooks.lua" # from [c8ca3f91c9ca78de218a7ec66f6e4aa4064e5ccf] # to [76099a6bd6ac95f36965f58c63d65af4659bb417] # ============================================================ --- ChangeLog c9d120932c269c85778d0c8d1f65ec41b1995cc9 +++ ChangeLog 1eb8269b5ac4da78a4654ccee772a977396a2117 @@ -1,3 +1,8 @@ +2006-10-31 Benoît Dejean + + * std_hooks.lua (ignore_file): Fixed many patterns. + Also added gettext and intltool related patterns. + 2006-10-12 Thomas Keller * automate.cc: replaced std::endl in favour of simple unix ============================================================ --- std_hooks.lua c8ca3f91c9ca78de218a7ec66f6e4aa4064e5ccf +++ std_hooks.lua 76099a6bd6ac95f36965f58c63d65af4659bb417 @@ -129,6 +129,10 @@ function ignore_file(name) "%.class$", -- python "%.pyc$", "%.pyo$", + -- gettext + "%.g?mo$", + -- intltool + "%.intltool%-merge%-cache$", -- TeX "%.aux$", -- backup files @@ -140,16 +144,16 @@ function ignore_file(name) -- other VCSes (where metadata is stored in named files): "%.scc$", -- desktop/directory configuration metadata - "^.DS_Store$", "/.DS_Store$", "^desktop.ini$", "/desktop.ini$" + "^%.DS_Store$", "/%.DS_Store$", "^desktop%.ini$", "/desktop%.ini$" } local dir_pats = { -- autotools detritus: - "autom4te.cache", ".deps", + "autom4te%.cache", "%.deps", "%.libs", -- Cons/SCons detritus: - ".consign", ".sconsign", + "%.consign", "%.sconsign", -- other VCSes (where metadata is stored in named dirs): - "CVS", ".svn", "SCCS", "_darcs", ".cdv", ".git", ".bzr", ".hg" + "CVS", "%.svn", "SCCS", "_darcs", "%.cdv", "%.git", "%.bzr", "%.hg" } for _, pat in ipairs(file_pats) do