14
0
forked from pool/python-pip

Accepting request 106441 from home:saschpe:branches:devel:languages:python

- Update to version 1.1:
  * Fixed issue #326 - don't crash when a package's setup.py emits UTF-8
    and then fails.
  * Added --target option for installing directly to arbitrary directory.
  * Added support for authentication with Subversion repositories.
  * Fixed issue #315 - --download now downloads dependencies as well.
  * Errors from subprocesses will display the current working directory.
  * Fixed issue #369 - compatibility with Subversion 1.7.
  * Fixed issue #57 - ignore py2app-generated OS X mpkg zip files in finder.
  * Fixed issue #182 - log to ~/Library/Logs/ by default on OS X framework
    installs.
  * Fixed issue #310 - understand version tags without minor version ("py3")
    in sdist filenames.
  * Fixed issue #7 - Pip now supports optionally installing setuptools
    "extras" dependencies; e.g. "pip install Paste[openid]".
  * Fixed issue #391 - freeze no longer borks on requirements file
  * Fixed issue #288 - handle symlinks properly.
  * Fixed issue #49 - pip install -U no longer reinstalls the same versions
    of packages.
  * Removed -E option and PIP_RESPECT_VIRTUALENV; both use a restart-in-venv
    mechanism that's broken, and neither one is useful since every virtualenv
    now has pip inside it.
  * Fixed issue #366 - pip throws IndexError when it calls scraped_rel_links
  * Fixed issue #22 - pip search should set and return a userful shell
    status code
  * Fixed issue #351 and #365 - added global --exists-action command line
    option to easier script file exists conflicts, e.g. from editable
    requirements from VCS that have a changed repo URL.
- Cleaned up changes file

OBS-URL: https://build.opensuse.org/request/show/106441
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=13
This commit is contained in:
Sascha Peilicke
2012-02-22 12:15:04 +00:00
committed by Git OBS Bridge
parent eaf11dd8ba
commit 33ec7ad37c
3 changed files with 59 additions and 31 deletions

View File

@@ -1,7 +1,7 @@
#
# spec file for package python-pip
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -15,8 +15,9 @@
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: python-pip
Version: 1.0.2
Version: 1.1
Release: 0
Url: http://www.pip-installer.org
Summary: Pip installs packages. Python packages. An easy_install replacement
@@ -41,7 +42,7 @@ pip-installable as well.
%prep
%setup -q -n pip-%{version}
sed -i "1d" pip/__init__.py # Fix non-executable script
sed -i "s|#!/usr/bin/env python||g" pip/__init__.py # Fix non-executable script
%build
python setup.py build