blob: fef04f3b3e3a0e3e0363548f027a1c1cb280da0f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
%global _empty_manifest_terminate_build 0
Name: python-trove-classifiers
Version: 2024.10.21.16
Release: 1
Summary: Canonical source for classifiers on PyPI (pypi.org).
License: Apache-2.0
URL: https://github.com/pypa/trove-classifiers
Source0: https://files.pythonhosted.org/packages/source/t/trove_classifiers/trove_classifiers-%{version}.tar.gz
BuildArch: noarch
BuildRequires: python3-devel
BuildRequires: python3-setuptools
BuildRequires: python3-pbr
BuildRequires: python3-pip
BuildRequires: python3-wheel
BuildRequires: python3-hatchling
%description
Canonical source for classifiers on PyPI (pypi.org).
%package -n python3-trove-classifiers
Summary: Canonical source for classifiers on PyPI (pypi.org).
Provides: python-trove-classifiers
BuildRequires: python3-devel
BuildRequires: python3-setuptools
BuildRequires: python3-hatchling
%description -n python3-trove-classifiers
Canonical source for classifiers on PyPI (pypi.org).
%package help
Summary: Development documents and examples for trove-classifiers
Provides: python3-trove-classifiers-doc
%description help
Development documents and examples for trove-classifiers.
%prep
%autosetup -n trove_classifiers-%{version}
%build
%pyproject_build
%install
%pyproject_install
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
%files -n python3-trove-classifiers
%doc README.md
%license LICENSE
%{python3_sitelib}/trove_classifiers
%{python3_sitelib}/trove_classifiers*.dist-info/
%files help
%{_docdir}/*
%changelog
* Thu Nov 07 2024 caiyuxin <caiyuxin@kylinos.cn> - 2024.10.21.16-1
- Update package to version 2024.10.21.16
* update calver to include hour
* Add Django trove classifiers for 5 and upcoming 5.2 release.
* Sat Sep 21 2024 xuhe <xuhe@kylinos.cn> - 2024.9.12-1
- Update version to 2024.9.12
- Add Odoo 18 trove classifier.
* Wed Jul 24 2024 kywqs <weiqingsong@kylinos.cn> - 2024.7.2-1
- update version to 2024.7.2
- Add CUDA 12.3-12.5 classifiers
- Add Trove classifier for Django 5.1
* Mon Apr 22 2024 zhaojingyu <zhaojingyu@kylinos.cn> - 2024.1.8-1
- update package to version 2024.1.8
- Added classifiers for Controller Area Network
* Thu Nov 2 2023 Dongxing Wang <dxwangk@isoftstone.com> - 2023.10.18-1
- Init package
|