Differences between revisions 10 and 12 (spanning 2 versions)
Revision 10 as of 2007-09-01 01:05:27
Size: 2218
Editor: PhilipJenvey
Comment: and another thing, site-packages obviously
Revision 12 as of 2007-09-23 20:58:20
Size: 2651
Editor: PhilipJenvey
Comment: mention my fake file descriptors plan
Deletions are marked like this. Additions are marked like this.
Line 31: Line 31:
 * setuptools runs a test to ensure .pth files work by running "sys.executable -E -c pass". -E is ignore environment on CPython, but is different on Jython (takes an argument):
 
  -E codec : Use a different codec the reading from the console.
   
Line 33: Line 37:
 * A few small upstream patches to setuptools, this includes so far:  * A few small maybe upstream patches to setuptools, this includes so far:
Line 35: Line 39:
  - use tempfile.NamedTemporaryFile instead of tempfile.mkstemp (Java/Jython doesn't allow usage of file descriptors). This will also remove a usage of os.open   - use tempfile.NamedTemporaryFile instead of tempfile.mkstemp (Java/Jython doesn't allow usage of file descriptors). This will also remove a usage of os.open '''* See below'''
Line 37: Line 41:
  - wrap uses of os.chmod in hasattr(os, 'chmod')   - wrap uses of os.chmod in hasattr(os, 'chmod') '''* See below'''
Line 39: Line 43:
  - sandbox may assume os.open (and maybe others) exist   - sandbox may assume os.open (and maybe others) exist '''* See below'''
Line 42: Line 46:

  - '''*I'm looking into faking file descriptors in Jython, allowing the os.open and mkstemp APIs to work -pjenvey'''

Setuptools requirements:

  • PEP 302 style zipimport module Added in r3463

  • number of misc. Jython bug fixes most already committed

We don't have:

  • the kicker, a working os.chdir. I hacked together a really quick version of this, and setuptools was able to get pretty far at installing Pylons. Pylons itself and a number of its dependencies installed fine, but the process died installing the decorator module due to marshal raising a KeyError

  • working marshal. setuptools uses marshal.load, and there's some bugs with our current marshaller
  • tarfile module. This requires a small patch to PyString to work for setuptools. I believe it may require some additions to the os module for test_tarfile.py to pass

  • a valid sys.executable. required by setuptools and distutils for spawning subprocesses. It's impossible to determine argv[0] from java: I'm thinking the jython executable should pass this information along to Jython (java -Dpython.executable=$0)
  • distutils: requires a number of small patches:
    • - distutils metadata for the os.name == 'java' (like path names, default bdist type, etc) - a jython spawn-like function: "error: don't know how to spawn programs on platform 'java'". os.system works as a replacement - a valid sys.executable
  • tempfile.mkstemp
    • - I have patch #1783692 implementing mkstemp/NamedTemporaryFile with Java's secure File.createTempFile
  • imp.acquire/release_lock
    • This is just a simple lock, but may have to be used by internal imp operations. I'm not sure
  • setuptools runs a test to ensure .pth files work by running "sys.executable -E -c pass". -E is ignore environment on CPython, but is different on Jython (takes an argument):
    • -E codec : Use a different codec the reading from the console.
  • a site-packages dir (jython needs to include it on sys.path by default)
  • A few small maybe upstream patches to setuptools, this includes so far:
    • - use tempfile.NamedTemporaryFile instead of tempfile.mkstemp (Java/Jython doesn't allow usage of file descriptors). This will also remove a usage of os.open * See below

      - wrap uses of os.chmod in hasattr(os, 'chmod') * See below

      - sandbox may assume os.open (and maybe others) exist * See below - setuptools cut and pasted shutil's rmtree from CPython 2.3, which uses lstat to check for directories. This may need to change to os.path.isdir (Jython might be able to do lstat, though)

      - *I'm looking into faking file descriptors in Jython, allowing the os.open and mkstemp APIs to work -pjenvey

SetuptoolsOnJython (last edited 2010-01-02 16:58:16 by AndrewKuchling)