2011-04-14 13:07:15 +02:00
|
|
|
#
|
2021-08-03 11:07:08 +02:00
|
|
|
# spec file
|
2011-04-14 13:07:15 +02:00
|
|
|
#
|
2021-01-29 00:24:41 +01:00
|
|
|
# Copyright (c) 2021 SUSE LLC
|
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
|
|
|
|
2019-02-07 17:59:32 +01:00
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
2011-04-14 13:07:15 +02:00
|
|
|
#
|
|
|
|
|
2011-07-20 10:07:49 +02:00
|
|
|
|
2017-03-20 15:42:07 +01:00
|
|
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
2021-08-26 08:50:47 +02:00
|
|
|
%global flavor @BUILD_FLAVOR@%%{nil}
|
|
|
|
%if "%%{flavor}" == "test"
|
2019-09-17 20:07:53 +02:00
|
|
|
%define psuffix -test
|
|
|
|
%bcond_without test
|
|
|
|
%else
|
|
|
|
%define psuffix %{nil}
|
|
|
|
%bcond_with test
|
|
|
|
%endif
|
|
|
|
Name: python-virtualenv%{psuffix}
|
2021-08-26 08:50:47 +02:00
|
|
|
Version: 20.7.0
|
2012-02-17 12:58:11 +01:00
|
|
|
Release: 0
|
2011-04-14 13:07:15 +02:00
|
|
|
Summary: Virtual Python Environment builder
|
|
|
|
License: MIT
|
2018-07-22 12:26:39 +02:00
|
|
|
URL: http://www.virtualenv.org/
|
|
|
|
Source: https://files.pythonhosted.org/packages/source/v/virtualenv/virtualenv-%{version}.tar.gz
|
2021-08-26 08:50:47 +02:00
|
|
|
BuildRequires: %{python_module backports.entry_points_selectable >= 1.0.4}
|
|
|
|
BuildRequires: %{python_module distlib >= 0.3.1}
|
|
|
|
BuildRequires: %{python_module filelock >= 3.0.0}
|
|
|
|
BuildRequires: %{python_module importlib-metadata >= 0.12}
|
|
|
|
BuildRequires: %{python_module importlib-resources >= 1.0}
|
|
|
|
BuildRequires: %{python_module platformdirs >= 2}
|
2020-03-19 08:21:58 +01:00
|
|
|
BuildRequires: %{python_module setuptools >= 41.0.0}
|
|
|
|
BuildRequires: %{python_module setuptools_scm >= 2}
|
2021-08-26 08:50:47 +02:00
|
|
|
BuildRequires: %{python_module six >= 1.9.0}
|
2019-09-16 12:44:26 +02:00
|
|
|
BuildRequires: fdupes
|
2017-03-20 15:42:07 +01:00
|
|
|
BuildRequires: python-rpm-macros
|
2020-03-13 12:31:08 +01:00
|
|
|
Requires: python-appdirs >= 1.4.3
|
2020-10-08 11:49:22 +02:00
|
|
|
Requires: python-distlib >= 0.3.1
|
2020-03-13 12:31:08 +01:00
|
|
|
Requires: python-filelock >= 3.0.0
|
2018-08-04 17:09:58 +02:00
|
|
|
Requires: python-setuptools
|
2020-03-13 12:31:08 +01:00
|
|
|
Requires: python-six >= 1.9.0
|
2013-07-29 16:37:28 +02:00
|
|
|
Requires(post): update-alternatives
|
2021-03-08 16:08:33 +01:00
|
|
|
Requires(postun):update-alternatives
|
2011-04-14 13:07:15 +02:00
|
|
|
BuildArch: noarch
|
2021-03-08 16:08:33 +01:00
|
|
|
Requires: python-importlib-metadata >= 0.12
|
|
|
|
Requires: python-importlib_resources >= 1.0
|
2020-03-13 12:31:08 +01:00
|
|
|
%ifpython2
|
|
|
|
Requires: python-contextlib2 >= 0.6.0
|
|
|
|
Requires: python-pathlib2 >= 2.3.3
|
|
|
|
%endif
|
|
|
|
%if %{with test}
|
|
|
|
BuildRequires: %{python_module coverage >= 4.5.1}
|
|
|
|
BuildRequires: %{python_module devel}
|
2020-07-03 13:10:00 +02:00
|
|
|
BuildRequires: %{python_module flaky >= 3}
|
2020-03-13 12:31:08 +01:00
|
|
|
BuildRequires: %{python_module packaging >= 20.0}
|
2021-08-26 08:50:47 +02:00
|
|
|
BuildRequires: %{python_module pip}
|
2020-03-13 12:31:08 +01:00
|
|
|
BuildRequires: %{python_module pytest >= 4.0.0}
|
|
|
|
BuildRequires: %{python_module pytest-env >= 0.6.2}
|
2020-07-03 13:10:00 +02:00
|
|
|
BuildRequires: %{python_module pytest-freezegun >= 0.4.1}
|
2020-03-13 12:31:08 +01:00
|
|
|
BuildRequires: %{python_module pytest-mock >= 2.0.0}
|
|
|
|
BuildRequires: %{python_module pytest-timeout >= 1.3.4}
|
|
|
|
%endif
|
2021-08-26 08:50:47 +02:00
|
|
|
|
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
|
2020-03-13 12:31:08 +01:00
|
|
|
of LibFoo, but another application requires version 2.
|
2011-04-14 13:07:15 +02:00
|
|
|
|
|
|
|
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
|
2021-08-26 08:50:47 +02:00
|
|
|
%autosetup -p1 -n virtualenv-%{version}
|
2011-04-14 13:07:15 +02:00
|
|
|
|
2021-03-12 00:12:06 +01:00
|
|
|
# Dependencies on all those shells are too cumbersome.
|
|
|
|
rm -r tests/unit/activation
|
|
|
|
|
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
|
2020-03-13 12:31:08 +01:00
|
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
2017-03-20 15:42:07 +01:00
|
|
|
%python_clone -a %{buildroot}%{_bindir}/virtualenv
|
2013-07-29 16:37:28 +02:00
|
|
|
|
2018-07-22 12:26:39 +02:00
|
|
|
%check
|
2019-09-17 20:07:53 +02:00
|
|
|
%if %{with test}
|
2020-03-13 12:31:08 +01:00
|
|
|
export LANG="en_US.UTF8"
|
2021-03-08 16:08:33 +01:00
|
|
|
skiptests="test_seed_link_via_app_data"
|
2020-07-03 13:10:00 +02:00
|
|
|
# test_seed_link_via_app_data - online tests downloads from pypi
|
2021-08-26 08:50:47 +02:00
|
|
|
%pytest
|
|
|
|
rm -rf %{buildroot}
|
2019-09-17 20:07:53 +02:00
|
|
|
%endif
|
2018-07-22 12:26:39 +02:00
|
|
|
|
2019-09-17 20:07:53 +02:00
|
|
|
%if !%{with test}
|
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
|
|
|
|
2018-07-22 12:26:39 +02:00
|
|
|
%files %{python_files}
|
2020-03-13 12:31:08 +01:00
|
|
|
%license LICENSE
|
|
|
|
%doc README.md docs/changelog.rst
|
2011-07-19 15:29:34 +02:00
|
|
|
%{python_sitelib}/virtualenv*
|
2017-03-20 15:42:07 +01:00
|
|
|
%python_alternative %{_bindir}/virtualenv
|
2019-09-17 20:07:53 +02:00
|
|
|
%endif
|
2017-03-20 15:42:07 +01:00
|
|
|
|
2011-04-14 13:07:15 +02:00
|
|
|
%changelog
|