|
|
@ -0,0 +1,159 @@
|
|
|
|
|
|
|
|
## START: Set by rpmautospec
|
|
|
|
|
|
|
|
## (rpmautospec version 0.6.5)
|
|
|
|
|
|
|
|
## RPMAUTOSPEC: autorelease, autochangelog
|
|
|
|
|
|
|
|
%define autorelease(e:s:pb:n) %{?-p:0.}%{lua:
|
|
|
|
|
|
|
|
release_number = 2;
|
|
|
|
|
|
|
|
base_release_number = tonumber(rpm.expand("%{?-b*}%{!?-b:1}"));
|
|
|
|
|
|
|
|
print(release_number + base_release_number - 1);
|
|
|
|
|
|
|
|
}%{?-e:.%{-e*}}%{?-s:.%{-s*}}%{!?-n:%{?dist}}
|
|
|
|
|
|
|
|
## END: Set by rpmautospec
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%bcond_without tests
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Name: python-platformdirs
|
|
|
|
|
|
|
|
Version: 4.2.2
|
|
|
|
|
|
|
|
Release: %autorelease
|
|
|
|
|
|
|
|
Summary: A small Python package for determining appropriate platform-specific dirs
|
|
|
|
|
|
|
|
License: MIT
|
|
|
|
|
|
|
|
URL: https://github.com/platformdirs/platformdirs
|
|
|
|
|
|
|
|
Source: %{pypi_source platformdirs}
|
|
|
|
|
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%global common_description %{expand:
|
|
|
|
|
|
|
|
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. This kind of
|
|
|
|
|
|
|
|
thing is what the platformdirs package is for.}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%description %{common_description}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%package -n python3-platformdirs
|
|
|
|
|
|
|
|
Summary: %{summary}
|
|
|
|
|
|
|
|
BuildRequires: python3-devel
|
|
|
|
|
|
|
|
# RHBZ#1712140, RHBZ#2076994
|
|
|
|
|
|
|
|
BuildRequires: pyproject-rpm-macros >= 1.2.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%description -n python3-platformdirs %{common_description}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
|
|
|
|
%autosetup -n platformdirs-%{version}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# https://docs.fedoraproject.org/en-US/packaging-guidelines/Python/#_linters
|
|
|
|
|
|
|
|
sed -r -i '/^[[:blank:]]*"pytest-cov\b/d' pyproject.toml
|
|
|
|
|
|
|
|
sed -r -i '/^[[:blank:]]*"covdefaults\b/d' pyproject.toml
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%generate_buildrequires
|
|
|
|
|
|
|
|
%pyproject_buildrequires -w %{?with_tests:-x test}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
|
|
|
|
%pyproject_wheel
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
|
|
|
|
%pyproject_install
|
|
|
|
|
|
|
|
%pyproject_save_files -l platformdirs
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%check
|
|
|
|
|
|
|
|
%if %{with tests}
|
|
|
|
|
|
|
|
# Upstream uses tox, but we don’t use it, to avoid a build dependency loop
|
|
|
|
|
|
|
|
# platformdirs <- virtualenv <- tox
|
|
|
|
|
|
|
|
%pytest
|
|
|
|
|
|
|
|
%else
|
|
|
|
|
|
|
|
%pyproject_check_import
|
|
|
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%files -n python3-platformdirs -f %{pyproject_files}
|
|
|
|
|
|
|
|
%doc README.rst
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
|
|
|
|
|
|
|
* Tue Dec 17 2024 Arkady L. Shane <tigro@msvsphere-os.ru> - 4.2.2-2
|
|
|
|
|
|
|
|
- Rebuilt for MSVSphere 10
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
## START: Generated by rpmautospec
|
|
|
|
|
|
|
|
* Fri Jul 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 4.2.2-2
|
|
|
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Tue Jul 09 2024 Carl George <carlwgeorge@fedoraproject.org> - 4.2.2-1
|
|
|
|
|
|
|
|
- Update to version 4.2.2 rhbz#2227426
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Fri Jun 07 2024 Python Maint <python-maint@redhat.com> - 3.11.0-4
|
|
|
|
|
|
|
|
- Rebuilt for Python 3.13
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Fri Jan 26 2024 Fedora Release Engineering <releng@fedoraproject.org> - 3.11.0-3
|
|
|
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Mon Jan 22 2024 Fedora Release Engineering <releng@fedoraproject.org> - 3.11.0-2
|
|
|
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Sat Dec 02 2023 Orion Poplawski <orion@nwra.com> - 3.11.0-1
|
|
|
|
|
|
|
|
- Update to 3.11.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Fri Jul 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 3.9.1-2
|
|
|
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Mon Jul 17 2023 Lumír Balhar <lbalhar@redhat.com> - 3.9.1-1
|
|
|
|
|
|
|
|
- Update to 3.9.1 (rhbz#2156775)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Fri Jun 30 2023 Tomáš Hrnčiar <thrnciar@redhat.com> - 3.5.1-1
|
|
|
|
|
|
|
|
- Update to 3.5.1
|
|
|
|
|
|
|
|
- Fixes: rhbz#2156775
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Tue Jun 13 2023 Python Maint <python-maint@redhat.com> - 2.6.0-3
|
|
|
|
|
|
|
|
- Rebuilt for Python 3.12
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Fri Jan 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.0-2
|
|
|
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Thu Dec 08 2022 Lumír Balhar <lbalhar@redhat.com> - 2.6.0-1
|
|
|
|
|
|
|
|
- Update to 2.6.0 (rhbz#2151438)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.5.2-3
|
|
|
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Mon Jun 13 2022 Python Maint <python-maint@redhat.com> - 2.5.2-2
|
|
|
|
|
|
|
|
- Rebuilt for Python 3.11
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Thu Apr 21 2022 Benjamin A. Beasley <code@musicinmybrain.net> - 2.5.2-1
|
|
|
|
|
|
|
|
- Update to 2.5.2; accommodate upstream’s switch to hatchling build backend
|
|
|
|
|
|
|
|
- Add a build conditional for the tests
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Tue Mar 22 2022 Benjamin A. Beasley <code@musicinmybrain.net> - 2.5.1-1
|
|
|
|
|
|
|
|
- Update to 2.5.1 (close RHBZ#2007878)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.0-4
|
|
|
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Sat Dec 04 2021 Carl George <carl@george.computer> - 2.3.0-3
|
|
|
|
|
|
|
|
- Use "test" extra to generate buildrequires
|
|
|
|
|
|
|
|
- Run tests with %%pytest
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Tue Oct 26 2021 Miro Hrončok <mhroncok@redhat.com> - 2.3.0-2
|
|
|
|
|
|
|
|
- Don't use tox during the build to avoid a build dependency loop
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Mon Aug 30 2021 Carl George <carl@george.computer> - 2.3.0-1
|
|
|
|
|
|
|
|
- Latest upstream
|
|
|
|
|
|
|
|
- Resolves: rhbz#1999337
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Sun Aug 01 2021 Carl George <carl@george.computer> - 2.2.0-1
|
|
|
|
|
|
|
|
- Latest upstream
|
|
|
|
|
|
|
|
- Resolves: rhbz#1985567
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Fri Jul 23 2021 Miro Hrončok <mhroncok@redhat.com> - 2.0.0-3
|
|
|
|
|
|
|
|
- Let %%pyproject_buildrequires know we need appdirs
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.0-2
|
|
|
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Mon Jul 12 2021 Carl George <carl@george.computer> - 2.0.0-1
|
|
|
|
|
|
|
|
- Initial package rhbz#1981607
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
## END: Generated by rpmautospec
|