commons icon indicating copy to clipboard operation
commons copied to clipboard

./pants.bootstrap wants to write on /local

Open neutrinus opened this issue 11 years ago • 8 comments

copying setuptools/tests/test_markerlib.py -> build/lib/setuptools/tests
copying setuptools/tests/test_dist_info.py -> build/lib/setuptools/tests
running install_lib
creating /local

Failed to install stderr:
error: could not create '/local': Permission denied

Traceback (most recent call last):
  File "./src/python/twitter/pants/bin/pants_exe.py", line 182, in <module>
    main()
  File "./src/python/twitter/pants/bin/pants_exe.py", line 176, in main
    _run()
  File "./src/python/twitter/pants/bin/pants_exe.py", line 148, in _run
    command = command_class(run_tracker, root_dir, parser, command_args)
  File "/home/marek/tmp/pants/commons/src/python/twitter/pants/commands/build.py", line 59, in __init__
    self.interpreter_cache.setup()
  File "/home/marek/tmp/pants/commons/src/python/twitter/pants/python/interpreter_cache.py", line 134, in setup
    self.setup_paths(setup_paths)
  File "/home/marek/tmp/pants/commons/src/python/twitter/pants/python/interpreter_cache.py", line 114, in setup_paths
    self.setup_interpreter(interpreter)
  File "/home/marek/tmp/pants/commons/src/python/twitter/pants/python/interpreter_cache.py", line 94, in setup_interpreter
    self.setup_distribute(interpreter, interpreter_dir)
  File "/home/marek/tmp/pants/commons/src/python/twitter/pants/python/interpreter_cache.py", line 81, in setup_distribute
    dist = installer.distribution()
  File "/home/marek/tmp/pants/commons/src/python/twitter/common/python/installer.py", line 24, in function_wrapper
    raise Installer.InstallFailure('Failed to install %s' % self._source_dir)
twitter.common.python.installer.InstallFailure: Failed to install /tmp/tmprPKhA4/setuptools-2.1
Unable to build pants!  Cannot continue!

neutrinus avatar Jan 31 '14 09:01 neutrinus

What's your full command-line? I just built pants with pants.bootstrap and don't see a "creating" string in my output.

[tw-mbp13-travis commons]$ PANTS_DEV=1 PEX_VERBOSE=5 ./pants.bootstrap Using /Users/travis/Python/CPython-2.6.8/bin/python Installing virtualenv % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 1294k 100 1294k 0 0 430k 0 0:00:03 0:00:03 --:--:-- 430k Running virtualenv with interpreter /Users/travis/Python/CPython-2.6.8/bin/python New python executable in ./build-support/python/../../.python/bootstrap/bin/python Installing Setuptools..............................................................................................................................................................................................................................done. Installing Pip.....................................................................................................................................................................................................................................................................................................................................done. Script ./build-support/python/../../.python/bootstrap/bin/activate.csh cannot be made relative (it's not a normal script that starts with #!/Users/travis/src/commons/.python/bootstrap/bin/python) Script ./build-support/python/../../.python/bootstrap/bin/activate.fish cannot be made relative (it's not a normal script that starts with #!/Users/travis/src/commons/.python/bootstrap/bin/python) Making script ./build-support/python/../../.python/bootstrap/bin/easy_install relative Making script ./build-support/python/../../.python/bootstrap/bin/easy_install-2.6 relative Making script ./build-support/python/../../.python/bootstrap/bin/pip relative Making script ./build-support/python/../../.python/bootstrap/bin/pip-2.6 relative Downloading/unpacking pystache==0.5.3 Downloading pystache-0.5.3.tar.gz (74kB): 74kB downloaded Storing download in cache at ./.pants.d/.pip.cache/https%3A%2F%2Fpypi.python.org%2Fpackages%2Fsource%2Fp%2Fpystache%2Fpystache-0.5.3.tar.gz Running setup.py egg_info for package pystache pystache: using: version '0.9.8' of <module 'setuptools' from '/Users/travis/src/commons/.python/bootstrap/lib/python2.6/site-packages/setuptools/init.pyc'> Installing collected packages: pystache Running setup.py install for pystache pystache: using: version '0.9.8' of <module 'setuptools' from '/Users/travis/src/commons/.python/bootstrap/lib/python2.6/site-packages/setuptools/init.pyc'> Installing pystache script to /Users/travis/src/commons/.python/bootstrap/bin Installing pystache-test script to /Users/travis/src/commons/.python/bootstrap/bin Successfully installed pystache Cleaning up... Downloading/unpacking setuptools==2.1 Downloading setuptools-2.1.tar.gz (784kB): 784kB downloaded Storing download in cache at ./.pants.d/.pip.cache/https%3A%2F%2Fpypi.python.org%2Fpackages%2Fsource%2Fs%2Fsetuptools%2Fsetuptools-2.1.tar.gz Running setup.py egg_info for package setuptools Installing collected packages: setuptools Found existing installation: setuptools 0.9.8 Uninstalling setuptools: Successfully uninstalled setuptools Running setup.py install for setuptools Installing easy_install script to /Users/travis/src/commons/.python/bootstrap/bin Installing easy_install-2.6 script to /Users/travis/src/commons/.python/bootstrap/bin Successfully installed setuptools Cleaning up... Downloading/unpacking python-daemon==1.5.5 Downloading python-daemon-1.5.5.tar.gz (41kB): 41kB downloaded Storing download in cache at ./.pants.d/.pip.cache/https%3A%2F%2Fpypi.python.org%2Fpackages%2Fsource%2Fp%2Fpython-daemon%2Fpython-daemon-1.5.5.tar.gz Running setup.py egg_info for package python-daemon warning: no files found matching 'TODO' Requirement already up-to-date: setuptools in ./.python/bootstrap/lib/python2.6/site-packages (from python-daemon==1.5.5) Downloading/unpacking lockfile>=0.7 (from python-daemon==1.5.5) Downloading lockfile-0.9.1.tar.gz Storing download in cache at ./.pants.d/.pip.cache/https%3A%2F%2Fpypi.python.org%2Fpackages%2Fsource%2Fl%2Flockfile%2Flockfile-0.9.1.tar.gz Running setup.py egg_info for package lockfile Installing collected packages: python-daemon, lockfile Running setup.py install for python-daemon warning: no files found matching 'TODO' Running setup.py install for lockfile Successfully installed python-daemon lockfile Cleaning up... *** running pants in dev mode from ./src/python/twitter/pants/bin/pants_exe.py *** Pants 0.0.10 @ PANTS_BUILD_ROOT: /Users/travis/src/commons

Available subcommands: py Python chroot manipulation. help Provides help for available commands or a single specified command. build Builds a specified target. setup_py Generate setup.py-based Python projects from python_library targets. goal Lists installed goals or else executes a named goal.

Default subcommand flags can be stored in ~/.pantsrc using the 'options' key of a section named for the subcommand in ini style format, ie: [build] options: --log-exit [tw-mbp13-travis commons]$

traviscrawford avatar Jan 31 '14 16:01 traviscrawford

Thank you for fast response. I'm really sorry, it was a messy day and I forgot how to fill bug properly. Mea culpa.

My system: linux/amd64 debian SID (with some experimental packages).

Commands: mstation:marek:~/tmp> git clone git://github.com/twitter/commons && cd commons mstation:marek:~/tmp/commons> ./pants tests/python/twitter/pants:all
2014-02-01 10:21:00,197 pants:63 - Required pants.ini key DEFAULT.pants_pex_baseurl is not present. Please add the option and try again.
[ there was a hint on reddit that suggest to run pants.bootstrap in this case] mstation:marek:~/tmp/commons> ./pants.bootstrap

Using /home/marek/.virtualenvs/wh-monit/bin/python                                                                                                                                            
Installing virtualenv
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100 1294k  100 1294k    0     0   110k      0  0:00:11  0:00:11 --:--:--  190k
Running virtualenv with interpreter /home/marek/.virtualenvs/wh-monit/bin/python
Using real prefix '/usr'
  Cannot find file /home/marek/.virtualenvs/wh-monit/lib/python2.7/config (bad symlink)
Cannot find file /home/marek/.virtualenvs/wh-monit/lib/python2.7/config (bad symlink)
New python executable in ./build-support/python/../../.python/bootstrap/bin/python
Installing Setuptools..............................................................................................................................................................................................................................done.
Installing Pip.....................................................................................................................................................................................................................................................................................................................................done.
Making script ./build-support/python/../../.python/bootstrap/bin/easy_install-2.7 relative
Making script ./build-support/python/../../.python/bootstrap/bin/pip relative
Making script ./build-support/python/../../.python/bootstrap/bin/pip-2.7 relative
Script ./build-support/python/../../.python/bootstrap/bin/activate.fish cannot be made relative (it's not a normal script that starts with #!/home/marek/tmp/commons/.python/bootstrap/bin/python)
Script ./build-support/python/../../.python/bootstrap/bin/activate.csh cannot be made relative (it's not a normal script that starts with #!/home/marek/tmp/commons/.python/bootstrap/bin/python)
Making script ./build-support/python/../../.python/bootstrap/bin/easy_install relative
Downloading/unpacking pystache==0.5.3
  Downloading pystache-0.5.3.tar.gz (74kB): 74kB downloaded
  Storing download in cache at ./.pants.d/.pip.cache/https%3A%2F%2Fpypi.python.org%2Fpackages%2Fsource%2Fp%2Fpystache%2Fpystache-0.5.3.tar.gz
  Running setup.py egg_info for package pystache
    pystache: using: version '0.9.8' of <module 'setuptools' from '/home/marek/tmp/commons/.python/bootstrap/local/lib/python2.7/site-packages/setuptools/__init__.pyc'>

Installing collected packages: pystache
  Running setup.py install for pystache
    pystache: using: version '0.9.8' of <module 'setuptools' from '/home/marek/tmp/commons/.python/bootstrap/local/lib/python2.7/site-packages/setuptools/__init__.pyc'>

    Installing pystache script to /home/marek/tmp/commons/.python/bootstrap/bin
    Installing pystache-test script to /home/marek/tmp/commons/.python/bootstrap/bin
Successfully installed pystache
Cleaning up...
Downloading/unpacking setuptools==2.1
  Downloading setuptools-2.1.tar.gz (784kB): 784kB downloaded
  Storing download in cache at ./.pants.d/.pip.cache/https%3A%2F%2Fpypi.python.org%2Fpackages%2Fsource%2Fs%2Fsetuptools%2Fsetuptools-2.1.tar.gz
  Running setup.py egg_info for package setuptools

Installing collected packages: setuptools
  Found existing installation: setuptools 0.9.8
    Uninstalling setuptools:
      Successfully uninstalled setuptools
  Running setup.py install for setuptools

    Installing easy_install script to /home/marek/tmp/commons/.python/bootstrap/bin
    Installing easy_install-2.7 script to /home/marek/tmp/commons/.python/bootstrap/bin
Successfully installed setuptools
Cleaning up...
Downloading/unpacking python-daemon==1.5.5
  Downloading python-daemon-1.5.5.tar.gz (41kB): 41kB downloaded
  Storing download in cache at ./.pants.d/.pip.cache/https%3A%2F%2Fpypi.python.org%2Fpackages%2Fsource%2Fp%2Fpython-daemon%2Fpython-daemon-1.5.5.tar.gz
  Running setup.py egg_info for package python-daemon

    warning: no files found matching 'TODO'
Requirement already up-to-date: setuptools in ./.python/bootstrap/lib/python2.7/site-packages (from python-daemon==1.5.5)
Downloading/unpacking lockfile>=0.7 (from python-daemon==1.5.5)
  Downloading lockfile-0.9.1.tar.gz
  Storing download in cache at ./.pants.d/.pip.cache/https%3A%2F%2Fpypi.python.org%2Fpackages%2Fsource%2Fl%2Flockfile%2Flockfile-0.9.1.tar.gz
  Running setup.py egg_info for package lockfile

Installing collected packages: python-daemon, lockfile
  Running setup.py install for python-daemon

    warning: no files found matching 'TODO'
  Running setup.py install for lockfile

Successfully installed python-daemon lockfile
Cleaning up...
Failed to install stdout:
running install
running build
running build_py
creating build
creating build/lib
copying pkg_resources.py -> build/lib
copying easy_install.py -> build/lib
creating build/lib/setuptools
copying setuptools/version.py -> build/lib/setuptools
copying setuptools/script template.py -> build/lib/setuptools
copying setuptools/archive_util.py -> build/lib/setuptools
copying setuptools/sandbox.py -> build/lib/setuptools
copying setuptools/svn_utils.py -> build/lib/setuptools
copying setuptools/py26compat.py -> build/lib/setuptools
copying setuptools/extension.py -> build/lib/setuptools
copying setuptools/py31compat.py -> build/lib/setuptools
copying setuptools/site-patch.py -> build/lib/setuptools
copying setuptools/lib2to3_ex.py -> build/lib/setuptools
copying setuptools/__init__.py -> build/lib/setuptools
copying setuptools/depends.py -> build/lib/setuptools
copying setuptools/script template (dev).py -> build/lib/setuptools
copying setuptools/package_index.py -> build/lib/setuptools
copying setuptools/ssl_support.py -> build/lib/setuptools
copying setuptools/compat.py -> build/lib/setuptools
copying setuptools/py27compat.py -> build/lib/setuptools
copying setuptools/dist.py -> build/lib/setuptools
creating build/lib/_markerlib
copying _markerlib/markers.py -> build/lib/_markerlib
copying _markerlib/__init__.py -> build/lib/_markerlib
creating build/lib/setuptools/command
copying setuptools/command/egg_info.py -> build/lib/setuptools/command
copying setuptools/command/alias.py -> build/lib/setuptools/command
copying setuptools/command/install_scripts.py -> build/lib/setuptools/command
copying setuptools/command/easy_install.py -> build/lib/setuptools/command
copying setuptools/command/upload_docs.py -> build/lib/setuptools/command
copying setuptools/command/develop.py -> build/lib/setuptools/command
copying setuptools/command/setopt.py -> build/lib/setuptools/command
copying setuptools/command/sdist.py -> build/lib/setuptools/command
copying setuptools/command/install_lib.py -> build/lib/setuptools/command
copying setuptools/command/rotate.py -> build/lib/setuptools/command
copying setuptools/command/bdist_rpm.py -> build/lib/setuptools/command
copying setuptools/command/test.py -> build/lib/setuptools/command
copying setuptools/command/install.py -> build/lib/setuptools/command
copying setuptools/command/bdist_wininst.py -> build/lib/setuptools/command
copying setuptools/command/build_ext.py -> build/lib/setuptools/command
copying setuptools/command/__init__.py -> build/lib/setuptools/command
copying setuptools/command/bdist_egg.py -> build/lib/setuptools/command
copying setuptools/command/saveopts.py -> build/lib/setuptools/command
copying setuptools/command/build_py.py -> build/lib/setuptools/command
copying setuptools/command/install_egg_info.py -> build/lib/setuptools/command
copying setuptools/command/register.py -> build/lib/setuptools/command
creating build/lib/setuptools/tests
copying setuptools/tests/test_svn.py -> build/lib/setuptools/tests
copying setuptools/tests/test_easy_install.py -> build/lib/setuptools/tests
copying setuptools/tests/test_test.py -> build/lib/setuptools/tests
copying setuptools/tests/test_develop.py -> build/lib/setuptools/tests
copying setuptools/tests/test_resources.py -> build/lib/setuptools/tests
copying setuptools/tests/test_bdist_egg.py -> build/lib/setuptools/tests
copying setuptools/tests/doctest.py -> build/lib/setuptools/tests
copying setuptools/tests/py26compat.py -> build/lib/setuptools/tests
copying setuptools/tests/test_build_ext.py -> build/lib/setuptools/tests
copying setuptools/tests/test_sandbox.py -> build/lib/setuptools/tests
copying setuptools/tests/test_packageindex.py -> build/lib/setuptools/tests
copying setuptools/tests/environment.py -> build/lib/setuptools/tests
copying setuptools/tests/test_upload_docs.py -> build/lib/setuptools/tests
copying setuptools/tests/server.py -> build/lib/setuptools/tests
copying setuptools/tests/__init__.py -> build/lib/setuptools/tests
copying setuptools/tests/test_sdist.py -> build/lib/setuptools/tests
copying setuptools/tests/script-with-bom.py -> build/lib/setuptools/tests
copying setuptools/tests/test_egg_info.py -> build/lib/setuptools/tests
copying setuptools/tests/test_markerlib.py -> build/lib/setuptools/tests
copying setuptools/tests/test_dist_info.py -> build/lib/setuptools/tests
running install_lib
creating /local

Failed to install stderr:
error: could not create '/local': Permission denied

Traceback (most recent call last):
  File "./src/python/twitter/pants/bin/pants_exe.py", line 182, in <module>
    main()
  File "./src/python/twitter/pants/bin/pants_exe.py", line 176, in main
    _run()
  File "./src/python/twitter/pants/bin/pants_exe.py", line 148, in _run
    command = command_class(run_tracker, root_dir, parser, command_args)
  File "/home/marek/tmp/commons/src/python/twitter/pants/commands/build.py", line 59, in __init__
    self.interpreter_cache.setup()
  File "/home/marek/tmp/commons/src/python/twitter/pants/python/interpreter_cache.py", line 134, in setup
    self.setup_paths(setup_paths)
  File "/home/marek/tmp/commons/src/python/twitter/pants/python/interpreter_cache.py", line 114, in setup_paths
    self.setup_interpreter(interpreter)
  File "/home/marek/tmp/commons/src/python/twitter/pants/python/interpreter_cache.py", line 94, in setup_interpreter
    self.setup_distribute(interpreter, interpreter_dir)
  File "/home/marek/tmp/commons/src/python/twitter/pants/python/interpreter_cache.py", line 81, in setup_distribute
    dist = installer.distribution()
  File "/home/marek/tmp/commons/src/python/twitter/common/python/installer.py", line 24, in function_wrapper
    raise Installer.InstallFailure('Failed to install %s' % self._source_dir)
twitter.common.python.installer.InstallFailure: Failed to install /tmp/tmpVxMdsj/setuptools-2.1
Unable to build pants!  Cannot continue!

neutrinus avatar Feb 01 '14 09:02 neutrinus

It looks like a missing symlink to the python config tool is the issue here - its most likely used to determine the distribution install prefix and the result is '/usr' -> '' and thus '/local':

...
Using /home/marek/.virtualenvs/wh-monit/bin/python                                                                                                                                            
Installing virtualenv
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100 1294k  100 1294k    0     0   110k      0  0:00:11  0:00:11 --:--:--  190k
Running virtualenv with interpreter /home/marek/.virtualenvs/wh-monit/bin/python
Using real prefix '/usr'
  Cannot find file /home/marek/.virtualenvs/wh-monit/lib/python2.7/config (bad symlink)
Cannot find file /home/marek/.virtualenvs/wh-monit/lib/python2.7/config (bad symlink)
...

For me:

$ /usr/bin/python-config --prefix
/usr

You might try to repair the symlink, create a new virtualenv or install a new python distribution manually to correct this underlying issue if I've read things right.

jsirois avatar Feb 03 '14 16:02 jsirois

I have created a brand new virtualenv:

> mkvirtualenv test42
> git clone git://github.com/twitter/commons && cd commons
>  ./pants tests/python/twitter pants:all                                                                                                                         
2014-02-04 10:49:32,793 pants:63 - Required pants.ini key DEFAULT.pants_pex_baseurl is not present. Please add the option and try again.    
>  ./pants.bootstrap                                                                                                                                              
Using /home/marek/.virtualenvs/test42/bin/python                                                                                                                                              
Installing virtualenv                                                                                                                                                                         
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current                                                                                                               
                                 Dload  Upload   Total   Spent    Left  Speed                                                                                                                 
100 1294k  100 1294k    0     0   180k      0  0:00:07  0:00:07 --:--:--  355k                                                                                                                
Running virtualenv with interpreter /home/marek/.virtualenvs/test42/bin/python                                                                                                                
Using real prefix '/usr'                                                                                                                                                                      
New python executable in ./build-support/python/../../.python/bootstrap/bin/python                                                                                                            
Installing Setuptools..............................................................................................................................................................................................................................done.                                                                                                                                    
Installing Pip.....................................................................................................................................................................................................................................................................................................................................done.
Making script ./build-support/python/../../.python/bootstrap/bin/easy_install-2.7 relative
Making script ./build-support/python/../../.python/bootstrap/bin/pip relative
Making script ./build-support/python/../../.python/bootstrap/bin/pip-2.7 relative
Script ./build-support/python/../../.python/bootstrap/bin/activate.fish cannot be made relative (it's not a normal script that starts with #!/home/marek/tmp/commons/.python/bootstrap/bin/python)
Script ./build-support/python/../../.python/bootstrap/bin/activate.csh cannot be made relative (it's not a normal script that starts with #!/home/marek/tmp/commons/.python/bootstrap/bin/python)
Making script ./build-support/python/../../.python/bootstrap/bin/easy_install relative
Downloading/unpacking pystache==0.5.3
  Downloading pystache-0.5.3.tar.gz (74kB): 74kB downloaded
  Storing download in cache at ./.pants.d/.pip.cache/https%3A%2F%2Fpypi.python.org%2Fpackages%2Fsource%2Fp%2Fpystache%2Fpystache-0.5.3.tar.gz
  Running setup.py egg_info for package pystache
    pystache: using: version '0.9.8' of <module 'setuptools' from '/home/marek/tmp/commons/.python/bootstrap/local/lib/python2.7/site-packages/setuptools/__init__.pyc'>

Installing collected packages: pystache
  Running setup.py install for pystache
    pystache: using: version '0.9.8' of <module 'setuptools' from '/home/marek/tmp/commons/.python/bootstrap/local/lib/python2.7/site-packages/setuptools/__init__.pyc'>

    Installing pystache script to /home/marek/tmp/commons/.python/bootstrap/bin
    Installing pystache-test script to /home/marek/tmp/commons/.python/bootstrap/bin
Successfully installed pystache
Cleaning up...
Downloading/unpacking setuptools==2.1
  Downloading setuptools-2.1.tar.gz (784kB): 784kB downloaded
  Storing download in cache at ./.pants.d/.pip.cache/https%3A%2F%2Fpypi.python.org%2Fpackages%2Fsource%2Fs%2Fsetuptools%2Fsetuptools-2.1.tar.gz
  Running setup.py egg_info for package setuptools

Installing collected packages: setuptools
  Found existing installation: setuptools 0.9.8
    Uninstalling setuptools:
      Successfully uninstalled setuptools
  Running setup.py install for setuptools

    Installing easy_install script to /home/marek/tmp/commons/.python/bootstrap/bin
    Installing easy_install-2.7 script to /home/marek/tmp/commons/.python/bootstrap/bin
Successfully installed setuptools
Cleaning up...
Downloading/unpacking python-daemon==1.5.5
  Downloading python-daemon-1.5.5.tar.gz (41kB): 41kB downloaded
  Storing download in cache at ./.pants.d/.pip.cache/https%3A%2F%2Fpypi.python.org%2Fpackages%2Fsource%2Fp%2Fpython-daemon%2Fpython-daemon-1.5.5.tar.gz
  Running setup.py egg_info for package python-daemon

    warning: no files found matching 'TODO'
Requirement already up-to-date: setuptools in ./.python/bootstrap/lib/python2.7/site-packages (from python-daemon==1.5.5)
Downloading/unpacking lockfile>=0.7 (from python-daemon==1.5.5)
  Downloading lockfile-0.9.1.tar.gz
  Storing download in cache at ./.pants.d/.pip.cache/https%3A%2F%2Fpypi.python.org%2Fpackages%2Fsource%2Fl%2Flockfile%2Flockfile-0.9.1.tar.gz
  Running setup.py egg_info for package lockfile

Installing collected packages: python-daemon, lockfile
  Running setup.py install for python-daemon

    warning: no files found matching 'TODO'
  Running setup.py install for lockfile

Successfully installed python-daemon lockfile
Cleaning up...
Failed to install stdout:
running install
running build
running build_py
creating build
creating build/lib
copying pkg_resources.py -> build/lib
copying easy_install.py -> build/lib
creating build/lib/setuptools
copying setuptools/version.py -> build/lib/setuptools
copying setuptools/script template.py -> build/lib/setuptools
copying setuptools/archive_util.py -> build/lib/setuptools
copying setuptools/sandbox.py -> build/lib/setuptools
copying setuptools/svn_utils.py -> build/lib/setuptools
copying setuptools/py26compat.py -> build/lib/setuptools
copying setuptools/extension.py -> build/lib/setuptools
copying setuptools/py31compat.py -> build/lib/setuptools
copying setuptools/site-patch.py -> build/lib/setuptools
copying setuptools/lib2to3_ex.py -> build/lib/setuptools
copying setuptools/__init__.py -> build/lib/setuptools
copying setuptools/depends.py -> build/lib/setuptools
copying setuptools/script template (dev).py -> build/lib/setuptools
copying setuptools/package_index.py -> build/lib/setuptools
copying setuptools/ssl_support.py -> build/lib/setuptools
copying setuptools/compat.py -> build/lib/setuptools
copying setuptools/py27compat.py -> build/lib/setuptools
copying setuptools/dist.py -> build/lib/setuptools
creating build/lib/_markerlib
copying _markerlib/markers.py -> build/lib/_markerlib
copying _markerlib/__init__.py -> build/lib/_markerlib
creating build/lib/setuptools/command
copying setuptools/command/egg_info.py -> build/lib/setuptools/command
copying setuptools/command/alias.py -> build/lib/setuptools/command
copying setuptools/command/install_scripts.py -> build/lib/setuptools/command
copying setuptools/command/easy_install.py -> build/lib/setuptools/command
copying setuptools/command/upload_docs.py -> build/lib/setuptools/command
copying setuptools/command/develop.py -> build/lib/setuptools/command
copying setuptools/command/setopt.py -> build/lib/setuptools/command
copying setuptools/command/sdist.py -> build/lib/setuptools/command
copying setuptools/command/install_lib.py -> build/lib/setuptools/command
copying setuptools/command/rotate.py -> build/lib/setuptools/command
copying setuptools/command/bdist_rpm.py -> build/lib/setuptools/command
copying setuptools/command/test.py -> build/lib/setuptools/command
copying setuptools/command/install.py -> build/lib/setuptools/command
copying setuptools/command/bdist_wininst.py -> build/lib/setuptools/command
copying setuptools/command/build_ext.py -> build/lib/setuptools/command
copying setuptools/command/__init__.py -> build/lib/setuptools/command
copying setuptools/command/bdist_egg.py -> build/lib/setuptools/command
copying setuptools/command/saveopts.py -> build/lib/setuptools/command
copying setuptools/command/build_py.py -> build/lib/setuptools/command
copying setuptools/command/install_egg_info.py -> build/lib/setuptools/command
copying setuptools/command/register.py -> build/lib/setuptools/command
creating build/lib/setuptools/tests
copying setuptools/tests/test_svn.py -> build/lib/setuptools/tests
copying setuptools/tests/test_easy_install.py -> build/lib/setuptools/tests
copying setuptools/tests/test_test.py -> build/lib/setuptools/tests
copying setuptools/tests/test_develop.py -> build/lib/setuptools/tests
copying setuptools/tests/test_resources.py -> build/lib/setuptools/tests
copying setuptools/tests/test_bdist_egg.py -> build/lib/setuptools/tests
copying setuptools/tests/doctest.py -> build/lib/setuptools/tests
copying setuptools/tests/py26compat.py -> build/lib/setuptools/tests
copying setuptools/tests/test_build_ext.py -> build/lib/setuptools/tests
copying setuptools/tests/test_sandbox.py -> build/lib/setuptools/tests
copying setuptools/tests/test_packageindex.py -> build/lib/setuptools/tests
copying setuptools/tests/environment.py -> build/lib/setuptools/tests
copying setuptools/tests/test_upload_docs.py -> build/lib/setuptools/tests
copying setuptools/tests/server.py -> build/lib/setuptools/tests
copying setuptools/tests/__init__.py -> build/lib/setuptools/tests
copying setuptools/tests/test_sdist.py -> build/lib/setuptools/tests
copying setuptools/tests/script-with-bom.py -> build/lib/setuptools/tests
copying setuptools/tests/test_egg_info.py -> build/lib/setuptools/tests
copying setuptools/tests/test_markerlib.py -> build/lib/setuptools/tests
copying setuptools/tests/test_dist_info.py -> build/lib/setuptools/tests
running install_lib
creating /local

Failed to install stderr:
error: could not create '/local': Permission denied

Traceback (most recent call last):
  File "./src/python/twitter/pants/bin/pants_exe.py", line 182, in <module>
    main()
  File "./src/python/twitter/pants/bin/pants_exe.py", line 176, in main
    _run()
  File "./src/python/twitter/pants/bin/pants_exe.py", line 148, in _run
    command = command_class(run_tracker, root_dir, parser, command_args)
  File "/home/marek/tmp/commons/src/python/twitter/pants/commands/build.py", line 59, in __init__
    self.interpreter_cache.setup()
  File "/home/marek/tmp/commons/src/python/twitter/pants/python/interpreter_cache.py", line 134, in setup
    self.setup_paths(setup_paths)
  File "/home/marek/tmp/commons/src/python/twitter/pants/python/interpreter_cache.py", line 114, in setup_paths
    self.setup_interpreter(interpreter)
  File "/home/marek/tmp/commons/src/python/twitter/pants/python/interpreter_cache.py", line 94, in setup_interpreter
    self.setup_distribute(interpreter, interpreter_dir)
  File "/home/marek/tmp/commons/src/python/twitter/pants/python/interpreter_cache.py", line 81, in setup_distribute
    dist = installer.distribution()
  File "/home/marek/tmp/commons/src/python/twitter/common/python/installer.py", line 24, in function_wrapper
    raise Installer.InstallFailure('Failed to install %s' % self._source_dir)
twitter.common.python.installer.InstallFailure: Failed to install /tmp/tmpqCg0r6/setuptools-2.1
Unable to build pants!  Cannot continue!
mstation:marek:~/tmp/commons> /usr/bin/python-config --prefix
/usr
2014-02-04 10:54:56 /usr/bin/python-config --prefix
(test42)2014-02-04 10:54:56
mstation:marek:~/tmp/commons> 
mstation:marek:~/tmp/commons> python --version
Python 2.7.6
2014-02-04 10:56:47 python --version

I'm afraid it didn't help. What else could I do?

neutrinus avatar Feb 04 '14 09:02 neutrinus

Lets try taking pants out of the picture. Its doing the following - please try this and report back your results:

$ virtualenv /tmp/issues204
New python executable in /tmp/issues204/bin/python2.7
Also creating executable in /tmp/issues204/bin/python
Installing setuptools, pip...done.
$ source /tmp/issues204/bin/activate
(issues204)$ wget https://pypi.python.org/packages/source/s/setuptools/setuptools-2.1.tar.gz#md5=2044725530450d0517393882dc4b7508
--2014-02-04 07:02:27--  https://pypi.python.org/packages/source/s/setuptools/setuptools-2.1.tar.gz
Resolving pypi.python.org (pypi.python.org)... 199.27.76.184, 199.27.78.184
Connecting to pypi.python.org (pypi.python.org)|199.27.76.184|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 784576 (766K) [application/octet-stream]
Saving to: ‘setuptools-2.1.tar.gz’

100%[========================================================================================================================================================================================================================================>] 784,576      192KB/s   in 4.3s   

2014-02-04 07:02:32 (180 KB/s) - ‘setuptools-2.1.tar.gz’ saved [784576/784576]

(issues204)$ md5sum setuptools-2.1.tar.gz 
2044725530450d0517393882dc4b7508  setuptools-2.1.tar.gz
(issues204)$ tar -xzf setuptools-2.1.tar.gz 
(issues204)$ cd setuptools-2.1/
(issues204)$ mktemp -d
/tmp/tmp.e505x6svZx
(issues204)$ python setup.py install --root=/tmp/tmp.e505x6svZx --prefix= --single-version-externally-managed --record /tmp/install.log
running install
running build
running build_py
creating build
creating build/lib.linux-x86_64-2.7
copying pkg_resources.py -> build/lib.linux-x86_64-2.7
copying easy_install.py -> build/lib.linux-x86_64-2.7
creating build/lib.linux-x86_64-2.7/_markerlib
copying _markerlib/markers.py -> build/lib.linux-x86_64-2.7/_markerlib
copying _markerlib/__init__.py -> build/lib.linux-x86_64-2.7/_markerlib
creating build/lib.linux-x86_64-2.7/setuptools
copying setuptools/py31compat.py -> build/lib.linux-x86_64-2.7/setuptools
copying setuptools/py26compat.py -> build/lib.linux-x86_64-2.7/setuptools
copying setuptools/package_index.py -> build/lib.linux-x86_64-2.7/setuptools
copying setuptools/site-patch.py -> build/lib.linux-x86_64-2.7/setuptools
copying setuptools/archive_util.py -> build/lib.linux-x86_64-2.7/setuptools
copying setuptools/dist.py -> build/lib.linux-x86_64-2.7/setuptools
copying setuptools/py27compat.py -> build/lib.linux-x86_64-2.7/setuptools
copying setuptools/sandbox.py -> build/lib.linux-x86_64-2.7/setuptools
copying setuptools/ssl_support.py -> build/lib.linux-x86_64-2.7/setuptools
copying setuptools/script template (dev).py -> build/lib.linux-x86_64-2.7/setuptools
copying setuptools/svn_utils.py -> build/lib.linux-x86_64-2.7/setuptools
copying setuptools/extension.py -> build/lib.linux-x86_64-2.7/setuptools
copying setuptools/__init__.py -> build/lib.linux-x86_64-2.7/setuptools
copying setuptools/version.py -> build/lib.linux-x86_64-2.7/setuptools
copying setuptools/script template.py -> build/lib.linux-x86_64-2.7/setuptools
copying setuptools/compat.py -> build/lib.linux-x86_64-2.7/setuptools
copying setuptools/depends.py -> build/lib.linux-x86_64-2.7/setuptools
copying setuptools/lib2to3_ex.py -> build/lib.linux-x86_64-2.7/setuptools
creating build/lib.linux-x86_64-2.7/setuptools/tests
copying setuptools/tests/test_svn.py -> build/lib.linux-x86_64-2.7/setuptools/tests
copying setuptools/tests/test_packageindex.py -> build/lib.linux-x86_64-2.7/setuptools/tests
copying setuptools/tests/test_upload_docs.py -> build/lib.linux-x86_64-2.7/setuptools/tests
copying setuptools/tests/test_build_ext.py -> build/lib.linux-x86_64-2.7/setuptools/tests
copying setuptools/tests/py26compat.py -> build/lib.linux-x86_64-2.7/setuptools/tests
copying setuptools/tests/environment.py -> build/lib.linux-x86_64-2.7/setuptools/tests
copying setuptools/tests/test_resources.py -> build/lib.linux-x86_64-2.7/setuptools/tests
copying setuptools/tests/test_bdist_egg.py -> build/lib.linux-x86_64-2.7/setuptools/tests
copying setuptools/tests/test_test.py -> build/lib.linux-x86_64-2.7/setuptools/tests
copying setuptools/tests/test_sandbox.py -> build/lib.linux-x86_64-2.7/setuptools/tests
copying setuptools/tests/test_develop.py -> build/lib.linux-x86_64-2.7/setuptools/tests
copying setuptools/tests/test_easy_install.py -> build/lib.linux-x86_64-2.7/setuptools/tests
copying setuptools/tests/test_egg_info.py -> build/lib.linux-x86_64-2.7/setuptools/tests
copying setuptools/tests/test_sdist.py -> build/lib.linux-x86_64-2.7/setuptools/tests
copying setuptools/tests/__init__.py -> build/lib.linux-x86_64-2.7/setuptools/tests
copying setuptools/tests/server.py -> build/lib.linux-x86_64-2.7/setuptools/tests
copying setuptools/tests/doctest.py -> build/lib.linux-x86_64-2.7/setuptools/tests
copying setuptools/tests/test_markerlib.py -> build/lib.linux-x86_64-2.7/setuptools/tests
copying setuptools/tests/test_dist_info.py -> build/lib.linux-x86_64-2.7/setuptools/tests
copying setuptools/tests/script-with-bom.py -> build/lib.linux-x86_64-2.7/setuptools/tests
creating build/lib.linux-x86_64-2.7/setuptools/command
copying setuptools/command/bdist_wininst.py -> build/lib.linux-x86_64-2.7/setuptools/command
copying setuptools/command/test.py -> build/lib.linux-x86_64-2.7/setuptools/command
copying setuptools/command/upload_docs.py -> build/lib.linux-x86_64-2.7/setuptools/command
copying setuptools/command/build_ext.py -> build/lib.linux-x86_64-2.7/setuptools/command
copying setuptools/command/install.py -> build/lib.linux-x86_64-2.7/setuptools/command
copying setuptools/command/develop.py -> build/lib.linux-x86_64-2.7/setuptools/command
copying setuptools/command/alias.py -> build/lib.linux-x86_64-2.7/setuptools/command
copying setuptools/command/egg_info.py -> build/lib.linux-x86_64-2.7/setuptools/command
copying setuptools/command/build_py.py -> build/lib.linux-x86_64-2.7/setuptools/command
copying setuptools/command/install_egg_info.py -> build/lib.linux-x86_64-2.7/setuptools/command
copying setuptools/command/sdist.py -> build/lib.linux-x86_64-2.7/setuptools/command
copying setuptools/command/rotate.py -> build/lib.linux-x86_64-2.7/setuptools/command
copying setuptools/command/bdist_egg.py -> build/lib.linux-x86_64-2.7/setuptools/command
copying setuptools/command/bdist_rpm.py -> build/lib.linux-x86_64-2.7/setuptools/command
copying setuptools/command/easy_install.py -> build/lib.linux-x86_64-2.7/setuptools/command
copying setuptools/command/__init__.py -> build/lib.linux-x86_64-2.7/setuptools/command
copying setuptools/command/install_scripts.py -> build/lib.linux-x86_64-2.7/setuptools/command
copying setuptools/command/install_lib.py -> build/lib.linux-x86_64-2.7/setuptools/command
copying setuptools/command/setopt.py -> build/lib.linux-x86_64-2.7/setuptools/command
copying setuptools/command/register.py -> build/lib.linux-x86_64-2.7/setuptools/command
copying setuptools/command/saveopts.py -> build/lib.linux-x86_64-2.7/setuptools/command
running install_lib
creating /tmp/tmp.e505x6svZx/lib
creating /tmp/tmp.e505x6svZx/lib/python2.7
creating /tmp/tmp.e505x6svZx/lib/python2.7/site-packages
copying build/lib.linux-x86_64-2.7/easy_install.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages
copying build/lib.linux-x86_64-2.7/pkg_resources.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages
creating /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/_markerlib
copying build/lib.linux-x86_64-2.7/_markerlib/markers.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/_markerlib
copying build/lib.linux-x86_64-2.7/_markerlib/__init__.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/_markerlib
creating /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools
copying build/lib.linux-x86_64-2.7/setuptools/py31compat.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools
copying build/lib.linux-x86_64-2.7/setuptools/py26compat.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools
copying build/lib.linux-x86_64-2.7/setuptools/package_index.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools
copying build/lib.linux-x86_64-2.7/setuptools/site-patch.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools
creating /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests
copying build/lib.linux-x86_64-2.7/setuptools/tests/test_svn.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests
copying build/lib.linux-x86_64-2.7/setuptools/tests/test_packageindex.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests
copying build/lib.linux-x86_64-2.7/setuptools/tests/test_upload_docs.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests
copying build/lib.linux-x86_64-2.7/setuptools/tests/test_build_ext.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests
copying build/lib.linux-x86_64-2.7/setuptools/tests/py26compat.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests
copying build/lib.linux-x86_64-2.7/setuptools/tests/environment.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests
copying build/lib.linux-x86_64-2.7/setuptools/tests/test_resources.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests
copying build/lib.linux-x86_64-2.7/setuptools/tests/test_bdist_egg.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests
copying build/lib.linux-x86_64-2.7/setuptools/tests/test_test.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests
copying build/lib.linux-x86_64-2.7/setuptools/tests/test_sandbox.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests
copying build/lib.linux-x86_64-2.7/setuptools/tests/test_develop.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests
copying build/lib.linux-x86_64-2.7/setuptools/tests/test_easy_install.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests
copying build/lib.linux-x86_64-2.7/setuptools/tests/test_egg_info.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests
copying build/lib.linux-x86_64-2.7/setuptools/tests/test_sdist.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests
copying build/lib.linux-x86_64-2.7/setuptools/tests/__init__.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests
copying build/lib.linux-x86_64-2.7/setuptools/tests/server.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests
copying build/lib.linux-x86_64-2.7/setuptools/tests/doctest.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests
copying build/lib.linux-x86_64-2.7/setuptools/tests/test_markerlib.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests
copying build/lib.linux-x86_64-2.7/setuptools/tests/test_dist_info.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests
copying build/lib.linux-x86_64-2.7/setuptools/tests/script-with-bom.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests
copying build/lib.linux-x86_64-2.7/setuptools/archive_util.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools
copying build/lib.linux-x86_64-2.7/setuptools/dist.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools
copying build/lib.linux-x86_64-2.7/setuptools/py27compat.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools
copying build/lib.linux-x86_64-2.7/setuptools/sandbox.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools
copying build/lib.linux-x86_64-2.7/setuptools/ssl_support.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools
creating /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command
copying build/lib.linux-x86_64-2.7/setuptools/command/bdist_wininst.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command
copying build/lib.linux-x86_64-2.7/setuptools/command/test.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command
copying build/lib.linux-x86_64-2.7/setuptools/command/upload_docs.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command
copying build/lib.linux-x86_64-2.7/setuptools/command/build_ext.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command
copying build/lib.linux-x86_64-2.7/setuptools/command/install.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command
copying build/lib.linux-x86_64-2.7/setuptools/command/develop.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command
copying build/lib.linux-x86_64-2.7/setuptools/command/alias.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command
copying build/lib.linux-x86_64-2.7/setuptools/command/egg_info.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command
copying build/lib.linux-x86_64-2.7/setuptools/command/build_py.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command
copying build/lib.linux-x86_64-2.7/setuptools/command/install_egg_info.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command
copying build/lib.linux-x86_64-2.7/setuptools/command/sdist.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command
copying build/lib.linux-x86_64-2.7/setuptools/command/rotate.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command
copying build/lib.linux-x86_64-2.7/setuptools/command/bdist_egg.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command
copying build/lib.linux-x86_64-2.7/setuptools/command/bdist_rpm.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command
copying build/lib.linux-x86_64-2.7/setuptools/command/easy_install.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command
copying build/lib.linux-x86_64-2.7/setuptools/command/__init__.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command
copying build/lib.linux-x86_64-2.7/setuptools/command/install_scripts.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command
copying build/lib.linux-x86_64-2.7/setuptools/command/install_lib.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command
copying build/lib.linux-x86_64-2.7/setuptools/command/setopt.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command
copying build/lib.linux-x86_64-2.7/setuptools/command/register.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command
copying build/lib.linux-x86_64-2.7/setuptools/command/saveopts.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command
copying build/lib.linux-x86_64-2.7/setuptools/script template (dev).py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools
copying build/lib.linux-x86_64-2.7/setuptools/svn_utils.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools
copying build/lib.linux-x86_64-2.7/setuptools/extension.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools
copying build/lib.linux-x86_64-2.7/setuptools/__init__.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools
copying build/lib.linux-x86_64-2.7/setuptools/version.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools
copying build/lib.linux-x86_64-2.7/setuptools/script template.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools
copying build/lib.linux-x86_64-2.7/setuptools/compat.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools
copying build/lib.linux-x86_64-2.7/setuptools/depends.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools
copying build/lib.linux-x86_64-2.7/setuptools/lib2to3_ex.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/easy_install.py to easy_install.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/pkg_resources.py to pkg_resources.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/_markerlib/markers.py to markers.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/_markerlib/__init__.py to __init__.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/py31compat.py to py31compat.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/py26compat.py to py26compat.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/package_index.py to package_index.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/site-patch.py to site-patch.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests/test_svn.py to test_svn.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests/test_packageindex.py to test_packageindex.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests/test_upload_docs.py to test_upload_docs.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests/test_build_ext.py to test_build_ext.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests/py26compat.py to py26compat.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests/environment.py to environment.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests/test_resources.py to test_resources.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests/test_bdist_egg.py to test_bdist_egg.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests/test_test.py to test_test.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests/test_sandbox.py to test_sandbox.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests/test_develop.py to test_develop.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests/test_easy_install.py to test_easy_install.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests/test_egg_info.py to test_egg_info.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests/test_sdist.py to test_sdist.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests/__init__.py to __init__.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests/server.py to server.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests/doctest.py to doctest.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests/test_markerlib.py to test_markerlib.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests/test_dist_info.py to test_dist_info.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests/script-with-bom.py to script-with-bom.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/archive_util.py to archive_util.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/dist.py to dist.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/py27compat.py to py27compat.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/sandbox.py to sandbox.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/ssl_support.py to ssl_support.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command/bdist_wininst.py to bdist_wininst.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command/test.py to test.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command/upload_docs.py to upload_docs.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command/build_ext.py to build_ext.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command/install.py to install.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command/develop.py to develop.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command/alias.py to alias.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command/egg_info.py to egg_info.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command/build_py.py to build_py.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command/install_egg_info.py to install_egg_info.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command/sdist.py to sdist.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command/rotate.py to rotate.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command/bdist_egg.py to bdist_egg.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command/bdist_rpm.py to bdist_rpm.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command/easy_install.py to easy_install.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command/__init__.py to __init__.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command/install_scripts.py to install_scripts.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command/install_lib.py to install_lib.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command/setopt.py to setopt.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command/register.py to register.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command/saveopts.py to saveopts.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/script template (dev).py to script template (dev).pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/svn_utils.py to svn_utils.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/extension.py to extension.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/__init__.py to __init__.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/version.py to version.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/script template.py to script template.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/compat.py to compat.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/depends.py to depends.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/lib2to3_ex.py to lib2to3_ex.pyc
running install_egg_info
running egg_info
writing requirements to setuptools.egg-info/requires.txt
writing setuptools.egg-info/PKG-INFO
writing top-level names to setuptools.egg-info/top_level.txt
writing dependency_links to setuptools.egg-info/dependency_links.txt
writing entry points to setuptools.egg-info/entry_points.txt
reading manifest file 'setuptools.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
writing manifest file 'setuptools.egg-info/SOURCES.txt'
Copying setuptools.egg-info to /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools-2.1-py2.7.egg-info
running install_scripts
Installing easy_install script to /tmp/tmp.e505x6svZx/bin
Installing easy_install-2.7 script to /tmp/tmp.e505x6svZx/bin
writing list of installed files to '/tmp/install.log'
(issues204)$

jsirois avatar Feb 04 '14 14:02 jsirois

For me it looks the same:

mstation:marek:~/tmp/commons> virtualenv /tmp/issues204
New python executable in /tmp/issues204/bin/python
Installing setuptools, pip...done.
2014-02-17 11:04:25 virtualenv /tmp/issues204
mstation:marek:~/tmp/commons> source /tmp/issues204/bin/activate
2014-02-17 11:04:54 source /tmp/issues204/bin/activate
(issues204)2014-02-17 11:04:54
mstation:marek:~/tmp/commons> wget https://pypi.python.org/packages/source/s/setuptools/setuptools-2.1.tar.gz#md5=2044725530450d0517393882dc4b7508
--2014-02-17 11:05:07--  https://pypi.python.org/packages/source/s/setuptools/setuptools-2.1.tar.gz
Translacja pypi.python.org (pypi.python.org)... 185.31.17.184, 185.31.17.185
Łączenie się z pypi.python.org (pypi.python.org)|185.31.17.184|:443... połączono.
Żądanie HTTP wysłano, oczekiwanie na odpowiedź... 200 OK
Długość: 784576 (766K) [application/octet-stream]
Zapis do: `setuptools-2.1.tar.gz'

100%[====================================================================================================================================================>] 784.576      970KB/s   w  0,8s   

2014-02-17 11:05:13 (970 KB/s) - zapisano `setuptools-2.1.tar.gz' [784576/784576]

2014-02-17 11:05:14 wget https://pypi.python.org/packages/source/s/setuptools/setuptools-2.1.tar.gz#md5=2044725530450d0517393882dc4b7508
(issues204)2014-02-17 11:05:14
mstation:marek:~/tmp/commons> 
(issues204)2014-02-17 11:05:18
mstation:marek:~/tmp/commons> md5sum setuptools-2.1.tar.gz 
2044725530450d0517393882dc4b7508  setuptools-2.1.tar.gz
2014-02-17 11:05:23 md5sum setuptools-2.1.tar.gz
(issues204)2014-02-17 11:05:23
mstation:marek:~/tmp/commons> tar -xzf setuptools-2.1.tar.gz
2014-02-17 11:05:31 tar -xzf setuptools-2.1.tar.gz                                                                                                                                            
(issues204)2014-02-17 11:05:31                                                                                                                                                                
mstation:marek:~/tmp/commons> cd setuptools-2.1/                                                                                                                                              
2014-02-17 11:05:37 cd setuptools-2.1/                                                                                                                                                        
(issues204)2014-02-17 11:05:37                                                                                                                                                                
mstation:marek:~/tmp/commons/setuptools-2.1> mktemp -d                                                                                                                                        
/tmp/tmp.4ld3jTbr47                                                                                                                                                                           
2014-02-17 11:05:43 mktemp -d                                                                                                                                                                 
(issues204)2014-02-17 11:05:43                                                                                                                                                                
mstation:marek:~/tmp/commons/setuptools-2.1> python setup.py install --root=/tmp/tmp.e505x6svZx --prefix= --single-version-externally-managed --record /tmp/install.log                       
running install                                                                                                                                                                               
running build                                                                                                                                                                                 
running build_py                                                                                                                                                                              
creating build
creating build/lib.linux-x86_64-2.7
copying pkg_resources.py -> build/lib.linux-x86_64-2.7
copying easy_install.py -> build/lib.linux-x86_64-2.7
creating build/lib.linux-x86_64-2.7/_markerlib
copying _markerlib/__init__.py -> build/lib.linux-x86_64-2.7/_markerlib
copying _markerlib/markers.py -> build/lib.linux-x86_64-2.7/_markerlib
creating build/lib.linux-x86_64-2.7/setuptools
copying setuptools/__init__.py -> build/lib.linux-x86_64-2.7/setuptools
copying setuptools/script template (dev).py -> build/lib.linux-x86_64-2.7/setuptools
copying setuptools/depends.py -> build/lib.linux-x86_64-2.7/setuptools
copying setuptools/version.py -> build/lib.linux-x86_64-2.7/setuptools
copying setuptools/dist.py -> build/lib.linux-x86_64-2.7/setuptools
copying setuptools/archive_util.py -> build/lib.linux-x86_64-2.7/setuptools
copying setuptools/extension.py -> build/lib.linux-x86_64-2.7/setuptools
copying setuptools/package_index.py -> build/lib.linux-x86_64-2.7/setuptools
copying setuptools/py26compat.py -> build/lib.linux-x86_64-2.7/setuptools
copying setuptools/py31compat.py -> build/lib.linux-x86_64-2.7/setuptools
copying setuptools/site-patch.py -> build/lib.linux-x86_64-2.7/setuptools
copying setuptools/lib2to3_ex.py -> build/lib.linux-x86_64-2.7/setuptools
copying setuptools/script template.py -> build/lib.linux-x86_64-2.7/setuptools
copying setuptools/svn_utils.py -> build/lib.linux-x86_64-2.7/setuptools
copying setuptools/sandbox.py -> build/lib.linux-x86_64-2.7/setuptools
copying setuptools/ssl_support.py -> build/lib.linux-x86_64-2.7/setuptools
copying setuptools/compat.py -> build/lib.linux-x86_64-2.7/setuptools
copying setuptools/py27compat.py -> build/lib.linux-x86_64-2.7/setuptools
creating build/lib.linux-x86_64-2.7/setuptools/tests
copying setuptools/tests/__init__.py -> build/lib.linux-x86_64-2.7/setuptools/tests
copying setuptools/tests/test_upload_docs.py -> build/lib.linux-x86_64-2.7/setuptools/tests
copying setuptools/tests/test_egg_info.py -> build/lib.linux-x86_64-2.7/setuptools/tests
copying setuptools/tests/test_dist_info.py -> build/lib.linux-x86_64-2.7/setuptools/tests
copying setuptools/tests/test_develop.py -> build/lib.linux-x86_64-2.7/setuptools/tests
copying setuptools/tests/test_packageindex.py -> build/lib.linux-x86_64-2.7/setuptools/tests
copying setuptools/tests/test_resources.py -> build/lib.linux-x86_64-2.7/setuptools/tests
copying setuptools/tests/server.py -> build/lib.linux-x86_64-2.7/setuptools/tests
copying setuptools/tests/test_markerlib.py -> build/lib.linux-x86_64-2.7/setuptools/tests
copying setuptools/tests/py26compat.py -> build/lib.linux-x86_64-2.7/setuptools/tests
copying setuptools/tests/test_svn.py -> build/lib.linux-x86_64-2.7/setuptools/tests
copying setuptools/tests/test_sandbox.py -> build/lib.linux-x86_64-2.7/setuptools/tests
copying setuptools/tests/script-with-bom.py -> build/lib.linux-x86_64-2.7/setuptools/tests
copying setuptools/tests/doctest.py -> build/lib.linux-x86_64-2.7/setuptools/tests
copying setuptools/tests/environment.py -> build/lib.linux-x86_64-2.7/setuptools/tests
copying setuptools/tests/test_easy_install.py -> build/lib.linux-x86_64-2.7/setuptools/tests
copying setuptools/tests/test_test.py -> build/lib.linux-x86_64-2.7/setuptools/tests
copying setuptools/tests/test_bdist_egg.py -> build/lib.linux-x86_64-2.7/setuptools/tests
copying setuptools/tests/test_build_ext.py -> build/lib.linux-x86_64-2.7/setuptools/tests
copying setuptools/tests/test_sdist.py -> build/lib.linux-x86_64-2.7/setuptools/tests
creating build/lib.linux-x86_64-2.7/setuptools/command
copying setuptools/command/upload_docs.py -> build/lib.linux-x86_64-2.7/setuptools/command
copying setuptools/command/__init__.py -> build/lib.linux-x86_64-2.7/setuptools/command
copying setuptools/command/test.py -> build/lib.linux-x86_64-2.7/setuptools/command
copying setuptools/command/install_egg_info.py -> build/lib.linux-x86_64-2.7/setuptools/command
copying setuptools/command/alias.py -> build/lib.linux-x86_64-2.7/setuptools/command
copying setuptools/command/install_lib.py -> build/lib.linux-x86_64-2.7/setuptools/command
copying setuptools/command/setopt.py -> build/lib.linux-x86_64-2.7/setuptools/command
copying setuptools/command/register.py -> build/lib.linux-x86_64-2.7/setuptools/command
copying setuptools/command/build_ext.py -> build/lib.linux-x86_64-2.7/setuptools/command
copying setuptools/command/egg_info.py -> build/lib.linux-x86_64-2.7/setuptools/command
copying setuptools/command/bdist_egg.py -> build/lib.linux-x86_64-2.7/setuptools/command
copying setuptools/command/develop.py -> build/lib.linux-x86_64-2.7/setuptools/command
copying setuptools/command/build_py.py -> build/lib.linux-x86_64-2.7/setuptools/command
copying setuptools/command/sdist.py -> build/lib.linux-x86_64-2.7/setuptools/command
copying setuptools/command/bdist_rpm.py -> build/lib.linux-x86_64-2.7/setuptools/command
copying setuptools/command/easy_install.py -> build/lib.linux-x86_64-2.7/setuptools/command
copying setuptools/command/install.py -> build/lib.linux-x86_64-2.7/setuptools/command
copying setuptools/command/bdist_wininst.py -> build/lib.linux-x86_64-2.7/setuptools/command
copying setuptools/command/install_scripts.py -> build/lib.linux-x86_64-2.7/setuptools/command
copying setuptools/command/rotate.py -> build/lib.linux-x86_64-2.7/setuptools/command
copying setuptools/command/saveopts.py -> build/lib.linux-x86_64-2.7/setuptools/command
running install_lib
creating /tmp/tmp.e505x6svZx
creating /tmp/tmp.e505x6svZx/lib
creating /tmp/tmp.e505x6svZx/lib/python2.7
creating /tmp/tmp.e505x6svZx/lib/python2.7/site-packages
creating /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/_markerlib
copying build/lib.linux-x86_64-2.7/_markerlib/__init__.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/_markerlib
copying build/lib.linux-x86_64-2.7/_markerlib/markers.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/_markerlib
copying build/lib.linux-x86_64-2.7/pkg_resources.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages
copying build/lib.linux-x86_64-2.7/easy_install.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages
creating /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools
copying build/lib.linux-x86_64-2.7/setuptools/__init__.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools
copying build/lib.linux-x86_64-2.7/setuptools/script template (dev).py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools
copying build/lib.linux-x86_64-2.7/setuptools/depends.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools
copying build/lib.linux-x86_64-2.7/setuptools/version.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools
copying build/lib.linux-x86_64-2.7/setuptools/dist.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools
creating /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests
copying build/lib.linux-x86_64-2.7/setuptools/tests/__init__.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests
copying build/lib.linux-x86_64-2.7/setuptools/tests/test_upload_docs.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests
copying build/lib.linux-x86_64-2.7/setuptools/tests/test_egg_info.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests
copying build/lib.linux-x86_64-2.7/setuptools/tests/test_dist_info.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests
copying build/lib.linux-x86_64-2.7/setuptools/tests/test_develop.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests
copying build/lib.linux-x86_64-2.7/setuptools/tests/test_packageindex.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests
copying build/lib.linux-x86_64-2.7/setuptools/tests/test_resources.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests
copying build/lib.linux-x86_64-2.7/setuptools/tests/server.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests
copying build/lib.linux-x86_64-2.7/setuptools/tests/test_markerlib.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests
copying build/lib.linux-x86_64-2.7/setuptools/tests/py26compat.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests
copying build/lib.linux-x86_64-2.7/setuptools/tests/test_svn.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests
copying build/lib.linux-x86_64-2.7/setuptools/tests/test_sandbox.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests
copying build/lib.linux-x86_64-2.7/setuptools/tests/script-with-bom.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests
copying build/lib.linux-x86_64-2.7/setuptools/tests/doctest.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests
copying build/lib.linux-x86_64-2.7/setuptools/tests/environment.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests
copying build/lib.linux-x86_64-2.7/setuptools/tests/test_easy_install.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests
copying build/lib.linux-x86_64-2.7/setuptools/tests/test_test.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests
copying build/lib.linux-x86_64-2.7/setuptools/tests/test_bdist_egg.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests
copying build/lib.linux-x86_64-2.7/setuptools/tests/test_build_ext.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests
copying build/lib.linux-x86_64-2.7/setuptools/tests/test_sdist.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests
copying build/lib.linux-x86_64-2.7/setuptools/archive_util.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools
copying build/lib.linux-x86_64-2.7/setuptools/extension.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools
copying build/lib.linux-x86_64-2.7/setuptools/package_index.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools
copying build/lib.linux-x86_64-2.7/setuptools/py26compat.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools
copying build/lib.linux-x86_64-2.7/setuptools/py31compat.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools
copying build/lib.linux-x86_64-2.7/setuptools/site-patch.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools
copying build/lib.linux-x86_64-2.7/setuptools/lib2to3_ex.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools
copying build/lib.linux-x86_64-2.7/setuptools/script template.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools
copying build/lib.linux-x86_64-2.7/setuptools/svn_utils.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools
copying build/lib.linux-x86_64-2.7/setuptools/sandbox.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools
copying build/lib.linux-x86_64-2.7/setuptools/ssl_support.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools
copying build/lib.linux-x86_64-2.7/setuptools/compat.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools
copying build/lib.linux-x86_64-2.7/setuptools/py27compat.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools
creating /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command
copying build/lib.linux-x86_64-2.7/setuptools/command/upload_docs.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command
copying build/lib.linux-x86_64-2.7/setuptools/command/__init__.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command
copying build/lib.linux-x86_64-2.7/setuptools/command/test.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command
copying build/lib.linux-x86_64-2.7/setuptools/command/install_egg_info.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command
copying build/lib.linux-x86_64-2.7/setuptools/command/alias.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command
copying build/lib.linux-x86_64-2.7/setuptools/command/install_lib.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command
copying build/lib.linux-x86_64-2.7/setuptools/command/setopt.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command
copying build/lib.linux-x86_64-2.7/setuptools/command/register.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command
copying build/lib.linux-x86_64-2.7/setuptools/command/build_ext.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command
copying build/lib.linux-x86_64-2.7/setuptools/command/egg_info.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command
copying build/lib.linux-x86_64-2.7/setuptools/command/bdist_egg.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command
copying build/lib.linux-x86_64-2.7/setuptools/command/develop.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command
copying build/lib.linux-x86_64-2.7/setuptools/command/build_py.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command
copying build/lib.linux-x86_64-2.7/setuptools/command/sdist.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command
copying build/lib.linux-x86_64-2.7/setuptools/command/bdist_rpm.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command
copying build/lib.linux-x86_64-2.7/setuptools/command/easy_install.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command
copying build/lib.linux-x86_64-2.7/setuptools/command/install.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command
copying build/lib.linux-x86_64-2.7/setuptools/command/bdist_wininst.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command
copying build/lib.linux-x86_64-2.7/setuptools/command/install_scripts.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command
copying build/lib.linux-x86_64-2.7/setuptools/command/rotate.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command
copying build/lib.linux-x86_64-2.7/setuptools/command/saveopts.py -> /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/_markerlib/__init__.py to __init__.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/_markerlib/markers.py to markers.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/pkg_resources.py to pkg_resources.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/easy_install.py to easy_install.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/__init__.py to __init__.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/script template (dev).py to script template (dev).pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/depends.py to depends.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/version.py to version.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/dist.py to dist.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests/__init__.py to __init__.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests/test_upload_docs.py to test_upload_docs.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests/test_egg_info.py to test_egg_info.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests/test_dist_info.py to test_dist_info.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests/test_develop.py to test_develop.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests/test_packageindex.py to test_packageindex.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests/test_resources.py to test_resources.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests/server.py to server.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests/test_markerlib.py to test_markerlib.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests/py26compat.py to py26compat.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests/test_svn.py to test_svn.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests/test_sandbox.py to test_sandbox.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests/script-with-bom.py to script-with-bom.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests/doctest.py to doctest.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests/environment.py to environment.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests/test_easy_install.py to test_easy_install.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests/test_test.py to test_test.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests/test_bdist_egg.py to test_bdist_egg.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests/test_build_ext.py to test_build_ext.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/tests/test_sdist.py to test_sdist.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/archive_util.py to archive_util.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/extension.py to extension.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/package_index.py to package_index.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/py26compat.py to py26compat.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/py31compat.py to py31compat.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/site-patch.py to site-patch.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/lib2to3_ex.py to lib2to3_ex.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/script template.py to script template.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/svn_utils.py to svn_utils.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/sandbox.py to sandbox.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/ssl_support.py to ssl_support.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/compat.py to compat.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/py27compat.py to py27compat.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command/upload_docs.py to upload_docs.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command/__init__.py to __init__.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command/test.py to test.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command/install_egg_info.py to install_egg_info.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command/alias.py to alias.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command/install_lib.py to install_lib.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command/setopt.py to setopt.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command/register.py to register.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command/build_ext.py to build_ext.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command/egg_info.py to egg_info.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command/bdist_egg.py to bdist_egg.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command/develop.py to develop.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command/build_py.py to build_py.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command/sdist.py to sdist.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command/bdist_rpm.py to bdist_rpm.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command/easy_install.py to easy_install.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command/install.py to install.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command/bdist_wininst.py to bdist_wininst.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command/install_scripts.py to install_scripts.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command/rotate.py to rotate.pyc
byte-compiling /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools/command/saveopts.py to saveopts.pyc
running install_egg_info
running egg_info
writing requirements to setuptools.egg-info/requires.txt
writing setuptools.egg-info/PKG-INFO
writing top-level names to setuptools.egg-info/top_level.txt
writing dependency_links to setuptools.egg-info/dependency_links.txt
writing entry points to setuptools.egg-info/entry_points.txt
reading manifest file 'setuptools.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
writing manifest file 'setuptools.egg-info/SOURCES.txt'
Copying setuptools.egg-info to /tmp/tmp.e505x6svZx/lib/python2.7/site-packages/setuptools-2.1-py2.7.egg-info
running install_scripts
Installing easy_install script to /tmp/tmp.e505x6svZx/bin
Installing easy_install-2.7 script to /tmp/tmp.e505x6svZx/bin
writing list of installed files to '/tmp/install.log'
2014-02-17 11:05:54 python setup.py install --root=/tmp/tmp.e505x6svZx --prefix= --single-version-externally-managed --record /tmp/install.log
(issues204)2014-02-17 11:05:54
mstation:marek:~/tmp/commons/setuptools-2.1> 

neutrinus avatar Feb 17 '14 10:02 neutrinus

For me (Ubuntu, amd64), I can fix this by creating a file ~/.pydistutils.cfg with the following contents: [install] install_lib = ~/py-lib install_scripts = ~/bin

This is insane and makes no sense; nothing is written to those directories (in fact, py-lib doesn't exist). But it seems to work around whatever breakage in setuptools is causing this problem.

dturner-tw avatar Jun 20 '14 00:06 dturner-tw

Sorry, It's too late and I have no way to check if this helps :(

neutrinus avatar Jul 01 '14 10:07 neutrinus