Re: .gitignore files

2009-05-02 Thread Mathias Hasselmann
Am Freitag, den 01.05.2009, 14:10 -0400 schrieb Behdad Esfahbod:
 git.mk.

What's this git.mk?
-- 
Mathias Hasselmann mathias.hasselm...@gmx.de
Personal Blog: http://taschenorakel.de/mathias/
Openismus GmbH: http://www.openismus.com/

___
gtk-devel-list mailing list
gtk-devel-list@gnome.org
http://mail.gnome.org/mailman/listinfo/gtk-devel-list


Re: .gitignore files

2009-05-02 Thread Vincent Untz
Le samedi 02 mai 2009, à 14:14 +0200, Mathias Hasselmann a écrit :
 Am Freitag, den 01.05.2009, 14:10 -0400 schrieb Behdad Esfahbod:
  git.mk.
 
 What's this git.mk?

http://git.gnome.org/cgit/pango/tree/git.mk

Vincent

-- 
Les gens heureux ne sont pas pressés.
___
gtk-devel-list mailing list
gtk-devel-list@gnome.org
http://mail.gnome.org/mailman/listinfo/gtk-devel-list


Re: .gitignore files

2009-05-02 Thread Mathias Hasselmann
Am Samstag, den 02.05.2009, 14:25 +0200 schrieb Vincent Untz:
 Le samedi 02 mai 2009, à 14:14 +0200, Mathias Hasselmann a écrit :
  Am Freitag, den 01.05.2009, 14:10 -0400 schrieb Behdad Esfahbod:
   git.mk.
  
  What's this git.mk?
 
 http://git.gnome.org/cgit/pango/tree/git.mk
 
 Vincent
 
Oh, fancy! Nice!

+1

Why isn't this brilliant logic part of automake already? :-D

Ciao,
Mathias
-- 
Mathias Hasselmann mathias.hasselm...@gmx.de
Personal Blog: http://taschenorakel.de/mathias/
Openismus GmbH: http://www.openismus.com/

___
gtk-devel-list mailing list
gtk-devel-list@gnome.org
http://mail.gnome.org/mailman/listinfo/gtk-devel-list


Re: .gitignore files

2009-05-02 Thread Behdad Esfahbod

On 05/02/2009 08:38 AM, Mathias Hasselmann wrote:

Am Samstag, den 02.05.2009, 14:25 +0200 schrieb Vincent Untz:

Le samedi 02 mai 2009, à 14:14 +0200, Mathias Hasselmann a écrit :

Am Freitag, den 01.05.2009, 14:10 -0400 schrieb Behdad Esfahbod:

git.mk.

What's this git.mk?

http://git.gnome.org/cgit/pango/tree/git.mk

Vincent


Oh, fancy! Nice!

+1

Why isn't this brilliant logic part of automake already? :-D


I'm proposing that.

behdad


Ciao,
Mathias

___
gtk-devel-list mailing list
gtk-devel-list@gnome.org
http://mail.gnome.org/mailman/listinfo/gtk-devel-list


Re: .gitignore files

2009-05-02 Thread Hans Breuer

At 01.05.2009 20:10, Behdad Esfahbod wrote:

On 05/01/2009 04:18 AM, Davyd Madeley wrote:

.gitignore files, to improve switching between branches easily.


I'd rather add my git.mk.  Matthias, want me to go ahead and do that?

How is it supposed to work for people building with a different 
shell/buildsystem? (But maybe it is just me where neither bash nor auto* is 
in use).


Hans

 Hans at Breuer dot Org ---
Tell me what you need, and I'll tell you how to
get along without it.-- Dilbert
___
gtk-devel-list mailing list
gtk-devel-list@gnome.org
http://mail.gnome.org/mailman/listinfo/gtk-devel-list


.gitignore files

2009-05-01 Thread Davyd Madeley
.gitignore files, to improve switching between branches easily.

-- 
Davyd Madeley

http://www.davyd.id.au/
08B0 341A 0B9B 08BB 2118  C060 2EDD BB4F 5191 6CDA
From ee1362d62523a5194848f20f28736d2abd369886 Mon Sep 17 00:00:00 2001
From: Davyd Madeley da...@madeley.id.au
Date: Wed, 29 Apr 2009 09:09:49 +0800
Subject: [PATCH] .gitignore files

---
 .gitignore|   31 +
 demos/.gitignore  |7 
 demos/gtk-demo/.gitignore |2 +
 docs/reference/gtk/.gitignore |3 ++
 gdk-pixbuf/.gitignore |   10 +
 gdk/.gitignore|8 
 gtk/.gitignore|   13 +++
 gtk/tests/.gitignore  |   10 +
 modules/.gitignore|1 +
 perf/.gitignore   |5 +++
 po-properties/.gitignore  |2 +
 po/.gitignore |2 +
 tests/.gitignore  |   74 +
 13 files changed, 168 insertions(+), 0 deletions(-)
 create mode 100644 .gitignore
 create mode 100644 demos/.gitignore
 create mode 100644 demos/gtk-demo/.gitignore
 create mode 100644 docs/reference/gtk/.gitignore
 create mode 100644 gdk-pixbuf/.gitignore
 create mode 100644 gdk/.gitignore
 create mode 100644 gtk/.gitignore
 create mode 100644 gtk/tests/.gitignore
 create mode 100644 modules/.gitignore
 create mode 100644 perf/.gitignore
 create mode 100644 po-properties/.gitignore
 create mode 100644 po/.gitignore
 create mode 100644 tests/.gitignore

diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000..58eceb8
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,31 @@
+*.o
+*.lo
+*.pc
+*.la
+*.gmo
+.*.sw?
+.libs/
+.deps/
+Makefile
+Makefile.in
+/aclocal.m4
+/compile
+/config.guess
+/config.h
+/config.h.in
+/config.h.win32
+/config.log
+/config.lt
+/config.status
+/config.sub
+/configure
+/depcomp
+/gtk-doc.make
+/install-sh
+/libtool
+/ltmain.sh
+/missing
+/mkinstalldirs
+stamp-*
+/README
+/INSTALL
diff --git a/demos/.gitignore b/demos/.gitignore
new file mode 100644
index 000..f16c227
--- /dev/null
+++ b/demos/.gitignore
@@ -0,0 +1,7 @@
+/testpixbuf-drawable
+/testanimation
+/testpixbuf-save
+/testpixbuf-scale
+/pixbuf-demo
+/testpixbuf
+/test-inline-pixbufs.h
diff --git a/demos/gtk-demo/.gitignore b/demos/gtk-demo/.gitignore
new file mode 100644
index 000..3974967
--- /dev/null
+++ b/demos/gtk-demo/.gitignore
@@ -0,0 +1,2 @@
+/gtk-demo
+/demos.h
diff --git a/docs/reference/gtk/.gitignore b/docs/reference/gtk/.gitignore
new file mode 100644
index 000..eee3562
--- /dev/null
+++ b/docs/reference/gtk/.gitignore
@@ -0,0 +1,3 @@
+/tmpl/
+/html/
+*.stamp
diff --git a/gdk-pixbuf/.gitignore b/gdk-pixbuf/.gitignore
new file mode 100644
index 000..aa358d5
--- /dev/null
+++ b/gdk-pixbuf/.gitignore
@@ -0,0 +1,10 @@
+/gdk_pixbuf.def
+/gdk-pixbuf-alias.h
+/gdk-pixbuf-aliasdef.c
+/gdk-pixbuf-enum-types.h
+/gdk-pixbuf-enum-types.c
+/gdk-pixbuf-marshal.h
+/gdk-pixbuf-marshal.c
+/gdk-pixbuf.loaders
+/gdk-pixbuf-csource
+/gdk-pixbuf-query-loaders
diff --git a/gdk/.gitignore b/gdk/.gitignore
new file mode 100644
index 000..d3fc190
--- /dev/null
+++ b/gdk/.gitignore
@@ -0,0 +1,8 @@
+/gdk.def
+/gdkenumtypes.h
+/gdkenumtypes.c
+/gdkmarshalers.h
+/gdkmarshalers.c
+/gdkalias.h
+/gdkaliasdef.c
+/gdkconfig.h
diff --git a/gtk/.gitignore b/gtk/.gitignore
new file mode 100644
index 000..f205d65
--- /dev/null
+++ b/gtk/.gitignore
@@ -0,0 +1,13 @@
+/gtkmarshalers.h
+/gtkmarshalers.c
+/gtkmarshal.h
+/gtkmarshal.c
+/gtkaliasdef.c
+/gtktypebuiltins.h
+/gtktypebuiltins.c
+/gtkalias.h
+/gtkbuiltincache.h
+/xgen-gtfsrc.c
+/gtk.def
+/gtk-query-immodules-2.0
+/gtk-update-icon-cache
diff --git a/gtk/tests/.gitignore b/gtk/tests/.gitignore
new file mode 100644
index 000..e876d4d
--- /dev/null
+++ b/gtk/tests/.gitignore
@@ -0,0 +1,10 @@
+/builder
+/defaultvalue
+/floating
+/liststore
+/object
+/recentmanager
+/testing
+/textbuffer
+/treestore
+/treeview-scrolling
diff --git a/modules/.gitignore b/modules/.gitignore
new file mode 100644
index 000..90a0799
--- /dev/null
+++ b/modules/.gitignore
@@ -0,0 +1 @@
+/input/gtk.immodules
diff --git a/perf/.gitignore b/perf/.gitignore
new file mode 100644
index 000..c04330e
--- /dev/null
+++ b/perf/.gitignore
@@ -0,0 +1,5 @@
+/marshalers.c
+/marshalers.h
+/testperf
+/typebuiltins.c
+/typebuiltins.h
diff --git a/po-properties/.gitignore b/po-properties/.gitignore
new file mode 100644
index 000..18ba987
--- /dev/null
+++ b/po-properties/.gitignore
@@ -0,0 +1,2 @@
+/POTFILES
+/gtk20-properties.pot
diff --git a/po/.gitignore b/po/.gitignore
new file mode 100644
index 000..1f6828e
--- /dev/null
+++ b/po/.gitignore
@@ -0,0 +1,2 @@
+/POTFILES
+/gtk20.pot
diff --git a/tests/.gitignore b/tests/.gitignore
new file mode 100644
index 000..3de1030
--- /dev/null
+++ b/tests/.gitignore
@@ -0,0 +1,74 @@
+/floatingtest
+/buildertest
+/autotestfilechooser
+/autotestkeywords
+/floatingtest
+/buildertest
+/simple
+/print-editor

Re: .gitignore files

2009-05-01 Thread Behdad Esfahbod

On 05/01/2009 04:18 AM, Davyd Madeley wrote:

.gitignore files, to improve switching between branches easily.


I'd rather add my git.mk.  Matthias, want me to go ahead and do that?

behdad
___
gtk-devel-list mailing list
gtk-devel-list@gnome.org
http://mail.gnome.org/mailman/listinfo/gtk-devel-list