[issue18807] Allow venv to create copies, even when symlinks are supported

2014-06-04 Thread Barry A. Warsaw

Barry A. Warsaw added the comment:

The os.chmod() will fail if path is a symlink.  At the very least it must be 
guarded by a `not os.path.islink()` call like above it.  I'll add this check to 
3.4 and 3.5.

--
nosy: +barry

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue18807
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue18807] Allow venv to create copies, even when symlinks are supported

2014-05-28 Thread Roundup Robot

Roundup Robot added the comment:

New changeset ce1b8b2ddf07 by Vinay Sajip in branch '3.4':
Issue #18807: If copying (no symlinks) specified for a venv, then the python 
interpreter aliases (python, python3) are now created by copying rather than 
symlinking.
http://hg.python.org/cpython/rev/ce1b8b2ddf07

New changeset f2adaccc13ab by Vinay Sajip in branch 'default':
Issue #18807: Merged fix from 3.4.
http://hg.python.org/cpython/rev/f2adaccc13ab

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue18807
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue18807] Allow venv to create copies, even when symlinks are supported

2014-05-28 Thread Vinay Sajip

Vinay Sajip added the comment:

I've made the change - not exactly the same as your patch, which was missing an 
os.chmod() and doing an unnecessary os.path.join() - but thanks for submitting 
a patch :-).

However, note that on 64-bit Linux systems (actually any POSIX other than OS X) 
a symlink lib64 - lib is still created. Perhaps this could be omitted, but I'm 
not sure if that would cause problems with pip. I've posted a note on the 
relevant issue - #21197.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue18807
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue18807] Allow venv to create copies, even when symlinks are supported

2014-05-27 Thread Dominic Cerquetti

Dominic Cerquetti added the comment:

Requesting re-open of this issue, using --closes to force no symlinks to be 
created still results in venv trying to create symlinks.

I'm using Python 3.4 with the following command inside a vagrant Ubuntu 14.04 
virtualbox image.  The folder is a SMB mount from a windows host, which does 
not allow symlinks.

Expected behavior: os.symlink() is never called when you run:
python3.4 -m venv --copies

Actual behavior: os.symlink() is still called in a few places such as:
http://hg.python.org/cpython/file/b8e4bb1e1090/Lib/venv/__init__.py
line: 147
line: 215

I have a fix for line 215 that I'm testing now (basically just need to call 
copier() instead of os.symlink()). 

I don't want to mess with line 147 due to it being OSX specific and I have no 
way to test it.  But in theory it should also just be a call to copier()

--
nosy: +Dominic.Cerquetti

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue18807
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue18807] Allow venv to create copies, even when symlinks are supported

2014-05-27 Thread Vinay Sajip

Vinay Sajip added the comment:

While you may be right about line 215, line 147 isn't analogous, because in the 
latter case it's a symlink to a directory. We don't really want the entire lib 
directory tree *copied* into lib64 (and in any case, the populating of lib will 
happen much after venv creatuion, when things are installed into the venv: a 
copy is of no use here).

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue18807
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue18807] Allow venv to create copies, even when symlinks are supported

2014-05-27 Thread Dominic Cerquetti

Dominic Cerquetti added the comment:

Preliminary patch for line 215, per earlier description.

While this doesn't appear to break anything and creates both copies and 
symlinks correctly, I do have these four failing unit tests:

test_multiprocessing_fork 
test_multiprocessing_forkserver
test_multiprocessing_main_handling 
test_multiprocessing_spawn

I don't have time right now to look into it to see if they're related to my 
change (at first glance, it looks like not).

--
keywords: +patch
Added file: http://bugs.python.org/file35382/venv-symlink-fix.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue18807
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue18807] Allow venv to create copies, even when symlinks are supported

2014-05-27 Thread Dominic Cerquetti

Dominic Cerquetti added the comment:

Ok cool, as you said line 215 then seems to be the only one that needs it.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue18807
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue18807] Allow venv to create copies, even when symlinks are supported

2013-08-24 Thread Roundup Robot

Roundup Robot added the comment:

New changeset ffb01a6c0960 by Vinay Sajip in branch 'default':
Closes #18807: pyvenv now takes a --copies argument allowing copies instead of 
symlinks even where symlinks are available and the default.
http://hg.python.org/cpython/rev/ffb01a6c0960

--
nosy: +python-dev
resolution:  - fixed
stage:  - committed/rejected
status: open - closed

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue18807
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue18807] Allow venv to create copies, even when symlinks are supported

2013-08-23 Thread Antoine Pitrou

Changes by Antoine Pitrou pit...@free.fr:


--
nosy: +vinay.sajip

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue18807
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue18807] Allow venv to create copies, even when symlinks are supported

2013-08-22 Thread Andrea Corbellini

New submission from Andrea Corbellini:

I'd really appreciate if `venv` could create environments without symlinks.

Working on many Python projects, each one with different requirements, I prefer 
to keep everything I need in a single virtualenv directory, rather than two 
(one for the virtualenv and one for the built Python).

So I'd like to have a --copies option that lets me force venv not to create 
symlinks. I can work on a patch if this issue is accepted.

--
components: Library (Lib)
messages: 195883
nosy: candrea
priority: normal
severity: normal
status: open
title: Allow venv to create copies, even when symlinks are supported
versions: Python 3.5

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue18807
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com