ruby-changes:41563
From: hsbt <ko1@a...>
Date: Sat, 23 Jan 2016 20:54:47 +0900 (JST)
Subject: [ruby-changes:41563] hsbt:r53637 (trunk): * common.mk: revert r53633. It broke rubyci and travis.
hsbt 2016-01-23 20:55:32 +0900 (Sat, 23 Jan 2016) New Revision: 53637 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=53637 Log: * common.mk: revert r53633. It broke rubyci and travis. https://travis-ci.org/ruby/ruby/builds/104259623 Modified files: trunk/ChangeLog trunk/common.mk Index: ChangeLog =================================================================== --- ChangeLog (revision 53636) +++ ChangeLog (revision 53637) @@ -1,3 +1,8 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1 +Sat Jan 23 20:54:26 2016 SHIBATA Hiroshi <hsbt@r...> + + * common.mk: revert r53633. It broke rubyci and travis. + https://travis-ci.org/ruby/ruby/builds/104259623 + Sat Jan 23 20:10:29 2016 Shugo Maeda <shugo@r...> * range.c (range_eqq): revert r51585 because rb_call_super() is Index: common.mk =================================================================== --- common.mk (revision 53636) +++ common.mk (revision 53637) @@ -1005,7 +1005,7 @@ extract-gems: PHONY https://github.com/ruby/ruby/blob/trunk/common.mk#L1005 bundled_gems ### set the following environment variable or uncomment the line if -### the Unicode data files should be updated completely on every update ('make up',...). +### the Unicode data files are updated every minute. # ALWAYS_UPDATE_UNICODE = yes UNICODE_FILES = $(srcdir)/enc/unicode/data/$(UNICODE_VERSION)/UnicodeData.txt \ @@ -1013,9 +1013,11 @@ UNICODE_FILES = $(srcdir)/enc/unicode/da https://github.com/ruby/ruby/blob/trunk/common.mk#L1013 $(srcdir)/enc/unicode/data/$(UNICODE_VERSION)/NormalizationTest.txt \ $(srcdir)/enc/unicode/data/$(UNICODE_VERSION)/CaseFolding.txt -update-unicode: $(UNICODE_FILES) +UNICODE_FILES_DEPS = $(srcdir)/.unicode-$(UNICODE_VERSION).time -$(UNICODE_FILES): +update-unicode: $(srcdir)/.unicode-$(UNICODE_VERSION).time PHONY + +$(UNICODE_FILES_DEPS): $(ECHO) Downloading Unicode $(UNICODE_VERSION) data files... $(Q) $(MAKEDIRS) "$(srcdir)/enc/unicode/data/$(UNICODE_VERSION)" $(Q) $(BASERUBY) -C "$(srcdir)" tool/downloader.rb \ @@ -1023,6 +1025,7 @@ $(UNICODE_FILES): https://github.com/ruby/ruby/blob/trunk/common.mk#L1025 -p $(UNICODE_VERSION)/ucd \ -e $(ALWAYS_UPDATE_UNICODE:yes=-a) unicode \ $(UNICODE_FILES) + @exit > $@ $(srcdir)/$(HAVE_BASERUBY:yes=lib/unicode_normalize/tables.rb): \ $(srcdir)/.unicode-tables.time -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/