3 new revisions:

Revision: 09fa90552b3a
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=09fa90552b3a&repo=libgcroots

Revision: 7d66aaa2ca52
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=7d66aaa2ca52&repo=libgcroots

Revision: fbe00e3127ad
Author:   Etsushi Kato <[email protected]>
Date:     Thu Jun 14 01:53:42 2012
Log:      * Makefile.am : Regenerate mach_dep.lo when config.status is...
http://code.google.com/p/uim/source/detail?r=fbe00e3127ad&repo=libgcroots

==============================================================================
Revision: 09fa90552b3a
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=09fa90552b3a&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: 7d66aaa2ca52
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=7d66aaa2ca52&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

==============================================================================
Revision: fbe00e3127ad
Author:   Etsushi Kato <[email protected]>
Date:     Thu Jun 14 01:53:42 2012
Log:      * Makefile.am : Regenerate mach_dep.lo when config.status is
  updated.

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

Modified:
 /Makefile.am

=======================================
--- /Makefile.am        Wed Mar 28 07:10:32 2012
+++ /Makefile.am        Thu Jun 14 01:53:42 2012
@@ -113,6 +113,9 @@
 #libgc_la_DEPENDENCIES = @addobjs@
#libgc_la_LDFLAGS = $(extra_ldflags_libgc) -version-info 1:3:0 -no-undefined

+# Regenerate mach_dep.lo when config.status is updated
+@addobjs@: $(top_builddir)/config.status
+
 #EXTRA_libgc_la_SOURCES = alpha_mach_dep.S \
 #    mips_sgi_mach_dep.s mips_ultrix_mach_dep.s \
 #    rs6000_mach_dep.s sparc_mach_dep.S sparc_netbsd_mach_dep.s \

Reply via email to