2011-04-14 13:07:15 +02:00
|
|
|
#
|
2024-02-28 13:56:17 +01:00
|
|
|
# spec file for package python-virtualenv
|
2011-04-14 13:07:15 +02:00
|
|
|
#
|
2024-01-07 20:11:55 +01:00
|
|
|
# Copyright (c) 2024 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
|
|
|
|
2021-10-01 21:29:38 +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
|
2024-01-07 20:11:55 +01:00
|
|
|
|
2023-04-21 15:28:34 +02:00
|
|
|
%{?sle15_python_module_pythons}
|
2019-09-17 20:07:53 +02:00
|
|
|
Name: python-virtualenv%{psuffix}
|
2024-05-13 14:11:40 +02:00
|
|
|
Version: 20.26.1
|
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
|
2024-04-20 09:43:12 +02:00
|
|
|
URL: https://virtualenv.pypa.io/
|
2024-01-07 20:11:55 +01:00
|
|
|
# SourceRepository: https://github.com/pypa/virtualenv
|
2018-07-22 12:26:39 +02:00
|
|
|
Source: https://files.pythonhosted.org/packages/source/v/virtualenv/virtualenv-%{version}.tar.gz
|
2024-01-07 20:11:55 +01:00
|
|
|
BuildRequires: %{python_module base >= 3.7}
|
2022-10-10 13:33:04 +02:00
|
|
|
BuildRequires: %{python_module pip}
|
2017-03-20 15:42:07 +01:00
|
|
|
BuildRequires: python-rpm-macros
|
2024-01-07 20:11:55 +01:00
|
|
|
%if !%{with test}
|
|
|
|
# Don't install the build requirements during testing, see setuptools_scm comment below
|
|
|
|
BuildRequires: %{python_module hatch-vcs >= 0.3}
|
|
|
|
BuildRequires: %{python_module hatchling >= 1.17.1}
|
|
|
|
BuildRequires: fdupes
|
|
|
|
%else
|
|
|
|
# Conflict with setuptools_scm giving a warning, https://github.com/pypa/virtualenv/issues/2668
|
|
|
|
BuildConflicts: %{python_module setuptools_scm}
|
|
|
|
BuildRequires: %{python_module devel}
|
|
|
|
BuildRequires: %{python_module flaky >= 3.7}
|
|
|
|
BuildRequires: %{python_module packaging >= 23.1}
|
|
|
|
BuildRequires: %{python_module pytest >= 7.4}
|
|
|
|
BuildRequires: %{python_module pytest-env >= 0.8.2}
|
|
|
|
BuildRequires: %{python_module pytest-mock >= 3.11.1}
|
|
|
|
BuildRequires: %{python_module pytest-timeout >= 2.1}
|
|
|
|
BuildRequires: %{python_module setuptools >= 68}
|
|
|
|
BuildRequires: %{python_module time-machine >= 2.10}
|
|
|
|
BuildRequires: %{python_module virtualenv = %{version}}
|
|
|
|
%endif
|
|
|
|
Requires: (python-distlib >= 0.3.7 with python-distlib < 1)
|
|
|
|
Requires: (python-filelock >= 3.12.2 with python-filelock < 4)
|
|
|
|
Requires: (python-platformdirs >= 3.9.1 with python-platformdirs < 5)
|
2022-02-01 19:51:23 +01:00
|
|
|
Requires(post): update-alternatives
|
2024-02-28 13:56:17 +01:00
|
|
|
Requires(postun): update-alternatives
|
2022-02-01 19:51:23 +01:00
|
|
|
BuildArch: noarch
|
2021-10-01 21:29:38 +02:00
|
|
|
%if 0%{python_version_nodots} < 38
|
2024-01-07 20:11:55 +01:00
|
|
|
Requires: python-importlib-metadata >= 6.6
|
2020-03-13 12:31:08 +01:00
|
|
|
%endif
|
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
|
|
|
|
|
2024-01-07 20:11:55 +01:00
|
|
|
%if !%{with test}
|
2011-04-14 13:07:15 +02:00
|
|
|
%build
|
2022-10-10 13:33:04 +02:00
|
|
|
%pyproject_wheel
|
2011-04-14 13:07:15 +02:00
|
|
|
|
|
|
|
%install
|
2022-10-10 13:33:04 +02:00
|
|
|
%pyproject_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
|
2021-10-01 21:29:38 +02:00
|
|
|
%endif
|
2013-07-29 16:37:28 +02:00
|
|
|
|
2019-09-17 20:07:53 +02:00
|
|
|
%if %{with test}
|
2024-01-07 20:11:55 +01:00
|
|
|
%check
|
2021-10-01 21:29:38 +02:00
|
|
|
# online tests downloads from pypi
|
|
|
|
donttest="test_seed_link_via_app_data"
|
2024-01-07 20:11:55 +01:00
|
|
|
# fails on python312 because it cannot find setuptools and wheel https://virtualenv.pypa.io/en/latest/changelog.html#features-20-23-0
|
|
|
|
python312_extratest=" or test_can_build_c_extensions"
|
|
|
|
%pytest -k "not ($donttest ${$python_extratest})"
|
|
|
|
# test the special case with the bundles (for all flavors)
|
|
|
|
export VIRTUALENV_SETUPTOOLS=bundle
|
|
|
|
export VIRTUALENV_WHEEL=bundle
|
|
|
|
%pytest -k "${python312_extratest:4}"
|
2019-09-17 20:07:53 +02:00
|
|
|
%endif
|
2018-07-22 12:26:39 +02:00
|
|
|
|
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
|
|
|
|
2024-01-07 20:11:55 +01:00
|
|
|
%if !%{with test}
|
2018-07-22 12:26:39 +02:00
|
|
|
%files %{python_files}
|
2020-03-13 12:31:08 +01:00
|
|
|
%license LICENSE
|
2023-04-27 23:50:45 +02:00
|
|
|
%doc README.md
|
2021-10-01 21:29:38 +02:00
|
|
|
%{python_sitelib}/virtualenv
|
|
|
|
%{python_sitelib}/virtualenv-%{version}*-info
|
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
|