2022-06-02 02:50:21 +00:00
|
|
|
%global _empty_manifest_terminate_build 0
|
|
|
|
|
Name: python-platformdirs
|
2024-01-15 11:31:54 +08:00
|
|
|
Version: 3.11.0
|
2022-04-27 11:04:27 +08:00
|
|
|
Release: 1
|
2022-06-02 02:50:21 +00:00
|
|
|
Summary: A small Python module for determining appropriate platform-specific dirs
|
2022-04-27 11:04:27 +08:00
|
|
|
License: MIT
|
|
|
|
|
URL: https://github.com/platformdirs/platformdirs
|
2024-01-15 11:31:54 +08:00
|
|
|
Source0: https://files.pythonhosted.org/packages/source/p/platformdirs/platformdirs-%{version}.tar.gz
|
2022-04-27 11:04:27 +08:00
|
|
|
BuildArch: noarch
|
2023-05-06 10:17:06 +08:00
|
|
|
|
|
|
|
|
BuildRequires: python3-pip python3-hatchling python3-hatch-vcs python3-wheel
|
|
|
|
|
|
2022-06-02 02:50:21 +00:00
|
|
|
%description
|
|
|
|
|
The problem When writing desktop application, finding the right location to
|
|
|
|
|
store user data and configuration varies per platform. Even for single-platform
|
|
|
|
|
apps, there may by plenty of nuances in figuring out the right location.
|
2022-04-27 11:04:27 +08:00
|
|
|
|
2022-06-02 02:50:21 +00:00
|
|
|
%package -n python3-platformdirs
|
|
|
|
|
Summary: A small Python module for determining appropriate platform-specific dirs
|
|
|
|
|
Provides: python-platformdirs
|
|
|
|
|
# Base build requires
|
2022-04-27 11:04:27 +08:00
|
|
|
BuildRequires: python3-devel
|
2022-06-02 02:50:21 +00:00
|
|
|
BuildRequires: python3-setuptools
|
|
|
|
|
BuildRequires: python3-pbr
|
|
|
|
|
BuildRequires: python3-pip
|
|
|
|
|
BuildRequires: python3-wheel
|
|
|
|
|
# Tests running requires
|
|
|
|
|
BuildRequires: python3-appdirs
|
|
|
|
|
BuildRequires: python3-pytest
|
|
|
|
|
BuildRequires: python3-pytest-mock
|
|
|
|
|
BuildRequires: python3-coverage
|
|
|
|
|
%description -n python3-platformdirs
|
|
|
|
|
The problem When writing desktop application, finding the right location to
|
|
|
|
|
store user data and configuration varies per platform. Even for single-platform
|
|
|
|
|
apps, there may by plenty of nuances in figuring out the right location.
|
2022-04-27 11:04:27 +08:00
|
|
|
|
2022-06-02 02:50:21 +00:00
|
|
|
%package help
|
|
|
|
|
Summary: A small Python module for determining appropriate platform-specific dirs
|
|
|
|
|
Provides: python3-platformdirs-doc
|
|
|
|
|
%description help
|
|
|
|
|
The problem When writing desktop application, finding the right location to
|
|
|
|
|
store user data and configuration varies per platform. Even for single-platform
|
|
|
|
|
apps, there may by plenty of nuances in figuring out the right location
|
2022-04-27 11:04:27 +08:00
|
|
|
|
|
|
|
|
%prep
|
2022-06-02 02:50:21 +00:00
|
|
|
%autosetup -n platformdirs-%{version} -p1
|
2022-04-27 11:04:27 +08:00
|
|
|
cp -r src/platformdirs tests/
|
|
|
|
|
cp -r src/platformdirs ./
|
|
|
|
|
|
|
|
|
|
%build
|
2023-05-06 10:17:06 +08:00
|
|
|
%pyproject_build
|
2022-04-27 11:04:27 +08:00
|
|
|
|
|
|
|
|
%install
|
2023-06-05 05:09:29 +08:00
|
|
|
%pyproject_install
|
2022-04-27 11:04:27 +08:00
|
|
|
|
2022-06-02 02:50:21 +00:00
|
|
|
install -d -m755 %{buildroot}/%{_pkgdocdir}
|
|
|
|
|
if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi
|
|
|
|
|
if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi
|
|
|
|
|
if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi
|
|
|
|
|
if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi
|
|
|
|
|
|
2022-04-27 11:04:27 +08:00
|
|
|
%check
|
|
|
|
|
/usr/bin/pytest
|
|
|
|
|
|
2023-05-06 10:17:06 +08:00
|
|
|
%files -n python3-platformdirs
|
|
|
|
|
%{python3_sitelib}/platformdirs*
|
2022-06-02 02:50:21 +00:00
|
|
|
|
2023-05-06 10:17:06 +08:00
|
|
|
%files help
|
2022-06-02 02:50:21 +00:00
|
|
|
%{_docdir}/*
|
2022-04-27 11:04:27 +08:00
|
|
|
|
|
|
|
|
%changelog
|
2024-01-15 11:31:54 +08:00
|
|
|
* Mon Jan 15 2024 xu_ping <707078654@qq.com> - 3.11.0-1
|
|
|
|
|
- Upgrade the version to 3.11.0
|
|
|
|
|
|
2023-06-05 05:09:29 +08:00
|
|
|
* Mon Jun 05 2023 Dongxing Wang <dxwangk@isoftstone.com> - 3.5.1-1
|
|
|
|
|
- Upgrade the version to 3.5.1 for tox 4.5.2
|
|
|
|
|
|
2023-05-06 10:17:06 +08:00
|
|
|
* Sat May 06 2023 xu_ping <707078654@qq.com> - 3.5.0-1
|
|
|
|
|
- Upgrade the version to 3.5.0
|
|
|
|
|
|
2022-06-02 02:50:21 +00:00
|
|
|
* Thu May 26 2022 OpenStack_SIG <openstack@openeuler.org> - 2.5.1-1
|
|
|
|
|
- Upgrade the version to 2.5.1
|
|
|
|
|
|
2022-04-27 11:04:27 +08:00
|
|
|
* Wed Apr 27 2022 caodongxia <caodongxia@h-partners.com> - 2.3.0-1
|
2022-06-02 02:50:21 +00:00
|
|
|
- init package
|