]> gitweb.factorcode.org Git - factor.git/commitdiff
Update deploy configs for various modules
authorSlava Pestov <slava@factorcode.org>
Mon, 5 Nov 2007 03:58:00 +0000 (22:58 -0500)
committerSlava Pestov <slava@factorcode.org>
Mon, 5 Nov 2007 03:58:00 +0000 (22:58 -0500)
13 files changed:
extra/automata/ui/deploy.factor
extra/boids/ui/deploy.factor
extra/bunny/deploy.factor
extra/catalyst-talk/deploy.factor [new file with mode: 0644]
extra/color-picker/deploy.factor
extra/gesture-logger/deploy.factor
extra/golden-section/deploy.factor
extra/hello-ui/deploy.factor
extra/hello-world/deploy.factor
extra/lsys/ui/deploy.factor
extra/maze/deploy.factor
extra/nehe/deploy.factor
extra/tetris/deploy.factor

index eb261ed93ffbb5af0b7556010ca631905ec5705d..1aa5a2883a487577388c77e4d19d1686cfe1d467 100644 (file)
@@ -1,16 +1,12 @@
 USING: tools.deploy.config ;
 V{
-    { strip-prettyprint? t }
-    { strip-globals? t }
-    { strip-word-props? t }
-    { strip-word-names? t }
-    { strip-dictionary? t }
-    { strip-debugger? t }
-    { strip-c-types? t }
-    { deploy-math? t }
-    { deploy-compiled? t }
-    { deploy-io? f }
     { deploy-ui? t }
+    { deploy-io 1 }
+    { deploy-reflection 1 }
+    { deploy-compiler? t }
+    { deploy-math? t }
+    { deploy-word-props? f }
+    { deploy-c-types? f }
     { "stop-after-last-window?" t }
     { "bundle-name" "Cellular Automata.app" }
 }
index 0b22fa5200ea7f336716c78e65782b9fe701606b..e272a277e46351738a32a1afa34bf7207da4a93a 100644 (file)
@@ -1,13 +1,12 @@
 USING: tools.deploy.config ;
 V{
-    { strip-word-props? t }
-    { strip-word-names? t }
-    { strip-dictionary? t }
-    { strip-debugger? t }
-    { strip-c-types? t }
-    { deploy-math? t }
-    { deploy-compiled? t }
-    { deploy-io? f }
     { deploy-ui? t }
+    { deploy-io 1 }
+    { deploy-reflection 1 }
+    { deploy-compiler? t }
+    { deploy-math? t }
+    { deploy-word-props? f }
+    { deploy-c-types? f }
+    { "stop-after-last-window?" t }
     { "bundle-name" "Boids.app" }
 }
index 889bae3d12088d98ecffb333707e2f1a368e858f..d2c84582a5ecbf172cd37a6969951ee73e95b1f0 100644 (file)
@@ -1,12 +1,12 @@
 USING: tools.deploy.config ;
 V{
-    { strip-word-props? t }
-    { strip-word-names? t }
-    { strip-dictionary? t }
-    { strip-debugger? t }
-    { deploy-math? t }
-    { deploy-compiled? t }
-    { deploy-io? t }
     { deploy-ui? t }
+    { deploy-io 3 }
+    { deploy-reflection 1 }
+    { deploy-compiler? t }
+    { deploy-math? t }
+    { deploy-word-props? f }
+    { deploy-c-types? f }
+    { "stop-after-last-window?" t }
     { "bundle-name" "Bunny.app" }
 }
diff --git a/extra/catalyst-talk/deploy.factor b/extra/catalyst-talk/deploy.factor
new file mode 100644 (file)
index 0000000..506270f
--- /dev/null
@@ -0,0 +1,12 @@
+USING: tools.deploy.config ;
+V{
+    { deploy-ui? t }
+    { deploy-io 1 }
+    { deploy-reflection 1 }
+    { deploy-compiler? t }
+    { deploy-math? t }
+    { deploy-word-props? f }
+    { deploy-c-types? f }
+    { "stop-after-last-window?" t }
+    { "bundle-name" "catalyst-talk.app" }
+}
index ebce45177b0d56a20cd8e2619dff1a11b67f2ea1..d16b74d07619fedf812a6d385626a295b2289fba 100644 (file)
@@ -1,12 +1,12 @@
 USING: tools.deploy.config ;
 V{
-    { strip-word-props? t }
-    { strip-word-names? t }
-    { strip-dictionary? t }
-    { strip-debugger? t }
-    { deploy-math? t }
-    { deploy-compiled? t }
-    { deploy-io? f }
     { deploy-ui? t }
-    { "bundle-name" "Color Picker.app" }
+    { deploy-io 1 }
+    { deploy-reflection 1 }
+    { deploy-compiler? t }
+    { deploy-math? t }
+    { deploy-word-props? f }
+    { deploy-c-types? f }
+    { "stop-after-last-window?" t }
+    { "bundle-name" "color-picker.app" }
 }
index 5e412987f06626248b9ee0cb433d79ace35eed13..782b996895f6b544c26d185d8245f462acf62ff9 100644 (file)
@@ -1,13 +1,12 @@
 USING: tools.deploy.config ;
 V{
-    { strip-word-props? t }
-    { strip-word-names? f }
-    { strip-dictionary? t }
-    { strip-debugger? t }
-    { deploy-math? t }
-    { deploy-compiled? t }
-    { deploy-io? f }
     { deploy-ui? t }
-    { strip-prettyprint? f }
+    { deploy-io 1 }
+    { deploy-reflection 3 }
+    { deploy-compiler? t }
+    { deploy-math? t }
+    { deploy-word-props? f }
+    { deploy-c-types? f }
+    { "stop-after-last-window?" t }
     { "bundle-name" "Gesture Logger.app" }
 }
index 3923d258f0981ab6db41402a143504e340917ff0..a41d1b33c63f8d06b556031618c8167d38be3024 100644 (file)
@@ -1,17 +1,12 @@
 USING: tools.deploy.config ;
 V{
-    { strip-io? t }
-    { strip-prettyprint? t }
-    { strip-globals? t }
-    { strip-word-props? t }
-    { strip-word-names? t }
-    { strip-dictionary? t }
-    { strip-debugger? t }
-    { strip-c-types? t }
-    { deploy-math? t }
-    { deploy-compiled? t }
-    { deploy-io? f }
     { deploy-ui? t }
+    { deploy-io 1 }
+    { deploy-reflection 1 }
+    { deploy-compiler? t }
+    { deploy-math? t }
+    { deploy-word-props? f }
+    { deploy-c-types? f }
     { "stop-after-last-window?" t }
     { "bundle-name" "Golden Section.app" }
 }
index 2f346e94c676d9bf9729f4d79e3a07b23b3abd76..bb819f5ce2ff1f948424229e3133979384b3d667 100644 (file)
@@ -1,16 +1,12 @@
 USING: tools.deploy.config ;
 V{
-    { strip-prettyprint? t }
-    { strip-globals? t }
-    { strip-word-props? t }
-    { strip-word-names? f }
-    { strip-dictionary? t }
-    { strip-debugger? t }
-    { strip-c-types? t }
-    { deploy-math? t }
-    { deploy-compiled? t }
-    { deploy-io? f }
     { deploy-ui? t }
+    { deploy-io 1 }
+    { deploy-reflection 2 }
+    { deploy-compiler? t }
+    { deploy-math? t }
+    { deploy-word-props? f }
+    { deploy-c-types? f }
     { "stop-after-last-window?" t }
-    { "bundle-name" "Hello World.app" }
+    { "bundle-name" "Hello world.app" }
 }
index 145f7ecea731bb6bafa31875c48874da113db360..7af1913d9358bcfbb0bbe38a29d4b7195a638c04 100644 (file)
@@ -1,15 +1,12 @@
 USING: tools.deploy.config ;
 V{
-    { strip-prettyprint? t }
-    { strip-globals? t }
-    { strip-word-props? t }
-    { strip-word-names? t }
-    { strip-dictionary? t }
-    { strip-debugger? t }
-    { strip-c-types? t }
-    { deploy-math? f }
-    { deploy-compiled? f }
-    { deploy-io? f }
     { deploy-ui? f }
+    { deploy-io 3 }
+    { deploy-reflection 1 }
+    { deploy-compiler? t }
+    { deploy-math? f }
+    { deploy-word-props? f }
+    { deploy-c-types? f }
     { "stop-after-last-window?" t }
+    { "bundle-name" "Hello world (console).app" }
 }
index 22b6d0e4a3cc3f2aea5a299f0fbf8453ecb67865..de5076cac07e1cf7a8d8fde1cd0ddd920283b405 100644 (file)
@@ -1,13 +1,13 @@
-USING: tools.deploy ;
+USING: tools.deploy.config ;
 V{
-    { strip-word-props? t }
-    { strip-word-names? t }
-    { strip-dictionary? t }
-    { strip-debugger? t }
-    { strip-c-types? t }
-    { deploy-math? t }
-    { deploy-compiled? t }
-    { deploy-io? f }
     { deploy-ui? t }
-    { "bundle-name" "Lindenmayer Systems.app" }
+    { deploy-io 1 }
+    { deploy-reflection 2 }
+    { deploy-compiler? t }
+    { deploy-math? t }
+    { deploy-word-props? t }
+    { deploy-word-defs? t }
+    { deploy-c-types? f }
+    { "stop-after-last-window?" t }
+    { "bundle-name" "Lindenmayer System Explorer.app" }
 }
index 31818c30c3c9f1d3f6b593f7415a5b391e396885..123412f4a3e199a2b362faac03a4c11381b76f62 100644 (file)
@@ -1,13 +1,12 @@
 USING: tools.deploy.config ;
 V{
-    { strip-word-props? t }
-    { strip-word-names? f }
-    { strip-dictionary? t }
-    { strip-debugger? t }
-    { strip-c-types? t }
-    { deploy-math? t }
-    { deploy-compiled? t }
-    { deploy-io? f }
     { deploy-ui? t }
+    { deploy-io 1 }
+    { deploy-reflection 1 }
+    { deploy-compiler? t }
+    { deploy-math? t }
+    { deploy-word-props? f }
+    { deploy-c-types? f }
+    { "stop-after-last-window?" t }
     { "bundle-name" "Maze.app" }
 }
index b464d735cea050dff0440a3925d3b489dedf15ca..cbd31d67b144572a741dcbc7c9d751c39e81e346 100644 (file)
@@ -1,13 +1,12 @@
 USING: tools.deploy.config ;
 V{
-    { strip-word-props? t }
-    { strip-word-names? t }
-    { strip-dictionary? t }
-    { strip-debugger? t }
-    { strip-c-types? t }
-    { deploy-math? t }
-    { deploy-compiled? t }
-    { deploy-io? f }
     { deploy-ui? t }
-    { "bundle-name" "NeHe Demos.app" }
+    { deploy-io 1 }
+    { deploy-reflection 1 }
+    { deploy-compiler? t }
+    { deploy-math? t }
+    { deploy-word-props? f }
+    { deploy-c-types? f }
+    { "stop-after-last-window?" t }
+    { "bundle-name" "NeHe OpenGL demos.app" }
 }
index 61fd0a545caefe3d183850e5616afc17b0611e0b..c00b7041db7539d43043858d53b6790948df1d9c 100644 (file)
@@ -1,13 +1,12 @@
 USING: tools.deploy.config ;
 V{
-    { strip-word-props? t }
-    { strip-word-names? t }
-    { strip-dictionary? t }
-    { strip-debugger? t }
-    { strip-c-types? t }
-    { deploy-math? t }
-    { deploy-compiled? t }
-    { deploy-io? f }
     { deploy-ui? t }
+    { deploy-io 1 }
+    { deploy-reflection 1 }
+    { deploy-compiler? t }
+    { deploy-math? t }
+    { deploy-word-props? f }
+    { deploy-c-types? f }
+    { "stop-after-last-window?" t }
     { "bundle-name" "Tetris.app" }
 }