2016-10-20 13:08:55 +00:00
|
|
|
|
%global pypi_name ruamel.yaml
|
|
|
|
|
%global pname ruamel-yaml
|
2017-01-31 22:44:30 +00:00
|
|
|
|
%global commit 113e4054a46c
|
2016-10-20 13:08:55 +00:00
|
|
|
|
|
2016-10-26 20:49:09 +00:00
|
|
|
|
%global with_python3 1
|
2016-10-20 13:08:55 +00:00
|
|
|
|
|
|
|
|
|
Name: python-%{pname}
|
2017-01-31 22:44:30 +00:00
|
|
|
|
Version: 0.13.13
|
2017-02-11 10:24:20 +00:00
|
|
|
|
Release: 2%{?dist}
|
2016-10-20 13:08:55 +00:00
|
|
|
|
Summary: YAML 1.2 loader/dumper package for Python
|
|
|
|
|
|
|
|
|
|
License: MIT
|
|
|
|
|
URL: https://bitbucket.org/ruamel/yaml
|
2016-10-26 20:49:09 +00:00
|
|
|
|
#Source0: https://files.pythonhosted.org/packages/source/r/%{pypi_name}/%{pypi_name}-%{version}.tar.gz
|
|
|
|
|
# Use bitbucket sources so we can run the tests
|
|
|
|
|
Source0: https://bitbucket.org/ruamel/yaml/get/%{version}.tar.gz#/%{pname}-%{version}.tar.gz
|
2017-01-31 22:30:07 +00:00
|
|
|
|
# Works with pytest 2.7
|
|
|
|
|
Patch0: python-ruamel-yaml-pytest27.patch
|
2016-10-20 13:08:55 +00:00
|
|
|
|
|
|
|
|
|
BuildRequires: libyaml-devel
|
|
|
|
|
|
|
|
|
|
%description
|
|
|
|
|
ruamel.yaml is a YAML 1.2 loader/dumper package for Python.
|
|
|
|
|
It is a derivative of Kirill Simonov’s PyYAML 3.11
|
|
|
|
|
|
|
|
|
|
%package -n python2-%{pname}
|
|
|
|
|
Summary: YAML 1.2 loader/dumper package for Python
|
2016-10-26 20:49:09 +00:00
|
|
|
|
BuildRequires: python2-devel
|
|
|
|
|
BuildRequires: python-setuptools
|
|
|
|
|
# For tests
|
|
|
|
|
BuildRequires: pytest
|
|
|
|
|
BuildRequires: python2-ruamel-ordereddict
|
|
|
|
|
BuildRequires: python2-typing
|
2016-10-20 13:08:55 +00:00
|
|
|
|
%{?python_provide:%python_provide python2-%{pypi_name}}
|
|
|
|
|
|
2016-10-26 20:49:09 +00:00
|
|
|
|
Requires: python2-ruamel-ordereddict
|
2016-10-24 05:56:21 +00:00
|
|
|
|
Requires: python2-typing
|
2016-10-20 13:08:55 +00:00
|
|
|
|
Requires: python-setuptools
|
|
|
|
|
|
|
|
|
|
%description -n python2-%{pname}
|
|
|
|
|
ruamel.yaml is a YAML 1.2 loader/dumper package for Python.
|
|
|
|
|
It is a derivative of Kirill Simonov’s PyYAML 3.11
|
|
|
|
|
|
|
|
|
|
%if 0%{?with_python3}
|
2016-10-26 20:49:09 +00:00
|
|
|
|
%package -n python%{python3_pkgversion}-%{pname}
|
2016-10-20 13:08:55 +00:00
|
|
|
|
Summary: YAML 1.2 loader/dumper package for Python
|
2016-10-26 20:49:09 +00:00
|
|
|
|
BuildRequires: python%{python3_pkgversion}-devel
|
|
|
|
|
BuildRequires: python%{python3_pkgversion}-setuptools
|
|
|
|
|
# For tests
|
|
|
|
|
BuildRequires: python%{python3_pkgversion}-pytest
|
2016-10-26 22:22:51 +00:00
|
|
|
|
# typing was added in Python 3.5
|
|
|
|
|
%if %{python3_pkgversion} == 34
|
|
|
|
|
BuildRequires: python%{python3_pkgversion}-typing
|
|
|
|
|
%endif
|
2016-10-26 20:49:09 +00:00
|
|
|
|
%{?python_provide:%python_provide python%{python3_pkgversion}-%{pypi_name}}
|
2016-10-20 13:08:55 +00:00
|
|
|
|
|
2016-10-26 20:49:09 +00:00
|
|
|
|
Requires: python%{python3_pkgversion}-setuptools
|
2016-10-26 22:22:51 +00:00
|
|
|
|
%if %{python3_pkgversion} == 34
|
|
|
|
|
Requires: python%{python3_pkgversion}-typing
|
|
|
|
|
%endif
|
2016-10-20 13:08:55 +00:00
|
|
|
|
|
2016-10-26 20:49:09 +00:00
|
|
|
|
%description -n python%{python3_pkgversion}-%{pname}
|
2016-10-20 13:08:55 +00:00
|
|
|
|
ruamel.yaml is a YAML 1.2 loader/dumper package for Python.
|
|
|
|
|
It is a derivative of Kirill Simonov’s PyYAML 3.11
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%prep
|
2017-01-31 22:30:07 +00:00
|
|
|
|
%autosetup -n %{pname}-%{commit} -p1
|
2016-10-20 13:08:55 +00:00
|
|
|
|
rm -rf %{pypi_name}.egg-info
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
|
%py2_build
|
|
|
|
|
%if 0%{?with_python3}
|
|
|
|
|
%py3_build
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
|
%if 0%{?with_python3}
|
|
|
|
|
%{__python3} setup.py install --single-version-externally-managed --skip-build --root $RPM_BUILD_ROOT
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%{__python2} setup.py install --single-version-externally-managed --skip-build --root $RPM_BUILD_ROOT
|
|
|
|
|
|
2016-10-26 20:49:09 +00:00
|
|
|
|
%check
|
2017-01-31 22:30:07 +00:00
|
|
|
|
PYTHONPATH=$(echo build/lib.*%{python2_version}) py.test-%{python2_version} _test/test_*.py
|
2016-10-26 20:49:09 +00:00
|
|
|
|
%if 0%{?with_python3}
|
|
|
|
|
PYTHONPATH=$(echo build/lib.*%{python3_version}) py.test-%{python3_version} _test/test_*.py
|
|
|
|
|
%endif
|
|
|
|
|
|
2016-10-20 13:08:55 +00:00
|
|
|
|
%files -n python2-%{pname}
|
|
|
|
|
%license LICENSE
|
|
|
|
|
%doc README.rst
|
|
|
|
|
%{python2_sitearch}/ruamel
|
|
|
|
|
%{python2_sitearch}/_ruamel_yaml.so
|
|
|
|
|
%{python2_sitearch}/%{pypi_name}-%{version}-py?.?-*.pth
|
|
|
|
|
%{python2_sitearch}/%{pypi_name}-%{version}-py?.?.egg-info
|
|
|
|
|
|
|
|
|
|
%if 0%{?with_python3}
|
2016-10-26 20:49:09 +00:00
|
|
|
|
%files -n python%{python3_pkgversion}-%{pname}
|
2016-10-20 13:08:55 +00:00
|
|
|
|
%license LICENSE
|
|
|
|
|
%doc README.rst
|
|
|
|
|
%{python3_sitearch}/ruamel
|
2016-10-26 22:22:51 +00:00
|
|
|
|
%{python3_sitearch}/_ruamel_yaml.cpython-*
|
2016-10-20 13:08:55 +00:00
|
|
|
|
%{python3_sitearch}/%{pypi_name}-%{version}-py?.?-*.pth
|
|
|
|
|
%{python3_sitearch}/%{pypi_name}-%{version}-py?.?.egg-info
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%changelog
|
2017-02-11 10:24:20 +00:00
|
|
|
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.13.13-2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
|
2017-01-31 22:44:30 +00:00
|
|
|
|
* Tue Jan 31 2017 Orion Poplawski <orion@cora.nwra.com> - 0.13.13-1
|
|
|
|
|
- Update to 0.13.13
|
|
|
|
|
|
2017-01-31 22:30:07 +00:00
|
|
|
|
* Tue Jan 31 2017 Orion Poplawski <orion@cora.nwra.com> - 0.12.14-7
|
|
|
|
|
- Add patch to support pytest 2.7 in EPEL7
|
|
|
|
|
|
2016-12-19 17:20:38 +00:00
|
|
|
|
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 0.12.14-6
|
|
|
|
|
- Rebuild for Python 3.6
|
|
|
|
|
|
2016-10-26 22:22:51 +00:00
|
|
|
|
* Wed Oct 26 2016 Orion Poplawski <orion@cora.nwra.com> - 0.12.14-5
|
|
|
|
|
- Require python34-typing on EPEL
|
|
|
|
|
- Ignore python2 test failure due to old pytest on EPEL7
|
|
|
|
|
|
2016-10-26 20:49:09 +00:00
|
|
|
|
* Wed Oct 26 2016 Orion Poplawski <orion@cora.nwra.com> - 0.12.14-4
|
|
|
|
|
- Build python3 package
|
|
|
|
|
- Run tests
|
|
|
|
|
|
2016-10-25 12:02:27 +00:00
|
|
|
|
* Tue Oct 25 2016 Chandan Kumar <chkumar@redhat.com> - 0.12.14-3
|
|
|
|
|
- Disabling python3 as python3-ruamel-ordereddict not available
|
|
|
|
|
|
2016-10-24 05:58:40 +00:00
|
|
|
|
* Mon Oct 24 2016 Chandan Kumar <chkumar@redhat.com> - 0.12.14-2
|
|
|
|
|
- Fixed python2-typing runtime dependency issue
|
|
|
|
|
|
2016-10-20 13:08:55 +00:00
|
|
|
|
* Fri Oct 14 2016 Chandan Kumar <chkumar@redhat.com> - 0.12.14-1
|
|
|
|
|
- Initial package.
|