[gimp-gap] applied patch provided by Carlo Baldassi #623050 that adds .gitignore files



commit ab07c18b6abedc6c714838f32a656d82a9a69d7d
Author: Wolfgang Hofer <wolfgangh svn gnome org>
Date:   Sun Jul 4 14:32:23 2010 +0200

    applied patch provided by Carlo Baldassi #623050 that adds .gitignore files

 .gitignore                    |   39 +++++++++++++++++++++++++++++++++++++++
 ChangeLog                     |   24 ++++++++++++++++++++++++
 docs/.gitignore               |    2 ++
 docs/howto/.gitignore         |    2 ++
 docs/howto/txt/.gitignore     |    2 ++
 docs/reference/.gitignore     |    2 ++
 docs/reference/txt/.gitignore |    2 ++
 extern_libs/.gitignore        |    4 ++++
 gap/.gitignore                |   25 +++++++++++++++++++++++++
 images/.gitignore             |    4 ++++
 libgapbase/.gitignore         |    5 +++++
 libgapvidapi/.gitignore       |    5 +++++
 libgapvidutil/.gitignore      |    5 +++++
 libwavplayclient/.gitignore   |    5 +++++
 po/.gitignore                 |   11 +++++++++++
 vid_common/.gitignore         |    6 ++++++
 vid_enc_avi/.gitignore        |    6 ++++++
 vid_enc_ffmpeg/.gitignore     |    6 ++++++
 vid_enc_rawframes/.gitignore  |    6 ++++++
 vid_enc_single/.gitignore     |    6 ++++++
 20 files changed, 167 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..4cb3304
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,39 @@
+*.la
+*.lo
+*.o
+/*.config
+/*.creator
+/*.creator.user
+/*.files
+/*.includes
+/Makefile
+/Makefile.in
+/aclocal.m4
+/autom4te.cache
+/compile
+/config.cache
+/config.guess
+/config.h
+/config.h.in
+/config.h.in~
+/config.log
+/config.status
+/config.status.lineno
+/config.sub
+/configure
+/depcomp
+/install-sh
+/intltool-extract
+/intltool-extract.in
+/intltool-merge
+/intltool-merge.in
+/intltool-modules
+/intltool-update
+/intltool-update.in
+/libtool
+/ltmain.sh
+/missing
+/mkinstalldirs
+/stamp-h
+/stamp-h.in
+/stamp-h1
diff --git a/ChangeLog b/ChangeLog
index e737dae..046acf4 100755
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,29 @@
 2010-07-04 Wolfgang Hofer <hof gimp org>
 
+- added gitignore files (applied patch provided by Carlo Baldassi #623050)
+
+   git add .gitignore
+   git add docs/.gitignore
+   git add docs/howto/.gitignore
+   git add docs/howto/txt/.gitignore
+   git add docs/reference/.gitignore
+   git add docs/reference/txt/.gitignore
+   git add extern_libs/.gitignore
+   git add gap/.gitignore
+   git add images/.gitignore
+   git add libgapbase/.gitignore
+   git add libgapvidapi/.gitignore
+   git add libgapvidutil/.gitignore
+   git add libwavplayclient/.gitignore
+   git add po/.gitignore
+   git add vid_common/.gitignore
+   git add vid_enc_avi/.gitignore
+   git add vid_enc_ffmpeg/.gitignore
+   git add vid_enc_rawframes/.gitignore
+   git add vid_enc_single/.gitignore
+   
+2010-07-04 Wolfgang Hofer <hof gimp org>
+
 - removed the execution bit on .txt, *.c and *.h source files
   as suggested in #623078
   
diff --git a/docs/.gitignore b/docs/.gitignore
new file mode 100644
index 0000000..b336cc7
--- /dev/null
+++ b/docs/.gitignore
@@ -0,0 +1,2 @@
+/Makefile
+/Makefile.in
diff --git a/docs/howto/.gitignore b/docs/howto/.gitignore
new file mode 100644
index 0000000..b336cc7
--- /dev/null
+++ b/docs/howto/.gitignore
@@ -0,0 +1,2 @@
+/Makefile
+/Makefile.in
diff --git a/docs/howto/txt/.gitignore b/docs/howto/txt/.gitignore
new file mode 100644
index 0000000..b336cc7
--- /dev/null
+++ b/docs/howto/txt/.gitignore
@@ -0,0 +1,2 @@
+/Makefile
+/Makefile.in
diff --git a/docs/reference/.gitignore b/docs/reference/.gitignore
new file mode 100644
index 0000000..b336cc7
--- /dev/null
+++ b/docs/reference/.gitignore
@@ -0,0 +1,2 @@
+/Makefile
+/Makefile.in
diff --git a/docs/reference/txt/.gitignore b/docs/reference/txt/.gitignore
new file mode 100644
index 0000000..b336cc7
--- /dev/null
+++ b/docs/reference/txt/.gitignore
@@ -0,0 +1,2 @@
+/Makefile
+/Makefile.in
diff --git a/extern_libs/.gitignore b/extern_libs/.gitignore
new file mode 100644
index 0000000..891b48f
--- /dev/null
+++ b/extern_libs/.gitignore
@@ -0,0 +1,4 @@
+/Makefile
+/Makefile.in
+/ffmpeg
+/libmpeg3
diff --git a/gap/.gitignore b/gap/.gitignore
new file mode 100644
index 0000000..a38460c
--- /dev/null
+++ b/gap/.gitignore
@@ -0,0 +1,25 @@
+/.deps
+/.libs
+/Makefile
+/Makefile.in
+/gap_bluebox
+/gap_decode_mplayer
+/gap_filter
+/gap_fmac
+/gap_fmac_varying
+/gap_morph
+/gap_name2layer
+/gap_navigator_dialog
+/gap_onion
+/gap_player
+/gap_plugins
+/gap_storyboard
+/gap_video_extract
+/gap_video_index
+/gap_wr_color_curve
+/gap_wr_color_huesat
+/gap_wr_color_levels
+/gap_wr_opacity
+/gap_wr_resynth
+/gap_wr_trans
+/*.a
diff --git a/images/.gitignore b/images/.gitignore
new file mode 100644
index 0000000..4267016
--- /dev/null
+++ b/images/.gitignore
@@ -0,0 +1,4 @@
+/Makefile
+/Makefile.in
+/gap-stock-pixbufs.h
+/stock-icons.list
diff --git a/libgapbase/.gitignore b/libgapbase/.gitignore
new file mode 100644
index 0000000..b049d5f
--- /dev/null
+++ b/libgapbase/.gitignore
@@ -0,0 +1,5 @@
+/.deps
+/.libs
+/Makefile
+/Makefile.in
+/*.a
diff --git a/libgapvidapi/.gitignore b/libgapvidapi/.gitignore
new file mode 100644
index 0000000..b049d5f
--- /dev/null
+++ b/libgapvidapi/.gitignore
@@ -0,0 +1,5 @@
+/.deps
+/.libs
+/Makefile
+/Makefile.in
+/*.a
diff --git a/libgapvidutil/.gitignore b/libgapvidutil/.gitignore
new file mode 100644
index 0000000..b049d5f
--- /dev/null
+++ b/libgapvidutil/.gitignore
@@ -0,0 +1,5 @@
+/.deps
+/.libs
+/Makefile
+/Makefile.in
+/*.a
diff --git a/libwavplayclient/.gitignore b/libwavplayclient/.gitignore
new file mode 100644
index 0000000..b049d5f
--- /dev/null
+++ b/libwavplayclient/.gitignore
@@ -0,0 +1,5 @@
+/.deps
+/.libs
+/Makefile
+/Makefile.in
+/*.a
diff --git a/po/.gitignore b/po/.gitignore
new file mode 100644
index 0000000..a9d7fba
--- /dev/null
+++ b/po/.gitignore
@@ -0,0 +1,11 @@
+/*.gmo
+/*.mo
+/*.pot
+/.intltool-merge-cache
+/Makefile
+/Makefile.in
+/POTFILES
+/messages
+/missing
+/po2tbl.sed.in
+/stamp-it
diff --git a/vid_common/.gitignore b/vid_common/.gitignore
new file mode 100644
index 0000000..e628fd7
--- /dev/null
+++ b/vid_common/.gitignore
@@ -0,0 +1,6 @@
+/.deps
+/.libs
+/Makefile
+/Makefile.in
+/gap_vid_common_encoder
+/*.a
diff --git a/vid_enc_avi/.gitignore b/vid_enc_avi/.gitignore
new file mode 100644
index 0000000..e0719c8
--- /dev/null
+++ b/vid_enc_avi/.gitignore
@@ -0,0 +1,6 @@
+/.deps
+/.libs
+/Makefile
+/Makefile.in
+/gap_vid_enc_avi
+/*.a
diff --git a/vid_enc_ffmpeg/.gitignore b/vid_enc_ffmpeg/.gitignore
new file mode 100644
index 0000000..09b1ee1
--- /dev/null
+++ b/vid_enc_ffmpeg/.gitignore
@@ -0,0 +1,6 @@
+/.deps
+/.libs
+/Makefile
+/Makefile.in
+/gap_vid_enc_ffmpeg
+/*.a
diff --git a/vid_enc_rawframes/.gitignore b/vid_enc_rawframes/.gitignore
new file mode 100644
index 0000000..3c8f941
--- /dev/null
+++ b/vid_enc_rawframes/.gitignore
@@ -0,0 +1,6 @@
+/.deps
+/.libs
+/Makefile
+/Makefile.in
+/gap_vid_enc_rawframes
+/*.a
diff --git a/vid_enc_single/.gitignore b/vid_enc_single/.gitignore
new file mode 100644
index 0000000..fe27028
--- /dev/null
+++ b/vid_enc_single/.gitignore
@@ -0,0 +1,6 @@
+/.deps
+/.libs
+/Makefile
+/Makefile.in
+/gap_vid_enc_singleframes
+/*.a



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]