[svn:parrot] r36003 - in trunk: . config/gen config/gen/makefiles languages/t languages/unlambda lib/Parrot/Docs/Section t/codingstd
[email protected] Sun, 25 Jan 2009 11:14:08 -0800 (PST)
| Newsgroups | perl.cvs.parrot |
|---|---|
| Message-ID | <[email protected]> |
Author: bernhard
Date: Sun Jan 25 11:14:07 2009
New Revision: 36003
Removed:
trunk/languages/unlambda/
Modified:
trunk/MANIFEST
trunk/MANIFEST.SKIP
trunk/config/gen/languages.pm
trunk/config/gen/makefiles/languages.in
trunk/languages/t/harness
trunk/lib/Parrot/Docs/Section/Languages.pm
trunk/t/codingstd/linelength.t
Log:
[unlambda] Moved to http://github.com/bschmalhofer/unlambda/
Modified: trunk/MANIFEST
==============================================================================
--- trunk/MANIFEST (original)
+++ trunk/MANIFEST Sun Jan 25 11:14:07 2009
@@ -1,7 +1,7 @@
# ex: set ro:
# $Id$
#
-# generated by tools/dev/mk_manifest_and_skip.pl Sun Jan 25 11:59:35 2009 UT
+# generated by tools/dev/mk_manifest_and_skip.pl Sun Jan 25 19:09:25 2009 UT
#
# See tools/dev/install_files.pl for documentation on the
# format of this file.
@@ -2475,17 +2475,6 @@
languages/squaak/t/01-math.t [squaak]
languages/squaak/t/harness [squaak]
languages/t/harness []
-languages/unlambda/Configure.pl [unlambda]
-languages/unlambda/MAINTAINER [unlambda]
-languages/unlambda/README [unlambda]
-languages/unlambda/config/makefiles/root.in [unlambda]
-languages/unlambda/examples/h.unl [unlambda]
-languages/unlambda/examples/hello.unl [unlambda]
-languages/unlambda/examples/k.unl [unlambda]
-languages/unlambda/examples/newline.unl [unlambda]
-languages/unlambda/t/examples.t [unlambda]
-languages/unlambda/t/harness [unlambda]
-languages/unlambda/unl.pir [unlambda]
languages/urm/INSTALL [urm]
languages/urm/LICENSE [urm]
languages/urm/MAINTAINER [urm]
Modified: trunk/MANIFEST.SKIP
==============================================================================
--- trunk/MANIFEST.SKIP (original)
+++ trunk/MANIFEST.SKIP Sun Jan 25 11:14:07 2009
@@ -1,6 +1,6 @@
# ex: set ro:
# $Id$
-# generated by tools/dev/mk_manifest_and_skip.pl Sun Jan 25 10:49:17 2009 UT
+# generated by tools/dev/mk_manifest_and_skip.pl Sun Jan 25 19:09:25 2009 UT
#
# This file should contain a transcript of the svn:ignore properties
# of the directories in the Parrot subversion repository. (Needed for
@@ -1208,11 +1208,6 @@
# generated from svn:ignore of 'languages/squaak/src/'
^languages/squaak/src/gen_.*\.pir$
^languages/squaak/src/gen_.*\.pir/
-# generated from svn:ignore of 'languages/unlambda/'
-^languages/unlambda/Makefile$
-^languages/unlambda/Makefile/
-^languages/unlambda/unl\.pbc$
-^languages/unlambda/unl\.pbc/
# generated from svn:ignore of 'languages/urm/'
^languages/urm/Makefile$
^languages/urm/Makefile/
Modified: trunk/config/gen/languages.pm
==============================================================================
--- trunk/config/gen/languages.pm (original)
+++ trunk/config/gen/languages.pm Sun Jan 25 11:14:07 2009
@@ -47,7 +47,7 @@
parrot_compiler perl6 pheme PIR pipp punie pynie
regex
scheme squaak
- unlambda urm
+ urm
WMLScript
Zcode
};
Modified: trunk/config/gen/makefiles/languages.in
==============================================================================
--- trunk/config/gen/makefiles/languages.in (original)
+++ trunk/config/gen/makefiles/languages.in Sun Jan 25 11:14:07 2009
@@ -25,7 +25,7 @@
parrot_compiler perl6 pheme PIR pipp punie pynie \
regex \
scheme squaak \
- unlambda urm \
+ urm \
WMLScript \
Zcode
@@ -122,7 +122,7 @@
parrot_compiler.test perl6.test pheme.test PIR.test pipp.test punie.test pynie.test \
regex.test \
scheme.test squaak.test \
- urm.test unlambda.test \
+ urm.test \
WMLScript.test \
Zcode.test
@@ -157,7 +157,7 @@
parrot_compiler.realclean perl6.realclean pheme.realclean PIR.realclean pipp.realclean punie.realclean pynie.realclean \
regex.realclean \
scheme.realclean squaak.realclean \
- urm.realclean unlambda.realclean \
+ urm.realclean \
WMLScript.realclean \
Zcode.realclean
@@ -457,16 +457,6 @@
squaak.realclean:
- $(MAKE) squaak realclean
-unlambda: unlambda.dummy
-unlambda.dummy:
- - $(MAKE) unlambda
-unlambda.test :
- - $(MAKE) unlambda test
-unlambda.clean :
- - $(MAKE) unlambda clean
-unlambda.realclean :
- - $(MAKE) unlambda realclean
-
urm: urm.dummy
urm.dummy:
- $(MAKE) urm
@@ -500,8 +490,8 @@
# helpers for checking out externally managed languages
# check out all known externally managed languages
-co-all: co-eclectus co-gil co-hq9plus co-m4 co-markdown co-pjs co-primitivearc co-tcl
-up-all: up-eclectus up-gil up-hq9plus up-m4 up-markdown up-pjs up-primitivearc up-tcl
+co-all: co-eclectus co-gil co-hq9plus co-m4 co-markdown co-pjs co-primitivearc co-tcl co-unlambda
+up-all: up-eclectus up-gil up-hq9plus up-m4 up-markdown up-pjs up-primitivearc up-tcl up-unlambda
co-eclectus:
- $(GIT) clone 'git:////github.com/bschmalhofer/eclectus.git'
@@ -551,3 +541,9 @@
up-tcl:
cd tcl && $(SVN) up
+co-unlambda:
+ - $(GIT) clone 'git:////github.com/fperrad/unlambda.git'
+
+up-unlambda:
+ cd unlambda && $(GIT) pull
+
Modified: trunk/languages/t/harness
==============================================================================
--- trunk/languages/t/harness (original)
+++ trunk/languages/t/harness Sun Jan 25 11:14:07 2009
@@ -90,7 +90,6 @@
ook
parrot_compiler pipp punie
regex
- unlambda
WMLScript
);
my @harnesses
Modified: trunk/lib/Parrot/Docs/Section/Languages.pm
==============================================================================
--- trunk/lib/Parrot/Docs/Section/Languages.pm (original)
+++ trunk/lib/Parrot/Docs/Section/Languages.pm Sun Jan 25 11:14:07 2009
@@ -67,7 +67,6 @@
$self->new_section( 'Regex', 'regex.html', '', 'languages/regex' ),
$self->new_section( 'Scheme', 'scheme.html', '', 'languages/scheme' ),
$self->new_section( 'Squaak', 'squaak.html', '', 'languages/squaak' ),
- $self->new_section( 'unlambda', 'unlambda.html', '', 'languages/unlambda' ),
$self->new_section( 'URM', 'urm.html', '', 'languages/urm' ),
$self->new_section( 'WMLScript', 'wmlscript.html', '', 'languages/WMLScript' ),
$self->new_section( 'Zcode', 'zcode.html', '', 'languages/Zcode' ),
Modified: trunk/t/codingstd/linelength.t
==============================================================================
--- trunk/t/codingstd/linelength.t (original)
+++ trunk/t/codingstd/linelength.t Sun Jan 25 11:14:07 2009
@@ -48,7 +48,6 @@
ook
perl6
pipp
- unlambda
WMLScript
};