You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
96 lines
3.0 KiB
96 lines
3.0 KiB
%global modname schema
|
|
|
|
Name: python-%{modname}
|
|
Version: 0.7.0
|
|
Release: 1%{?dist}
|
|
Summary: Simple data validation library
|
|
|
|
License: MIT
|
|
URL: https://github.com/keleshev/schema
|
|
Source0: %pypi_source schema
|
|
|
|
BuildArch: noarch
|
|
|
|
%global _description \
|
|
schema is a library for validating Python data structures, such as those\
|
|
obtained from config-files, forms, external services or command-line parsing,\
|
|
converted from JSON/YAML (or something else) to Python data-types.
|
|
|
|
%description %{_description}
|
|
|
|
%package -n python3-%{modname}
|
|
Summary: %{summary}
|
|
%{?python_provide:%python_provide python3-%{modname}}
|
|
BuildRequires: python3-devel
|
|
BuildRequires: python3-setuptools
|
|
BuildRequires: python3-pytest
|
|
BuildRequires: python3-mock
|
|
|
|
%description -n python3-%{modname} %{_description}
|
|
|
|
Python 3 version.
|
|
|
|
%prep
|
|
%autosetup -n %{modname}-%{version}
|
|
|
|
%build
|
|
%py3_build
|
|
|
|
%install
|
|
%py3_install
|
|
|
|
%check
|
|
py.test-%{python3_version} -v
|
|
|
|
%files -n python3-%{modname}
|
|
%license LICENSE-MIT
|
|
%doc README.rst
|
|
%{python3_sitelib}/%{modname}-*.egg-info/
|
|
%{python3_sitelib}/%{modname}.py
|
|
%{python3_sitelib}/__pycache__/%{modname}.*
|
|
|
|
%changelog
|
|
* Tue Aug 20 2019 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.7.0-1
|
|
- Upgrade to 0.7.0
|
|
- Add missing BR to python-mock
|
|
|
|
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 0.6.8-5
|
|
- Rebuilt for Python 3.8
|
|
|
|
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.8-4
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.8-3
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
* Fri Oct 12 2018 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 0.6.8-2
|
|
- Python2 binary package has been removed
|
|
See https://fedoraproject.org/wiki/Changes/Mass_Python_2_Package_Removal
|
|
|
|
* Tue Jul 24 2018 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.6.8-1
|
|
- Update to 0.6.8
|
|
|
|
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.0-8
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 0.5.0-7
|
|
- Rebuilt for Python 3.7
|
|
|
|
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.0-6
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.0-5
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.0-4
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 0.5.0-3
|
|
- Rebuild for Python 3.6
|
|
|
|
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.5.0-2
|
|
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
|
|
|
|
* Tue May 10 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.5.0-1
|
|
- Initial package
|