commit 0518926d9e4267af0ae3f3c0551e7a349931c260
Author: Todd Zullinger <[email protected]>
Date:   Mon Oct 19 11:31:07 2009 -0400

    Migrate from Subversion to Git

 .gitignore                        |  107 +++++++++++++++++++++++++++++++++++++
 INSTALL_SVN => INSTALL_GIT        |    2 +-
 bindings/python/tests/Makefile.am |    3 -
 configure.ac                      |    2 +-
 docs/reference/libgpod-docs.xml   |    2 +-
 docs/reference/tmpl/photodb.sgml  |    6 +-
 6 files changed, 113 insertions(+), 9 deletions(-)
---
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..7899dcb
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,107 @@
+# Global ignores
+*.bak
+*.la
+*.lo
+*.o
+*.sw[a-z]
+*~
+.deps
+.libs
+Makefile
+Makefile.in
+cscope.out
+
+# /
+/.cproject
+/.project
+/.settings
+/TODO_local
+/aclocal.m4
+/autom4te.cache
+/compile
+/config.guess
+/config.h
+/config.h.in
+/config.log
+/config.status
+/config.sub
+/configure
+/depcomp
+/gtk-doc.make
+/install-sh
+/intltool-extract
+/intltool-extract.in
+/intltool-merge
+/intltool-merge.in
+/intltool-update
+/intltool-update.in
+/libgpod-*.tar.gz
+/libgpod-1.0.pc
+/libtool
+/ltmain.sh
+/missing
+/mkinstalldirs
+/py-compile
+/stamp-h1
+
+# /bindings/python/
+/bindings/python/README
+/bindings/python/__init__.pyc
+/bindings/python/gpod.i
+/bindings/python/gpod.py
+/bindings/python/gpod.pyc
+/bindings/python/gpod_doc.i
+/bindings/python/gpod_wrap.c
+/bindings/python/gtkpod.pyc
+/bindings/python/ipod.pyc
+
+# /docs/reference/
+/docs/reference/html
+/docs/reference/html-build.stamp
+/docs/reference/html.stamp
+/docs/reference/libgpod-decl-list.txt
+/docs/reference/libgpod-decl.txt
+/docs/reference/libgpod-undeclared.txt
+/docs/reference/libgpod-undocumented.txt
+/docs/reference/libgpod-unused.txt
+/docs/reference/libgpod.args
+/docs/reference/libgpod.hierarchy
+/docs/reference/libgpod.interfaces
+/docs/reference/libgpod.prerequisites
+/docs/reference/libgpod.signals
+/docs/reference/scan-build.stamp
+/docs/reference/sgml-build.stamp
+/docs/reference/sgml.stamp
+/docs/reference/tmpl-build.stamp
+/docs/reference/tmpl.stamp
+/docs/reference/version.xml
+/docs/reference/xml
+
+# /m4/
+/m4/gtk-doc.m4
+/m4/intltool.m4
+
+# /po/
+/po/Makefile.in.in
+/po/POTFILES
+/po/*.gmo
+/po/stamp-it
+
+# /tests/
+/tests/get-timezone
+/tests/test-checksum
+/tests/test-firewire-id
+/tests/test-init-ipod
+/tests/test-ipod-device
+/tests/test-itdb
+/tests/test-ls
+/tests/test-photos
+/tests/test-rebuild-db
+/tests/test-sysinfo-extended-parsing
+/tests/test-thumbnails
+/tests/test-write-thumbnails
+
+# /tools/
+/tools/ipod-read-sysinfo-extended
+/tools/ipod-time-sync
+/tools/libgpod-callout
diff --git a/INSTALL_SVN b/INSTALL_GIT
similarity index 93%
rename from INSTALL_SVN
rename to INSTALL_GIT
index 8184396..d3246db 100644
--- a/INSTALL_SVN
+++ b/INSTALL_GIT
@@ -1,4 +1,4 @@
-If you install from Subversion, call
+If you install from Git, call
 
 ./autogen.sh
 make
diff --git a/bindings/python/tests/Makefile.am 
b/bindings/python/tests/Makefile.am
index 84fb2c2..448b285 100644
--- a/bindings/python/tests/Makefile.am
+++ b/bindings/python/tests/Makefile.am
@@ -2,9 +2,6 @@ EXTRA_DIST =            \
         resources       \
         tests.py
 
-dist-hook:
-       rm -rf `find $(distdir)/resources -type d -name .svn`
-
 if HAVE_PYTHON
 test:
        LD_LIBRARY_PATH=$(top_builddir)/src/.libs \
diff --git a/configure.ac b/configure.ac
index b60e5a8..8e7590a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -15,7 +15,7 @@ LIBGPOD_MINOR_VERSION=7
 LIBGPOD_MICRO_VERSION=3
 # If you need a modifier for the version number. 
 # Normally empty, but can be used to make "fixup" releases.
-LIBGPOD_EXTRAVERSION=SVN
+LIBGPOD_EXTRAVERSION=GIT
 
 
LIBGPOD_VERSION=$LIBGPOD_MAJOR_VERSION.$LIBGPOD_MINOR_VERSION.$LIBGPOD_MICRO_VERSION$LIBGPOD_EXTRAVERSION
 
diff --git a/docs/reference/libgpod-docs.xml b/docs/reference/libgpod-docs.xml
index 4c999fe..a61c196 100644
--- a/docs/reference/libgpod-docs.xml
+++ b/docs/reference/libgpod-docs.xml
@@ -59,7 +59,7 @@
       </para>
       <para>
       Please see the programs in the <ulink type="http"
-      
url="http://gtkpod.svn.sourceforge.net/svnroot/gtkpod/libgpod/trunk/tests/";>tests/</ulink>
+      
url="http://gtkpod.git.sourceforge.net/git/gitweb.cgi?p=gtkpod/libgpod;a=tree;f=tests;hb=HEAD";>tests/</ulink>
       directory of the source distribution for some usage examples.  A more
       complete example can be found in the source for <ulink type="http"
       url="http://www.gtkpod.org";> Gtkpod</ulink>.  You can also ask questions
diff --git a/docs/reference/tmpl/photodb.sgml b/docs/reference/tmpl/photodb.sgml
index aded6bf..6c81ea3 100644
--- a/docs/reference/tmpl/photodb.sgml
+++ b/docs/reference/tmpl/photodb.sgml
@@ -68,7 +68,7 @@ itdb_device_set_sysinfo (db->device, "ModelNumStr", "MA450");
 </programlisting>
 <para>
 See <ulink type="http"
-url="http://gtkpod.svn.sourceforge.net/svnroot/gtkpod/libgpod/trunk/src/itdb_device.c";>itdb_device.c</ulink>
+url="http://gtkpod.git.sourceforge.net/git/gitweb.cgi?p=gtkpod/libgpod;a=blob_plain;f=src/itdb_device.c;hb=HEAD";>itdb_device.c</ulink>
 for a list of supported models.
 </para>
 <para>
@@ -77,9 +77,9 @@ written (itdb_photodb_write() calls 
itdb_device_write_sysinfo()).
 </para>
 <para>
 Have a look at the <ulink type="http"
-url="http://gtkpod.svn.sourceforge.net/svnroot/gtkpod/libgpod/trunk/tests/test-photos.c";>test-photos</ulink>
+url="http://gtkpod.git.sourceforge.net/git/gitweb.cgi?p=gtkpod/libgpod;a=blob_plain;f=tests/test-photos.c;hb=HEAD";>test-photos</ulink>
 test program in the <ulink type="http"
-url="http://gtkpod.svn.sourceforge.net/svnroot/gtkpod/libgpod/trunk/tests/";>tests/</ulink>
+url="http://gtkpod.git.sourceforge.net/git/gitweb.cgi?p=gtkpod/libgpod;a=tree;f=tests;hb=HEAD";>tests/</ulink>
 directory of the libgpod source for an example of how to use the interface.
 </para>
 

------------------------------------------------------------------------------
Come build with us! The BlackBerry(R) Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay 
ahead of the curve. Join us from November 9 - 12, 2009. Register now!
http://p.sf.net/sfu/devconference
_______________________________________________
gtkpod-cvs2 mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/gtkpod-cvs2

Reply via email to