[前][次][番号順一覧][スレッド一覧]

ruby-changes:46482

From: nobu <ko1@a...>
Date: Sun, 7 May 2017 22:41:03 +0900 (JST)
Subject: [ruby-changes:46482] nobu:r58601 (trunk): stale targets

nobu	2017-05-07 22:40:56 +0900 (Sun, 07 May 2017)

  New Revision: 58601

  https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=58601

  Log:
    stale targets
    
    * common.mk (update-mspec, update-rubyspec): empty stale targets.

  Modified files:
    trunk/Makefile.in
    trunk/common.mk
    trunk/win32/Makefile.sub
Index: common.mk
===================================================================
--- common.mk	(revision 58600)
+++ common.mk	(revision 58601)
@@ -709,10 +709,10 @@ $(RBCONFIG): $(srcdir)/tool/mkconfig.rb https://github.com/ruby/ruby/blob/trunk/common.mk#L709
 test-rubyspec-precheck: $(arch)-fake.rb
 
 test-rubyspec: $(TEST_RUNNABLE)-test-rubyspec
-yes-test-rubyspec: test-rubyspec-precheck
+yes-test-rubyspec:
 	$(gnumake_recursive)$(Q) \
 	$(RUNRUBY) -r./$(arch)-fake $(srcdir)/spec/mspec/bin/mspec run -B $(srcdir)/spec/default.mspec $(MSPECOPT)
-no-test-rubyspec: test-rubyspec-precheck
+no-test-rubyspec:
 
 RUNNABLE = $(LIBRUBY_RELATIVE:no=un)-runnable
 runnable: $(RUNNABLE) prog $(srcdir)/tool/mkrunnable.rb PHONY
@@ -1079,7 +1079,8 @@ after-update:: extract-extlibs https://github.com/ruby/ruby/blob/trunk/common.mk#L1079
 update-remote:: update-src update-download
 update-download:: update-unicode update-gems download-extlibs
 
-noupdate-rubyspec:
+update-mspec:
+update-rubyspec:
 
 update-config_files: PHONY
 	$(Q) $(BASERUBY) -C "$(srcdir)/tool" \
Index: win32/Makefile.sub
===================================================================
--- win32/Makefile.sub	(revision 58600)
+++ win32/Makefile.sub	(revision 58601)
@@ -487,32 +487,6 @@ $(SCRIPTPROGRAMS): $(STUBPROGRAM) https://github.com/ruby/ruby/blob/trunk/win32/Makefile.sub#L487
 update-src::
 	@cd "$(srcdir:/=\)" && set LC_TIME=C && $(VCSUP)
 
-update-mspec:
-!if exist($(srcdir)/spec/mspec)
-	@echo updating mspec ...
-	@cd $(srcdir:/=\)\spec\mspec && git pull
-!else
-	@echo retrieving mspec ...
-	@cd $(srcdir:/=\) && git clone $(MSPEC_GIT_URL) spec/mspec
-!endif
-	@cd $(srcdir:/=\)\spec\mspec && git --no-pager log -1 --oneline
-
-update-rubyspec: update-mspec
-!if exist($(srcdir)/spec/rubyspec)
-	@echo updating rubyspec ...
-	@cd $(srcdir:/=\)\spec\rubyspec && git pull
-!else
-	@echo retrieving rubyspec ...
-	@cd $(srcdir:/=\) && git clone $(RUBYSPEC_GIT_URL) spec/rubyspec
-!endif
-	@cd $(srcdir:/=\)\spec\rubyspec && git --no-pager log -1 --oneline
-
-test-rubyspec-precheck:
-!if !exist($(srcdir)/spec/rubyspec/.)
-	@echo No rubyspec here.  make update-rubyspec first.
-	@exit 1
-!endif
-
 $(MKFILES): $(srcdir)/common.mk $(srcdir)/version.h \
 	    $(win_srcdir)/Makefile.sub $(win_srcdir)/configure.bat \
 	    $(win_srcdir)/setup.mak $(win_srcdir)/enc-setup.mak \
Index: Makefile.in
===================================================================
--- Makefile.in	(revision 58600)
+++ Makefile.in	(revision 58601)
@@ -476,16 +476,6 @@ update-download:: update-config_files https://github.com/ruby/ruby/blob/trunk/Makefile.in#L476
 
 after-update:: prereq
 
-update-mspec:
-	$(Q)$(CHDIR) $(srcdir)/spec/mspec && exec git --no-pager log -1 --oneline .
-
-update-rubyspec: update-mspec
-	$(Q) echo ruby/spec is now in the MRI repository and make update-rubyspec has no effect
-	$(Q)$(CHDIR) $(srcdir)/spec/rubyspec && exec git --no-pager log -1 --oneline .
-
-test-rubyspec-precheck:
-	@if [ ! -d $(srcdir)/spec/rubyspec ]; then echo No rubyspec here.  make update-rubyspec first.; exit 1; fi
-
 update-doclie:
 	$(Q) $(srcdir)/tool/git-refresh -C $(srcdir)/coverage $(Q1:0=-q) \
 		--branch $(DOCLIE_GIT_REF) \

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]