c36559
%global pypi_name toml
c36559
%global desc TOML aims to be a minimal configuration file format that's easy to read due to \
c36559
obvious semantics. TOML is designed to map unambiguously to a hash table. TOML \
c36559
should be easy to parse into data structures in a wide variety of languages. \
c36559
This package loads toml file into python dictionary and dump dictionary into \
c36559
toml file.
c36559
c36559
Name:           python-%{pypi_name}
c36559
Version:        0.10.1
c36559
Release:        5%{?dist}
c36559
Summary:        Python Library for Tom's Obvious, Minimal Language
c36559
c36559
License:        MIT
c36559
URL:            https://pypi.python.org/pypi/%{pypi_name}
c36559
Source0:        %{pypi_source}
c36559
c36559
BuildArch:      noarch
c36559
# Exclude i686 arch. Due to a modularity issue it's being added to the
c36559
# x86_64 compose of CRB, but we don't want to ship it at all.
c36559
# See: https://projects.engineering.redhat.com/browse/RCM-72605
c36559
ExcludeArch:    i686
c36559
c36559
BuildRequires:  python%{python3_pkgversion}-devel
c36559
BuildRequires:  python%{python3_pkgversion}-rpm-macros
c36559
BuildRequires:  python%{python3_pkgversion}-setuptools
c36559
c36559
# RHEL: tests disabled due to missing dependencies
c36559
%bcond_with tests
c36559
%if %{with tests}
c36559
BuildRequires:  python%{python3_pkgversion}-numpy
c36559
BuildRequires:  python%{python3_pkgversion}-pytest
c36559
BuildRequires:  /usr/bin/toml-test
c36559
%endif
c36559
c36559
%description
c36559
%desc
c36559
c36559
%package -n     python%{python3_pkgversion}-%{pypi_name}
c36559
Summary:        %{summary}
c36559
BuildRequires:  python%{python3_pkgversion}-devel
c36559
%{?python_provide:%python_provide python%{python3_pkgversion}-%{pypi_name}}
c36559
c36559
%description -n python%{python3_pkgversion}-%{pypi_name}
c36559
%desc
c36559
c36559
%prep
c36559
%autosetup -p1 -n %{pypi_name}-%{version}
c36559
# https://github.com/uiri/toml/pull/339
c36559
sed -i '/pytest-cov/d' tox.ini
c36559
c36559
c36559
%build
c36559
%py3_build
c36559
c36559
c36559
%install
c36559
%py3_install
c36559
c36559
c36559
%if %{with tests}
c36559
%check
c36559
ln -s /usr/share/toml-test/ .  # python tests require test cases here
c36559
%pytest
c36559
# Also using the language independent toml-test suite to launch tests
c36559
ln -s /usr/share/toml-test/tests/* tests/  # toml-test requires them here
c36559
toml-test $(pwd)/tests/decoding_test3.sh
c36559
%endif
c36559
c36559
c36559
%files -n python%{python3_pkgversion}-%{pypi_name}
c36559
%license LICENSE
c36559
%doc README.rst
c36559
%{python3_sitelib}/%{pypi_name}-%{version}-py%{python3_version}.egg-info/
c36559
%{python3_sitelib}/%{pypi_name}/
c36559
c36559
c36559
%changelog
c36559
* Tue Dec 01 2020 Tomas Orsava <torsava@redhat.com> - 0.10.1-5
c36559
- Convert spec for python39 module in RHEL8
c36559
- Revert usage of pyproject-rpm-macros
c36559
- Resolves: rhbz#1877430
c36559
c36559
* Fri Nov 13 2020 Miro Hrončok <mhroncok@redhat.com> - 0.10.1-4
c36559
- Don't BR pytest-cov
c36559
c36559
* Thu Sep 03 2020 Miro Hrončok <mhroncok@redhat.com> - 0.10.1-3
c36559
- Use pyproject-rpm-macros
c36559
c36559
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.10.1-2
c36559
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
c36559
c36559
* Fri Jun 19 2020 Miro Hrončok <mhroncok@redhat.com> - 0.10.1-1
c36559
- Update to 0.10.1 (#1835567)
c36559
c36559
* Sat May 23 2020 Miro Hrončok <mhroncok@redhat.com> - 0.10.0-8
c36559
- Rebuilt for Python 3.9
c36559
c36559
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.10.0-7
c36559
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
c36559
c36559
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 0.10.0-6
c36559
- Rebuilt for Python 3.8.0rc1 (#1748018)
c36559
c36559
* Fri Aug 16 2019 Miro Hrončok <mhroncok@redhat.com> - 0.10.0-5
c36559
- Rebuilt for Python 3.8
c36559
c36559
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.10.0-4
c36559
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
c36559
c36559
* Mon Feb 11 2019 Miro Hrončok <mhroncok@redhat.com> - 0.10.0-3
c36559
- Subpackage python2-toml has been removed
c36559
  See https://fedoraproject.org/wiki/Changes/Mass_Python_2_Package_Removal
c36559
c36559
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.10.0-2
c36559
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
c36559
c36559
* Sun Nov 25 2018 Julien Enselme <jujens@jujens.eu> - 0.10.0-1
c36559
- Update to 0.10.0 (#1652946)
c36559
c36559
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.4-5
c36559
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
c36559
c36559
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 0.9.4-4
c36559
- Rebuilt for Python 3.7
c36559
c36559
* Wed Feb 21 2018 Sayan Chowdhury <sayanchowdhury@fedoraproject.org> - 0.9.4-3
c36559
- Make changes to build the package for EPEL
c36559
c36559
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.4-2
c36559
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
c36559
c36559
* Wed Dec 27 2017 Julien Enselme <jujens@jujens.eu> - 0.9.4-1
c36559
- Update to 0.9.4
c36559
c36559
* Tue Sep 26 2017 Julien Enselme <jujens@jujens.eu> - 0.9.3-1
c36559
- Update to 0.9.3
c36559
c36559
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.2-4
c36559
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
c36559
c36559
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.2-3
c36559
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
c36559
c36559
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 0.9.2-2
c36559
- Rebuild for Python 3.6
c36559
c36559
* Thu Sep 01 2016 Julien Enselme <jujens@jujens.eu> - 0.9.2-1
c36559
- Update to 0.9.2
c36559
- Improve spec with %%summary and %%desc macros
c36559
c36559
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.1-7
c36559
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
c36559
c36559
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.1-6
c36559
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
c36559
c36559
* Wed Nov 11 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.1-5
c36559
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
c36559
c36559
* Mon Nov 9 2015 Julien Enselme <jujens@jujens.eu> - 0.9.1-4
c36559
- Correct %%python_provides for python3
c36559
c36559
* Thu Nov 5 2015 Julien Enselme <jujens@jujens.eu> - 0.9.1-3
c36559
- Rebuilt for python 3.5
c36559
c36559
* Sat Aug 8 2015 Julien Enselme <jujens@jujens.eu> - 0.9.1-2
c36559
- Enable tests suite
c36559
- Build python3 and python2 in the same directory
c36559
- Use %%py2_build, %%py3_build, %%py2_install and %%py2_install
c36559
- Move python2 package in its own subpackage
c36559
c36559
* Sat Jul 11 2015 Fedora Release Monitoring <release-monitoring@fedoraproject.org> - 0.9.1-1
c36559
- Update to 0.9.1 (#1242131)
c36559
c36559
* Sun Jun 28 2015 Julien Enselme <jujens@jujens.eu> - 0.9.0-2
c36559
- Update description to explain what toml is
c36559
- Try to import the package in %%check
c36559
c36559
* Mon Jun 15 2015 Julien Enselme <jujens@jujens.eu> - 0.9.0-1
c36559
- Initial packaging