[pypy-commit] pypy default: remove unmaintained file

mattip noreply at buildbot.pypy.org
Sat May 19 21:48:39 CEST 2012


Author: Matti Picus <matti.picus at gmail.com>
Branch: 
Changeset: r55141:326a5c82835c
Date: 2012-05-17 23:52 +0300
http://bitbucket.org/pypy/pypy/changeset/326a5c82835c/

Log:	remove unmaintained file

diff --git a/pypy/tool/release/win32build.py b/pypy/tool/release/win32build.py
deleted file mode 100644
--- a/pypy/tool/release/win32build.py
+++ /dev/null
@@ -1,29 +0,0 @@
-import autopath
-import package
-import subprocess
-import py, sys
-import shutil
-
-pypydir = py.path.local(autopath.pypydir)
-builddir = pypydir.join('translator', 'goal')
-
-VERSION = "1.5.0a0"
-
-def make_pypy(tag, options):
-    pypy = 'pypy%s' % (tag,)
-    args = [sys.executable,
-         str(builddir.join('translate.py')),
-         '--output=' + pypy,
-         ] + options
-    print "Execute", args
-    p = subprocess.Popen(args, cwd=str(builddir))
-    p.wait()
-    zipfile = 'pypy-%s-win32%s' % (VERSION, tag)
-    package.package(pypydir.dirpath(), zipfile, pypy, pypydir)
-
-shutil.copy(str(pypydir.join('..', '..', 'expat-2.0.1', 'win32', 'bin', 'release', 'libexpat.dll')), str(builddir))
-
-make_pypy('',            ['-Ojit'])
-make_pypy('-nojit',      ['-O2'])
-#make_pypy('-stackless', [--stackless])
-#make_pypy('-sandbox',   [--sandbox])


More information about the pypy-commit mailing list