[svn:parrot] r36432 - trunk/config/gen/makefiles

barney at svn.parrot.org barney at svn.parrot.org
Sun Feb 8 11:13:06 UTC 2009


Author: barney
Date: Sun Feb  8 11:13:06 2009
New Revision: 36432
URL: https://trac.parrot.org/parrot/changeset/36432

Log:
[languages] Add helpers to clone and pull shakespeare

Modified:
   trunk/config/gen/makefiles/languages.in

Modified: trunk/config/gen/makefiles/languages.in
==============================================================================
--- trunk/config/gen/makefiles/languages.in	Sun Feb  8 10:58:09 2009	(r36431)
+++ trunk/config/gen/makefiles/languages.in	Sun Feb  8 11:13:06 2009	(r36432)
@@ -9,6 +9,7 @@
 BUILD_DIR     = @build_dir@
 RECONFIGURE   = $(PERL) @build_dir@/tools/dev/reconfigure.pl
 GIT           = git
+HG            = hg
 SVN           = svn
 
 # List of languages that are currently managed in the Parrot svn repository
@@ -81,6 +82,8 @@
 	@echo ""
 	@echo "  co-primitivearc: Try to fetch primitivearc"
 	@echo ""
+	@echo "  co-shakespeare: Try to fetch shakespeare"
+	@echo ""
 	@echo "  co-tcl:        Try to fetch Partcl"
 	@echo ""
 	@echo "  co-unlambda:   Try to fetch unlambda"
@@ -102,6 +105,8 @@
 	@echo ""
 	@echo "  up-primitivearc: Try to update primitivearc"
 	@echo ""
+	@echo "  up-shakespeare: Try to update shakespeare"
+	@echo ""
 	@echo "  up-tcl:        Try to update Partcl"
 	@echo ""
 	@echo "  up-unlambda:   Try to update unlambda"
@@ -461,8 +466,10 @@
 # helpers for checking out externally managed languages
 
 # check out all known externally managed languages
-co-all: co-eclectus co-gil co-hq9plus co-lazy-k co-m4 co-markdown co-pjs co-primitivearc co-rakudo co-tcl co-unlambda co-wmlscript
-up-all: up-eclectus up-gil up-hq9plus up-lazy-k up-m4 up-markdown up-pjs up-primitivearc up-rakudo up-tcl up-unlambda up-wmlscript
+co-all: co-eclectus co-gil co-hq9plus co-lazy-k co-m4 co-markdown co-pjs \
+    co-primitivearc co-rakudo co-shakespeare co-tcl co-unlambda co-wmlscript
+up-all: up-eclectus up-gil up-hq9plus up-lazy-k up-m4 up-markdown up-pjs \
+    up-primitivearc up-rakudo up-shakespeare up-tcl up-unlambda up-wmlscript
 
 co-eclectus:
 	- $(GIT) clone 'git:////github.com//bschmalhofer//eclectus.git'
@@ -512,6 +519,12 @@
 up-primitivearc:
 	cd primitivearc && $(GIT) pull
 
+co-shakespeare:
+	- $(HG) clone 'http:////bitbucket.org//riffraff//shakespeare-parrot'
+
+up-shakespeare:
+	cd shakespeare-parrot && $(HG) pull
+
 co-rakudo:
 	- $(GIT) clone 'git:////github.com//rakudo//rakudo.git'
 


More information about the parrot-commits mailing list