2011-04-14 13:07:15 +02:00
|
|
|
#
|
|
|
|
# spec file for package python-virtualenv
|
|
|
|
#
|
2018-02-21 09:16:37 +01:00
|
|
|
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
2011-04-14 13:07:15 +02:00
|
|
|
#
|
|
|
|
# All modifications and additions to the file contributed by third parties
|
|
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
|
|
# upon. The license for this file, and modifications and additions to the
|
|
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
|
|
# license for the pristine package is not an Open Source License, in which
|
|
|
|
# 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.
|
2011-04-14 13:07:29 +02:00
|
|
|
|
2011-04-14 13:07:15 +02:00
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
|
|
#
|
|
|
|
|
2011-07-20 10:07:49 +02:00
|
|
|
|
2017-03-20 15:42:07 +01:00
|
|
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
2011-07-19 15:29:34 +02:00
|
|
|
Name: python-virtualenv
|
2017-03-20 15:42:07 +01:00
|
|
|
Version: 15.1.0
|
2012-02-17 12:58:11 +01:00
|
|
|
Release: 0
|
2011-07-19 15:29:34 +02:00
|
|
|
Url: http://www.virtualenv.org/
|
2011-04-14 13:07:15 +02:00
|
|
|
Summary: Virtual Python Environment builder
|
|
|
|
License: MIT
|
|
|
|
Group: Development/Languages/Python
|
2017-03-20 15:42:07 +01:00
|
|
|
Source: https://pypi.io/packages/source/v/virtualenv/virtualenv-%{version}.tar.gz
|
2011-04-14 13:07:15 +02:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
2017-03-20 15:42:07 +01:00
|
|
|
BuildRequires: %{python_module devel}
|
|
|
|
BuildRequires: %{python_module setuptools}
|
|
|
|
BuildRequires: python-rpm-macros
|
2018-02-21 09:16:37 +01:00
|
|
|
Requires: python
|
2013-07-29 16:37:28 +02:00
|
|
|
Requires(post): update-alternatives
|
|
|
|
Requires(postun): update-alternatives
|
2011-04-14 13:07:15 +02:00
|
|
|
BuildArch: noarch
|
2017-03-20 15:42:07 +01:00
|
|
|
|
|
|
|
%python_subpackages
|
2011-04-14 13:07:15 +02:00
|
|
|
|
|
|
|
%description
|
|
|
|
virtualenv is a tool to create isolated Python environments.
|
|
|
|
The basic problem being addressed is one of dependencies and versions, and
|
|
|
|
indirectly permissions. Imagine you have an application that needs version 1
|
|
|
|
of LibFoo, but another application requires version 2. How can you use both
|
|
|
|
these applications? If you install everything into
|
|
|
|
/usr/lib/python2.4/site-packages (or whatever your platforms standard location
|
|
|
|
is), its easy to end up in a situation where you unintentionally upgrade an
|
|
|
|
application that shouldnt be upgraded.
|
|
|
|
|
|
|
|
Or more generally, what if you want to install an application and leave it be?
|
|
|
|
If an application works, any change in its libraries or the versions of those
|
|
|
|
libraries can break the application.
|
|
|
|
|
|
|
|
Also, what if you cant install packages into the global site-packages
|
|
|
|
directory? For instance, on a shared host.
|
|
|
|
|
|
|
|
In all these cases, virtualenv can help you. It creates an environment that
|
|
|
|
has its own installation directories, that doesnt share libraries with other
|
|
|
|
virtualenv environments (and optionally doesnt use the globally installed
|
|
|
|
libraries either).
|
|
|
|
|
|
|
|
%prep
|
2011-07-19 15:29:34 +02:00
|
|
|
%setup -q -n virtualenv-%{version}
|
2011-04-14 13:07:15 +02:00
|
|
|
|
|
|
|
%build
|
2017-03-20 15:42:07 +01:00
|
|
|
%python_build
|
2011-04-14 13:07:15 +02:00
|
|
|
|
|
|
|
%install
|
2017-03-20 15:42:07 +01:00
|
|
|
%python_install
|
|
|
|
%python_clone -a %{buildroot}%{_bindir}/virtualenv
|
2013-07-29 16:37:28 +02:00
|
|
|
|
|
|
|
%post
|
2017-03-20 15:42:07 +01:00
|
|
|
%python_install_alternative virtualenv
|
2013-07-29 16:37:28 +02:00
|
|
|
|
2017-03-27 16:14:31 +02:00
|
|
|
%postun
|
2017-03-20 15:42:07 +01:00
|
|
|
%python_uninstall_alternative virtualenv
|
2013-07-29 16:37:28 +02:00
|
|
|
|
2017-03-20 15:42:07 +01:00
|
|
|
%files %python_files
|
2011-04-14 13:07:15 +02:00
|
|
|
%defattr(-,root,root,-)
|
2015-07-29 15:14:59 +02:00
|
|
|
%doc LICENSE.txt README.rst
|
2011-07-19 15:29:34 +02:00
|
|
|
%{python_sitelib}/virtualenv*
|
2017-03-20 15:42:07 +01:00
|
|
|
%python_alternative %{_bindir}/virtualenv
|
|
|
|
%pycache_only %{python_sitelib}/__pycache__
|
|
|
|
|
2011-04-14 13:07:15 +02:00
|
|
|
%changelog
|