2013-07-08 02:48:56 +00:00
|
|
|
%global modulename html5lib
|
2014-06-18 13:42:54 +00:00
|
|
|
%if 0%{?fedora}
|
2013-07-08 16:21:51 +00:00
|
|
|
%global with_python3 1
|
2014-06-18 13:42:54 +00:00
|
|
|
%endif
|
2011-07-18 16:59:43 +00:00
|
|
|
|
|
|
|
Name: python-%{modulename}
|
|
|
|
Summary: A python based HTML parser/tokenizer
|
2014-03-01 16:25:14 +00:00
|
|
|
Version: 0.999
|
2017-02-11 09:15:09 +00:00
|
|
|
Release: 13%{?dist}
|
2014-03-12 19:37:40 +00:00
|
|
|
Epoch: 1
|
2011-07-18 16:59:43 +00:00
|
|
|
Group: Development/Libraries
|
|
|
|
License: MIT
|
2013-07-08 02:48:56 +00:00
|
|
|
URL: https://pypi.python.org/pypi/%{modulename}
|
2011-07-18 16:59:43 +00:00
|
|
|
|
2016-12-12 18:17:03 +00:00
|
|
|
Source0: https://pypi.python.org/packages/source/h/%{modulename}/%{modulename}-%{version}.tar.gz
|
|
|
|
# Patch for fixing invalid escape sequences with Python 3.6
|
|
|
|
Patch0: fix-invalid-escape-sequences.patch
|
2011-07-18 16:59:43 +00:00
|
|
|
|
|
|
|
BuildArch: noarch
|
2016-12-30 23:56:20 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
A python based HTML parser/tokenizer based on the WHATWG HTML5
|
|
|
|
specification for maximum compatibility with major desktop web browsers.
|
|
|
|
|
|
|
|
%package -n python2-%{modulename}
|
|
|
|
Summary: A python based HTML parser/tokenizer
|
|
|
|
Group: Development/Libraries
|
|
|
|
|
2014-03-12 19:37:40 +00:00
|
|
|
Requires: python-six
|
2011-07-18 16:59:43 +00:00
|
|
|
BuildRequires: python-setuptools
|
2012-02-21 17:09:29 +00:00
|
|
|
BuildRequires: python2-devel
|
2013-07-08 02:48:56 +00:00
|
|
|
BuildRequires: python-nose
|
|
|
|
BuildRequires: python-six
|
2016-12-31 07:07:18 +00:00
|
|
|
%{?python_provide:%python_provide python2-%{modulename}}
|
2012-02-21 17:09:29 +00:00
|
|
|
|
2016-12-30 23:56:20 +00:00
|
|
|
%description -n python2-%{modulename}
|
2011-07-18 16:59:43 +00:00
|
|
|
A python based HTML parser/tokenizer based on the WHATWG HTML5
|
|
|
|
specification for maximum compatibility with major desktop web browsers.
|
|
|
|
|
2012-02-21 17:09:29 +00:00
|
|
|
%if 0%{?with_python3}
|
|
|
|
%package -n python3-%{modulename}
|
|
|
|
Summary: A python based HTML parser/tokenizer
|
|
|
|
Group: Development/Libraries
|
|
|
|
|
2014-05-09 19:23:09 +00:00
|
|
|
Requires: python3-six
|
|
|
|
BuildRequires: python3-devel
|
2016-12-30 23:56:20 +00:00
|
|
|
BuildRequires: python3-setuptools
|
2014-05-09 19:23:09 +00:00
|
|
|
BuildRequires: python3-nose
|
|
|
|
BuildRequires: python3-six
|
2016-12-31 07:07:18 +00:00
|
|
|
%{?python_provide:%python_provide python3-%{modulename}}
|
2014-05-09 19:23:09 +00:00
|
|
|
|
2012-02-21 17:09:29 +00:00
|
|
|
%description -n python3-%{modulename}
|
|
|
|
A python based HTML parser/tokenizer based on the WHATWG HTML5
|
|
|
|
specification for maximum compatibility with major desktop web browsers.
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
2011-07-18 16:59:43 +00:00
|
|
|
%prep
|
2013-07-08 02:48:56 +00:00
|
|
|
%setup -q -n %{modulename}-%{version}
|
2016-12-12 18:17:03 +00:00
|
|
|
%patch0 -p1
|
2011-07-18 16:59:43 +00:00
|
|
|
|
2012-02-21 17:09:29 +00:00
|
|
|
|
2011-07-18 16:59:43 +00:00
|
|
|
%build
|
2016-12-30 23:56:20 +00:00
|
|
|
%py2_build
|
2011-07-18 16:59:43 +00:00
|
|
|
|
2012-02-21 17:09:29 +00:00
|
|
|
%if 0%{?with_python3}
|
2016-12-30 23:56:20 +00:00
|
|
|
%py3_build
|
2012-02-21 17:09:29 +00:00
|
|
|
%endif
|
|
|
|
|
|
|
|
|
2011-07-18 16:59:43 +00:00
|
|
|
%install
|
2012-02-21 17:09:29 +00:00
|
|
|
%if 0%{?with_python3}
|
2016-12-30 23:56:20 +00:00
|
|
|
%py3_install
|
2012-02-21 17:09:29 +00:00
|
|
|
%endif
|
|
|
|
|
2016-12-30 23:56:20 +00:00
|
|
|
%py2_install
|
2011-07-18 16:59:43 +00:00
|
|
|
|
|
|
|
%check
|
2016-12-30 23:56:20 +00:00
|
|
|
nosetests-%{python2_version}
|
2011-07-18 16:59:43 +00:00
|
|
|
|
2012-02-21 17:09:29 +00:00
|
|
|
%if 0%{?with_python3}
|
2014-05-15 13:45:00 +00:00
|
|
|
nosetests-%{python3_version}
|
2012-02-21 17:09:29 +00:00
|
|
|
%endif
|
|
|
|
|
2016-12-30 23:56:20 +00:00
|
|
|
%files -n python2-%{modulename}
|
|
|
|
%license LICENSE
|
|
|
|
%doc CHANGES.rst README.rst
|
2011-07-18 16:59:43 +00:00
|
|
|
%{python_sitelib}/%{modulename}-*.egg-info
|
|
|
|
%{python_sitelib}/%{modulename}
|
|
|
|
|
2012-02-21 17:09:29 +00:00
|
|
|
%if 0%{?with_python3}
|
|
|
|
%files -n python3-%{modulename}
|
2016-12-30 23:56:20 +00:00
|
|
|
%license LICENSE
|
|
|
|
%doc CHANGES.rst README.rst
|
2012-02-21 17:09:29 +00:00
|
|
|
%{python3_sitelib}/%{modulename}-*.egg-info
|
|
|
|
%{python3_sitelib}/%{modulename}
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
2011-07-18 16:59:43 +00:00
|
|
|
%changelog
|
2017-02-11 09:15:09 +00:00
|
|
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:0.999-13
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2016-12-31 07:07:18 +00:00
|
|
|
* Fri Dec 30 2016 Toshio Kuratomi <toshio@fedoraproject.org> - 1:0.999-12
|
|
|
|
- Correct usage of the %%python_provide macro
|
|
|
|
|
2016-12-30 23:56:20 +00:00
|
|
|
* Fri Dec 30 2016 Orion Poplawski <orion@cora.nwra.com> - 1:0.999-11
|
|
|
|
- Ship python2-html5lib
|
|
|
|
- Modernize spec
|
|
|
|
- Use %%license
|
|
|
|
|
2016-12-12 18:17:03 +00:00
|
|
|
* Mon Dec 12 2016 Charalampos Stratakis <cstratak@redhat.com> - 1:0.999-10
|
|
|
|
- Rebuild for Python 3.6
|
|
|
|
- Fix invalid escape sequences
|
|
|
|
|
2016-07-19 10:00:15 +00:00
|
|
|
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:0.999-9
|
|
|
|
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
|
|
|
|
|
2016-02-04 19:52:15 +00:00
|
|
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1:0.999-8
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2015-11-03 19:15:12 +00:00
|
|
|
* Tue Nov 03 2015 Robert Kuska <rkuska@redhat.com> - 1:0.999-7
|
|
|
|
- Rebuilt for Python3.5 rebuild
|
|
|
|
|
2015-06-18 19:36:06 +00:00
|
|
|
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:0.999-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2014-06-07 20:48:44 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:0.999-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-05-15 13:45:00 +00:00
|
|
|
* Wed May 14 2014 Bohuslav Kabrda <bkabrda@redhat.com> - 1:0.999-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4
|
|
|
|
|
2014-05-09 19:23:09 +00:00
|
|
|
* Fri May 09 2014 Dennis Gilmore <dennis@ausil.us> - 0.999-3
|
|
|
|
- move python3 Requires and BuildRequires into the python3 sub-package
|
|
|
|
|
2014-03-12 19:37:40 +00:00
|
|
|
* Wed Mar 12 2014 Dan Scott <dan@coffeecode.net> - 0.999-2
|
|
|
|
- "six" module is a runtime requirement
|
|
|
|
|
2014-03-01 16:25:14 +00:00
|
|
|
* Sat Mar 01 2014 Praveen Kumar <kumarpraveen.nitdgp@gmail.com> 0.999-1
|
|
|
|
- Added epoch information
|
|
|
|
|
|
|
|
* Wed Feb 26 2014 Dan Scott <dan@coffeecode.net> - 0.999-1
|
|
|
|
- Updated for new version
|
|
|
|
- Fixed bogus dates in changelog
|
|
|
|
|
2013-08-04 07:58:45 +00:00
|
|
|
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0b2-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2014-03-01 16:25:14 +00:00
|
|
|
* Mon Jul 8 2013 Praveen Kumar <kumarpraveen.nitdgp@gmail.com> - 1.0b2-2
|
2013-07-08 16:47:19 +00:00
|
|
|
- Updated python3 support which accidently removed from previous revision.
|
|
|
|
|
2014-03-01 16:25:14 +00:00
|
|
|
* Mon Jul 8 2013 Praveen Kumar <kumarpraveen.nitdgp@gmail.com> - 1.0b2-1
|
2013-07-08 02:48:56 +00:00
|
|
|
- Updated new source
|
|
|
|
|
2013-02-14 19:39:07 +00:00
|
|
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.95-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2012-08-04 08:55:33 +00:00
|
|
|
* Sat Aug 04 2012 David Malcolm <dmalcolm@redhat.com> - 0.95-3
|
|
|
|
- rebuild for https://fedoraproject.org/wiki/Features/Python_3.3
|
|
|
|
|
2012-07-21 06:35:08 +00:00
|
|
|
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.95-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-02-21 17:09:29 +00:00
|
|
|
* Tue Feb 21 2012 Praveen Kumar <kumarpraveen.nitdgp@gmail.com> - 0.95-1
|
|
|
|
- Added python3 spec and updated new source
|
2012-01-14 01:46:55 +00:00
|
|
|
|
2011-07-18 16:59:43 +00:00
|
|
|
* Mon Jul 18 2011 Praveen Kumar <kumarpraveen.nitdgp@gmail.com> - 0.90-1
|
|
|
|
- Initial spec
|