2 new revisions:

Revision: 27564834668f
Author:   Muneyuki Noguchi <[email protected]>
Date:     Wed Mar 28 07:10:32 2012
Log:      Replace Subversion with Git in Makefile.am....
http://code.google.com/p/uim/source/detail?r=27564834668f&repo=libgcroots

Revision: b80992f6608f
Author:   Muneyuki Noguchi <[email protected]>
Date:     Wed Mar 28 07:12:12 2012
Log:      Add .gitignore....
http://code.google.com/p/uim/source/detail?r=b80992f6608f&repo=libgcroots

==============================================================================
Revision: 27564834668f
Author:   Muneyuki Noguchi <[email protected]>
Date:     Wed Mar 28 07:10:32 2012
Log:      Replace Subversion with Git in Makefile.am.

* Makefile.am
  - (UIM_REPOSITORY): Replace with Git repository.
  - (RELEASE_URL): Set tag name.
  - (ChangeLog): Replace Subversion with Git.

http://code.google.com/p/uim/source/detail?r=27564834668f&repo=libgcroots

Modified:
 /Makefile.am

=======================================
--- /Makefile.am        Wed Jul 18 00:53:03 2007
+++ /Makefile.am        Wed Mar 28 07:10:32 2012
@@ -22,11 +22,9 @@
 # $(distdir) does work as a part of $(RELEASE_URL) when configured as a
 # subpackage.
 DIST_NAME = $(PACKAGE)-$(VERSION)
-UIM_REPOSITORY = http://uim.googlecode.com/svn
-LIBGCROOTS_REPOSITORY = $(UIM_REPOSITORY)/libgcroots-trunk
-TAGS_REPOSITORY = $(UIM_REPOSITORY)/tags
-#RELEASE_URL     = $(LIBGCROOTS_REPOSITORY)
-RELEASE_URL     = $(TAGS_REPOSITORY)/$(DIST_NAME)
+UIM_REPOSITORY = http://uim.googlecode.com/git/
+#RELEASE_TAG     = master
+RELEASE_TAG     = $(DIST_NAME)
 DIST_SUM_LIST = $(DIST_NAME).sum

 ## FIXME: `make distcheck' in this directory will not currently work.
@@ -242,9 +240,12 @@
 .PHONY: FORCE sum
 FORCE:

+# We use `wget' instead of `git archive' here
+# because `git archive' doesn't work with Google Code Git repository.
 ChangeLog: FORCE
-       svn export $(UIM_REPOSITORY)/trunk/tools/gnuify-changelog.pl
-       svn log $(RELEASE_URL) | ./gnuify-changelog.pl > $@
+       wget $(UIM_REPOSITORY)/tools/gnuify-changelog.pl
+       git log --date-order --date=short $(RELEASE_TAG) \
+           | perl ./gnuify-changelog.pl > $@
        @test -s $@ && echo 'ChangeLog updated successfully.'

 sum: FORCE

==============================================================================
Revision: b80992f6608f
Author:   Muneyuki Noguchi <[email protected]>
Date:     Wed Mar 28 07:12:12 2012
Log:      Add .gitignore.

* .gitignore
  - New file.

http://code.google.com/p/uim/source/detail?r=b80992f6608f&repo=libgcroots

Added:
 /.gitignore

=======================================
--- /dev/null
+++ /.gitignore Wed Mar 28 07:12:12 2012
@@ -0,0 +1,29 @@
+/.deps/
+/.libs/
+/ChangeLog
+/Makefile
+/Makefile.in
+/aclocal.m4
+/autom4te.cache/
+/compile
+/config.guess
+/config.log
+/config.status
+/config.sub
+/configure
+/depcomp
+/gcroots.lo
+/gcroots.o
+/gcroots.pc
+/gnuify-changelog.pl
+/install-sh
+/libgcroots.la
+/libtool
+/ltmain.sh
+/m4/Makefile
+/m4/Makefile.in
+/mach_dep.lo
+/mach_dep.o
+/mark.lo
+/mark.o
+/missing

Reply via email to