python-tox/python-tox.spec

88 lines
2.4 KiB
RPMSpec
Raw Permalink Normal View History

2022-11-01 13:29:49 +08:00
%global _empty_manifest_terminate_build 0
2020-02-18 16:54:42 +08:00
Name: python-tox
Version: 4.11.1
2021-12-18 11:42:16 +08:00
Release: 1
2020-02-18 16:54:42 +08:00
Summary: Virtualenv-based automation of test activities
License: MIT
2022-11-01 13:29:49 +08:00
URL: https://tox.readthedocs.io
2023-04-26 13:33:55 +08:00
Source0: %{pypi_source tox}
2022-11-01 13:29:49 +08:00
BuildArch: noarch
2020-02-18 16:54:42 +08:00
2022-11-01 13:29:49 +08:00
Requires: python3-devel
2020-02-18 16:54:42 +08:00
2023-04-26 13:33:55 +08:00
# Base build requires
BuildRequires: python3-devel
BuildRequires: python3-setuptools
BuildRequires: python3-setuptools_scm
BuildRequires: python3-pip
BuildRequires: python3-wheel
BuildRequires: python3-editables
BuildRequires: python3-hatch-vcs
BuildRequires: python3-hatchling
2020-02-18 16:54:42 +08:00
%description
At its core tox povides a convenient way to run arbitrary commands in isolated environments to serve as a single entry point for build, test and release activities.
%package -n python3-tox
2022-11-01 13:29:49 +08:00
Summary: Virtualenv-based automation of test activities
Provides: python-tox = %{version}-%{release}
2020-02-18 16:54:42 +08:00
%description -n python3-tox
At its core tox povides a convenient way to run arbitrary commands in isolated environments to serve as a single entry point for build, test and release activities.
2022-11-01 13:29:49 +08:00
%package help
Summary: Development documents and examples for tox
Provides: python3-tox-doc
%description help
At its core tox povides a convenient way to run arbitrary commands in isolated environments to serve as a single entry point for build, test and release activities.
2020-02-18 16:54:42 +08:00
%prep
%autosetup -p1 -n tox-%{version}
%build
2023-04-26 13:33:55 +08:00
%pyproject_build
2020-02-18 16:54:42 +08:00
%install
2023-06-04 06:32:17 +08:00
%pyproject_install
2020-02-18 16:54:42 +08:00
%files -n python3-tox
%defattr(-,root,root)
%license LICENSE
%{_bindir}/tox
2023-04-26 13:33:55 +08:00
%{python3_sitelib}/tox/
%{python3_sitelib}/tox*.dist-info/
%doc README.md
2020-02-18 16:54:42 +08:00
%changelog
* Mon Jan 15 2024 xu_ping <707078654@qq.com> - 4.11.1-1
- Update package to version 4.11.1
2023-06-04 06:32:17 +08:00
* Sun Jun 4 2023 Dongxing Wang <dxwangk@isoftstone.com> - 4.5.2-1
- Update package to version 4.5.2
2023-04-26 13:33:55 +08:00
* Wed Apr 26 2023 Dongxing Wang <dxwangk@isoftstone.com> - 3.28.0-1
- Update package to version 3.28.0
2022-11-01 13:29:49 +08:00
* Tue Nov 01 2022 wangjunqi <wangjunqi@kylinos.cn> - 3.27.0-1
- Update package to version 3.27.0
2021-12-18 11:42:16 +08:00
* Sat Dec 18 2021 shixuantong <shixuantong@huawei.com> - 3.24.4-1
- update version to 3.24.4
* Tue Feb 2 2021 hanhui<hanhui15@huawei.com> - 3.5.3-4
- bugfix
- DESC:slove setuptools_scm upgrade lead to tox complication failures
2022-06-20 14:35:18 +08:00
* Sat Jun 20 2020 hanhui<hanhui15@huawei.com> - 3.5.3-3
2020-06-20 17:06:00 +08:00
- bugfix
- DESC:fix python-ldap requires
2020-06-18 15:07:19 +08:00
* Thu Jun 18 2020 hanhui<hanhui15@huawei.com> - 3.5.3-2
- bugfix
- DESC:modify python3.7 can not find file path
2020-02-21 16:54:02 +08:00
* Tue Feb 11 2020 huzunhao<huzunhao2@huawei.com> - 3.5.3-1
2020-02-18 16:54:42 +08:00
- Package init
2022-11-01 13:29:49 +08:00