python-ruamel-yaml/python-ruamel-yaml.spec

65 lines
1.9 KiB
RPMSpec
Raw Normal View History

2020-03-02 11:14:42 +08:00
%global pypi_name ruamel.yaml
%global pname ruamel-yaml
%global debug_package %{nil}
Name: python-%{pname}
2022-05-20 10:17:46 +08:00
Version: 0.17.20
Release: 1
2020-03-02 11:14:42 +08:00
Summary: YAML 1.2 loader/dumper package for Python
License: MIT
URL: https://bitbucket.org/ruamel/yaml
2022-05-20 10:17:46 +08:00
Source0: https://files.pythonhosted.org/packages/source/r/ruamel.yaml/ruamel.yaml-%{version}.tar.gz
2020-03-02 11:14:42 +08:00
2022-05-20 10:17:46 +08:00
Patch0001: 0000-fix-big-endian-issues.patch
2020-03-02 11:14:42 +08:00
%description
ruamel.yaml is a YAML 1.2 loader/dumper package for Python.
It is a derivative of Kirill Simonovs PyYAML 3.11
%package -n python3-%{pname}
Summary: YAML 1.2 loader/dumper package for Python
BuildRequires: python3-devel, python3-setuptools, python3-pytest
BuildRequires: python3-ruamel-yaml-clib
%{?python_provide:%python_provide python3-%{pypi_name}}
Requires: python3-ruamel-yaml-clib, python3-setuptools
%description -n python3-%{pname}
ruamel.yaml is a YAML 1.2 loader/dumper package for Python.
It is a derivative of Kirill Simonovs PyYAML 3.11
%package_help
%prep
2022-05-20 10:17:46 +08:00
%autosetup -n %{pypi_name}-%{version} -p1
rm -rf *.egg-info
2020-03-02 11:14:42 +08:00
%build
%py3_build
%install
%{__python3} setup.py install --single-version-externally-managed --skip-build --root $RPM_BUILD_ROOT
2022-05-20 10:17:46 +08:00
##Tests are not included in the upstream tarball
#%check
#PYTHONPATH=$(echo build/lib) py.test-%{python3_version} _test/test_*.py
2020-03-02 11:14:42 +08:00
%files -n python3-%{pname}
%license LICENSE
%{python3_sitelib}/ruamel
%{python3_sitelib}/%{pypi_name}-%{version}-py*.pth
%{python3_sitelib}/%{pypi_name}-%{version}-py*.egg-info
2020-03-02 11:14:42 +08:00
%files help
%defattr(-,root,root)
2022-05-20 10:17:46 +08:00
%doc README.rst CHANGES
2020-03-02 11:14:42 +08:00
%changelog
2022-05-20 10:17:46 +08:00
* Fri May 20 2022 yaoxin <yaoxin30@h-partners.com> - 0.17.20-1
- Update to 0.17.20
*Tue Mar 29 2022 xu_ping <xuping33@huawei.com> - 0.16.5-2
- Fix testcase test_anchor and test_deprecation error
2020-03-02 11:14:42 +08:00
* Mon Mar 2 2020 openEuler Buildteam <buildteam@openeuler.org> - 0.16.5-1
- Package init