101 lines
3.1 KiB
RPMSpec
101 lines
3.1 KiB
RPMSpec
|
|
%global srcname tinycss2
|
|
|
|
|
|
%global py3_prefix python%{python3_pkgversion}
|
|
|
|
|
|
Name: python-%{srcname}
|
|
Version: 1.0.1
|
|
Release: 1%{?dist}
|
|
Summary: Low-level CSS parser for Python
|
|
|
|
License: BSD
|
|
URL: https://pypi.python.org/pypi/%{srcname}/
|
|
Source0: https://files.pythonhosted.org/packages/source/t/%{srcname}/%{srcname}-%{version}.tar.gz
|
|
# Fedora does not ship pytest's flake8/isort modules
|
|
Patch0: %{name}-disable-flake8-isort-for-pytest.patch
|
|
|
|
BuildArch: noarch
|
|
# required to run the tests
|
|
BuildRequires: %{py3_prefix}-devel
|
|
BuildRequires: %{py3_prefix}-pytest
|
|
BuildRequires: %{py3_prefix}-pytest-cov
|
|
BuildRequires: %{py3_prefix}-pytest-runner
|
|
# required for testing
|
|
BuildRequires: %{py3_prefix}-webencodings >= 0.4
|
|
|
|
%description
|
|
tinycss2 is a modern, low-level CSS parser for Python. tinycss2 is a rewrite of
|
|
tinycss with a simpler API, based on the more recent CSS Syntax Level 3
|
|
specification.
|
|
|
|
|
|
%package -n %{py3_prefix}-%{srcname}
|
|
Summary: Low-level CSS parser for Python 3
|
|
Requires: %{py3_prefix}-webencodings >= 0.4
|
|
%{?python_provide:%python_provide %{py3_prefix}-%{srcname}}
|
|
|
|
%description -n %{py3_prefix}-%{srcname}
|
|
tinycss2 is a modern, low-level CSS parser for Python. tinycss2 is a rewrite of
|
|
tinycss with a simpler API, based on the more recent CSS Syntax Level 3
|
|
specification.
|
|
|
|
|
|
%prep
|
|
%autosetup -n %{srcname}-%{version}
|
|
|
|
|
|
%build
|
|
%py3_build
|
|
|
|
|
|
%install
|
|
%py3_install
|
|
|
|
|
|
%check
|
|
%{__python3} -m pytest -v
|
|
# remove files which are only required for unit tests (including test.pyc/.pyo)
|
|
rm -rf %{buildroot}%{python3_sitelib}/%{srcname}/css-parsing-tests
|
|
rm -rf %{buildroot}%{python3_sitelib}/%{srcname}/test.py
|
|
rm -rf %{buildroot}%{python3_sitelib}/%{srcname}/__pycache__/test.*.py?
|
|
|
|
|
|
%files -n %{py3_prefix}-%{srcname}
|
|
%license LICENSE
|
|
%doc README.rst
|
|
%{python3_sitelib}/%{srcname}/
|
|
%{python3_sitelib}/%{srcname}-%{version}-py?.?.egg-info/
|
|
|
|
|
|
%changelog
|
|
* Thu Mar 07 2019 Felix Schwarz <fschwarz@fedoraproject.org> 1.0.1-1
|
|
- update to new upstream version
|
|
|
|
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.1-8
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
* Fri Oct 12 2018 Felix Schwarz <fschwarz@fedoraproject.org> - 0.6.1-7
|
|
- remove even more Python 2 leftovers
|
|
|
|
* Fri Oct 12 2018 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 0.6.1-6
|
|
- Python2 binary package has been removed
|
|
See https://fedoraproject.org/wiki/Changes/Mass_Python_2_Package_Removal
|
|
|
|
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.1-5
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 0.6.1-4
|
|
- Rebuilt for Python 3.7
|
|
|
|
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.1-3
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
* Sat Dec 16 2017 Felix Schwarz <fschwarz@fedoraproject.org> 0.6.1-2
|
|
- remove also generated bytecode for test.py in Python 3
|
|
- more specific files specification
|
|
|
|
* Tue Dec 12 2017 Felix Schwarz <fschwarz@fedoraproject.org> 0.6.1-1
|
|
- initial package
|
|
|