Issue2189

classification
Title: Missing support for user scheme installation (java_user)
Type: Severity: normal
Components: Library Versions: Jython 2.7
Milestone:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: zyasoft Nosy List: yecril71pl, zyasoft
Priority: urgent Keywords:

Created on 2014-08-14.11:10:16 by yecril71pl, last changed 2015-03-09.18:01:44 by zyasoft.

Messages
msg8919 (view) Author: Christopher Yeleighton (yecril71pl) Date: 2014-08-14.11:10:15
When I say 

  sys.argv = [ 'setup.py', 'install', '--help' ]
  setup ()

I do not get --user at all, in spite of the fact that --user is required [1].

___
[1] <URL: https://docs.python.org/2/install/index.html#alternate-installation-the-user-scheme >
msg9566 (view) Author: Jim Baker (zyasoft) Date: 2015-02-27.18:14:23
We are missing a definition for java_user scheme in https://github.com/jythontools/jython/blob/master/Lib/distutils/command/install.py#L86, although site.USER_BASE and site.USER_SITE are defined (https://docs.python.org/2/install/index.html#alternate-installation-the-user-scheme)

Blocker for RC1
msg9567 (view) Author: Jim Baker (zyasoft) Date: 2015-03-02.01:12:56
Fixed as of https://hg.python.org/jython/rev/c32815d44800
History
Date User Action Args
2015-03-09 18:01:44zyasoftsetstatus: pending -> closed
2015-03-02 01:12:56zyasoftsetstatus: open -> pending
assignee: zyasoft
resolution: accepted -> fixed
messages: + msg9567
2015-02-27 18:15:19zyasoftsettitle: { setup.py install --user; ) is not supported -> Missing support for user scheme installation (java_user)
2015-02-27 18:14:24zyasoftsetpriority: urgent
resolution: accepted
messages: + msg9566
nosy: + zyasoft
2014-08-14 11:10:16yecril71plcreate