14
0

- Update to 2.7:

- Fix problem with space in WORKON_HOME path (issue 79).
  - Fix problem with argument processing in lsvirtualenv under zsh
    (issue 86). Thanks to Nat Williams (natw) for the bug report
    and patch.
  - If WORKON_HOME does not exist, create it. Patch from Carl
    Karsten (CarlFK). Test updates based on patches from Matt
    Austin (maafy6) and Hugo Lopes Tavares (hltbra).
  - Merge in contributions from Paul McLanahan (pmclanahan) to fix
    the test harness to ensure that the test scripts are actually
    running under the expected shell.
  - Merge in new shell command toggleglobalsitepackages from Paul
    McLanahan (pmclanahan). The new command changes the
    configuration of the active virtualenv to enable or disable
    the global site-packages directory.
  - Fixed some tests that were failing under ksh on Ubuntu 10.10.
  - Document the VIRTUALENVWRAPPER_VIRTUALENV variable.
  - Implement suggestion by Van Lindberg to have
    VIRTUALENVWRAPPER_HOOK_DIR and VIRTUALENVWRAPPER_LOG_DIR
    variables to control the locations of hooks and logs.
  - Enabled tab completion for showvirtualenv (issue 78).
  - Fixed a problem with running command-rmvirtualenv from within
    the environment being removed (issue 83).
  - Removed use of -e option in calls to grep for better portability
    (issue 85).
- Regenerate spec file with py2pack;
- Add README.txt file as documentation.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenvwrapper?expand=0&rev=8
This commit is contained in:
Alexandre Rogoski
2011-04-13 17:54:38 +00:00
committed by Git OBS Bridge
parent a676c06870
commit ff759604f9
4 changed files with 80 additions and 29 deletions

View File

@@ -1,3 +1,34 @@
-------------------------------------------------------------------
Wed Apr 13 17:43:53 UTC 2011 - alexandre@exatati.com.br
- Update to 2.7:
- Fix problem with space in WORKON_HOME path (issue 79).
- Fix problem with argument processing in lsvirtualenv under zsh
(issue 86). Thanks to Nat Williams (natw) for the bug report
and patch.
- If WORKON_HOME does not exist, create it. Patch from Carl
Karsten (CarlFK). Test updates based on patches from Matt
Austin (maafy6) and Hugo Lopes Tavares (hltbra).
- Merge in contributions from Paul McLanahan (pmclanahan) to fix
the test harness to ensure that the test scripts are actually
running under the expected shell.
- Merge in new shell command toggleglobalsitepackages from Paul
McLanahan (pmclanahan). The new command changes the
configuration of the active virtualenv to enable or disable
the global site-packages directory.
- Fixed some tests that were failing under ksh on Ubuntu 10.10.
- Document the VIRTUALENVWRAPPER_VIRTUALENV variable.
- Implement suggestion by Van Lindberg to have
VIRTUALENVWRAPPER_HOOK_DIR and VIRTUALENVWRAPPER_LOG_DIR
variables to control the locations of hooks and logs.
- Enabled tab completion for showvirtualenv (issue 78).
- Fixed a problem with running command-rmvirtualenv from within
the environment being removed (issue 83).
- Removed use of -e option in calls to grep for better portability
(issue 85).
- Regenerate spec file with py2pack;
- Add README.txt file as documentation.
-------------------------------------------------------------------
Sun Feb 27 15:47:19 UTC 2011 - alexandre@exatati.com.br

View File

@@ -1,7 +1,7 @@
#
# spec file for package python-virtualenvwrapper
#
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
# Copyright (c) 2011 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
@@ -11,47 +11,67 @@
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
#
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: python-virtualenvwrapper
Version: 2.6.3
Release: 1
License: BSD License
Summary: Enhancements to virtualenv
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
%define mod_name virtualenvwrapper
Name: python-%{mod_name}
Version: 2.7
Release: 0
Url: http://www.doughellmann.com/projects/virtualenvwrapper/
Group: Development/Libraries/Python
Source: virtualenvwrapper-%{version}.tar.bz2
Summary: Enhancements to virtualenv
License: BSD
Group: Development/Languages/Python
Source: %{mod_name}-%{version}.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: python-devel
BuildRequires: python-distribute
Requires: python-virtualenv
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%{py_requires}
%if %{?suse_version: %{suse_version} > 1110} %{!?suse_version:1}
%if 0%{?suse_version}
%py_requires
%if 0%{?suse_version} > 1110
BuildArch: noarch
%endif
%endif
%description
virtualenvwrapper is a set of extensions to Ian Bicking's virtualenv tool. The
extensions include wrappers for creating and deleting virtual environments and
otherwise managing your development workflow, making it easier to work on more
than one project at a time without introducing conflicts in their dependencies.
virtualenvwrapper is a set of extensions to Ian Bicking's virtualenv
tool. The extensions include wrappers for creating and deleting virtual
environments and otherwise managing your development workflow, making it
easier to work on more than one project at a time without introducing
conflicts in their dependencies.
Author:
--------
Doug Hellmann <doug.hellmann@gmail.com>
1. Organizes all of your virtual environments in one place.
2. Wrappers for creating, copying and deleting environments, including
user-configurable hooks.
3. Use a single command to switch between environments.
4. Tab completion for commands that take a virtual environment as
argument.
5. User-configurable hooks for all operations.
6. Plugin system for more creating sharable extensions.
%prep
%setup -q -n virtualenvwrapper-%{version}
%setup -q -n %{mod_name}-%{version}
%build
%{__python} setup.py build
export CFLAGS="%{optflags}"
python setup.py build
%install
%{__python} setup.py install --prefix=%{_prefix} --root=%{buildroot} --record-rpm=INSTALLED_FILES
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
%files -f INSTALLED_FILES
%defattr(-,root,root)
%clean
rm -rf %{buildroot}
%files
%defattr(-,root,root,-)
%doc README.txt
%python_sitelib/%{mod_name}*
%{_bindir}/%{mod_name}.sh
%changelog

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ec505b06272db5a268459f0d2c4496824237d8aab5b99f93e65b9593e4d2ba4d
size 378359

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:11f3a6a92caef0b85f427530b7cd207e9ad3e58fe653a4c990c6bdef9179974b
size 377285