2 new revisions:

Revision: 9ba5237935fd
Author:   nogu.dev <[email protected]>
Date:     Sat Feb 25 18:10:26 2012
Log:      * make-dist.sh...
http://code.google.com/p/uim/source/detail?r=9ba5237935fd&repo=sigscheme

Revision: 52091f8ad098
Author:   nogu.dev <[email protected]>
Date:     Sat Feb 25 20:14:58 2012
Log:      * Makefile.am...
http://code.google.com/p/uim/source/detail?r=52091f8ad098&repo=sigscheme

==============================================================================
Revision: 9ba5237935fd
Author:   nogu.dev <[email protected]>
Date:     Sat Feb 25 18:10:26 2012
Log:      * make-dist.sh
  - Replace `svn export' with `git submodule'.

http://code.google.com/p/uim/source/detail?r=9ba5237935fd&repo=sigscheme

Modified:
 /make-dist.sh

=======================================
--- /make-dist.sh       Tue Dec 28 00:10:27 2010
+++ /make-dist.sh       Sat Feb 25 18:10:26 2012
@@ -2,15 +2,8 @@

 MAKE=make

-UIM_REPOSITORY="http://uim.googlecode.com/svn";
-TAGS_REPOSITORY="${UIM_REPOSITORY}/tags"
-SSCM_REPOSITORY="${UIM_REPOSITORY}/sigscheme-trunk"
-#SSCM_REPOSITORY="${TAGS_REPOSITORY}/sigscheme-0.9.0"
-LIBGCROOTS_URL="${UIM_REPOSITORY}/libgcroots-trunk"
-#LIBGCROOTS_URL="${TAGS_REPOSITORY}/libgcroots-0.2.3"
-
-svn export $LIBGCROOTS_URL libgcroots
-(cd libgcroots && ./autogen.sh) \
+git submodule update --init
+(cd libgcroots && git checkout master && ./autogen.sh) \
 && ./autogen.sh \
 || { echo 'autogen failed.' && exit 1; }


==============================================================================
Revision: 52091f8ad098
Author:   nogu.dev <[email protected]>
Date:     Sat Feb 25 20:14:58 2012
Log:      * Makefile.am
  - Replace `svn export' with `wget'.
  - Replace `svn log' with `git log'.

http://code.google.com/p/uim/source/detail?r=52091f8ad098&repo=sigscheme

Modified:
 /Makefile.am

=======================================
--- /Makefile.am        Tue Jul  3 02:25:24 2007
+++ /Makefile.am        Sat Feb 25 20:14:58 2012
@@ -11,11 +11,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
-SSCM_REPOSITORY = $(UIM_REPOSITORY)/sigscheme-trunk
-TAGS_REPOSITORY = $(UIM_REPOSITORY)/tags
-#RELEASE_URL     = $(SSCM_REPOSITORY)
-RELEASE_URL     = $(TAGS_REPOSITORY)/$(DIST_NAME)
+UIM_REPOSITORY = http://uim.googlecode.com/git/
+#RELEASE_BRANCH     = master
+RELEASE_BRANCH     = $(DIST_NAME)
 DIST_SUM_LIST = $(DIST_NAME).sum

 EXTRA_DIST = \
@@ -36,10 +34,13 @@
 .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 \
-           tools/gnuify-changelog.pl
-       svn log $(RELEASE_URL) | tools/gnuify-changelog.pl > $@
+       wget $(UIM_REPOSITORY)/tools/gnuify-changelog.pl
+       git log --date-order --date=short $(RELEASE_BRANCH) \
+           | perl ./gnuify-changelog.pl > $@
+       rm gnuify-changelog.pl
        @test -s $@ && echo 'ChangeLog updated successfully.'

 sum: FORCE

Reply via email to