From 79789e9c60f3319b478af4671e683ce5c97c25a7 Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Wed, 26 Aug 2009 18:19:50 +0200 Subject: add ignore patterns to be able to use "bzr status" or "bzr add" again after building apt by ignoring temporary files, build files and the autogenerated files in doc/. --- .bzrignore | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .bzrignore (limited to '.bzrignore') diff --git a/.bzrignore b/.bzrignore new file mode 100644 index 000000000..bad8837c6 --- /dev/null +++ b/.bzrignore @@ -0,0 +1,30 @@ +# temporary and backup files +*~ +*.bak +*.rej + +# buildrelated files/dirs +aclocal.m4 +autom4te.cache/ +build/ +configure + +# generated apt man pages +doc/*.1 +doc/*.5 +doc/*.8 +doc/*/*.1 +doc/*/*.5 +doc/*/*.8 +doc/*/apt.ent + +# ignore xml man page files generated by po4a +# older translation methods translate in this files +# so we can not ignore it for all translations now +doc/ja/*.xml + +# FIXME: files generated by deprecated sgml man pages +doc/es/manpage.links +doc/es/manpage.refs +doc/pt_BR/manpage.links +doc/pt_BR/manpage.refs -- cgit v1.2.3 From c9e62a0147445b816d4cb1009fbd6fcc7de29f68 Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Wed, 9 Sep 2009 15:25:21 +0200 Subject: add the fr generated .xml files to the ignore list --- .bzrignore | 1 + 1 file changed, 1 insertion(+) (limited to '.bzrignore') diff --git a/.bzrignore b/.bzrignore index bad8837c6..d004d22f0 100644 --- a/.bzrignore +++ b/.bzrignore @@ -22,6 +22,7 @@ doc/*/apt.ent # older translation methods translate in this files # so we can not ignore it for all translations now doc/ja/*.xml +doc/fr/*.xml # FIXME: files generated by deprecated sgml man pages doc/es/manpage.links -- cgit v1.2.3 From 93517da394859666e4af08f518dfb95c4ac271dd Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Mon, 2 Nov 2009 10:26:52 +0100 Subject: fix/simplify buildsystem for the (now) po4a-only manpages --- .bzrignore | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) (limited to '.bzrignore') diff --git a/.bzrignore b/.bzrignore index 660c3e027..45db3c607 100644 --- a/.bzrignore +++ b/.bzrignore @@ -9,7 +9,8 @@ autom4te.cache/ build/ configure -# generated apt man pages +# generated files in the progress to build all +# apt man pages and other documentation doc/*.1 doc/*.5 doc/*.8 @@ -17,14 +18,5 @@ doc/*/*.1 doc/*/*.5 doc/*/*.8 doc/*/apt.ent - -# ignore xml man page files generated by po4a -# older translation methods translate in this files -# so we can not ignore it for all translations now doc/*/*.xml - -# FIXME: files generated by deprecated sgml man pages -doc/es/manpage.links -doc/es/manpage.refs -doc/pt_BR/manpage.links -doc/pt_BR/manpage.refs +doc/*/*.sgml -- cgit v1.2.3