[pypy-svn] r59366 - pypy/build/bot2/pypybuildbot

fijal at codespeak.net fijal at codespeak.net
Fri Oct 24 15:37:15 CEST 2008


Author: fijal
Date: Fri Oct 24 15:37:15 2008
New Revision: 59366

Modified:
   pypy/build/bot2/pypybuildbot/builds.py
Log:
add one build for scratchbox


Modified: pypy/build/bot2/pypybuildbot/builds.py
==============================================================================
--- pypy/build/bot2/pypybuildbot/builds.py	(original)
+++ pypy/build/bot2/pypybuildbot/builds.py	Fri Oct 24 15:37:15 2008
@@ -119,3 +119,15 @@
                      "--pypy=pypy/translator/goal/pypy-c",
                      "--resultlog=cpython.log", "lib-python"],           
             logfiles={'pytestLog': 'cpython.log'}))
+
+class PyPyTranslatedScratchbox(factory.BuildFactory):
+    def __init__(self, *a, **kw):
+        platform = kw.pop('platform', 'linux')
+        
+        factory.BuildFactory.__init__(self, *a, **kw)
+
+        setup_steps(platform, self)
+
+        self.addStep(Translate(["--platform maemo", "-Omem"], []))
+        # right now we stop here, this is mostly a copy of what was
+        # before, try to share more code



More information about the Pypy-commit mailing list