]> git.pld-linux.org Git - packages/python-sphinx_rtd_theme.git/commitdiff
- updated to 0.4.3 auto/th/python-sphinx_rtd_theme-0.4.3-1
authorJakub Bogusz <qboosh@pld-linux.org>
Sat, 21 Sep 2019 19:32:08 +0000 (21:32 +0200)
committerJakub Bogusz <qboosh@pld-linux.org>
Sat, 21 Sep 2019 19:32:08 +0000 (21:32 +0200)
python-sphinx_rtd_theme.spec

index f3240325529444ee4f66fa871f7d9250fd683f68..61f58db468c56737dc84f90930d77d72c4d507bd 100644 (file)
@@ -2,28 +2,37 @@
 # Conditional build:
 %bcond_without python2 # CPython 2.x module
 %bcond_without python3 # CPython 3.x module
+%bcond_without tests   # unit tests
 
 %define        module  sphinx_rtd_theme
 Summary:       ReadTheDocs.org theme for Sphinx
 Summary(pl.UTF-8):     Motyw ReadTheDocs.org dla Sphinksa
 Name:          python-%{module}
-Version:       0.4.0
+Version:       0.4.3
 Release:       1
 License:       MIT
 Group:         Libraries/Python
 #Source0Download: https://pypi.org/simple/sphinx_rtd_theme/
 Source0:       https://files.pythonhosted.org/packages/source/s/sphinx_rtd_theme/%{module}-%{version}.tar.gz
-# Source0-md5: 2393b28863f9576ca7074d764cb2f0e3
+# Source0-md5: 6c50f30bc39046f497d336039a0c13fa
 URL:           https://github.com/snide/sphinx_rtd_theme/
 BuildRequires: rpm-pythonprov
 BuildRequires: rpmbuild(macros) >= 1.714
 %if %{with python2}
 BuildRequires: python-modules >= 1:2.7
 BuildRequires: python-setuptools
+%if %{with tests}
+BuildRequires: python-pytest
+BuildRequires: python-readthedocs-sphinx-ext
+%endif
 %endif
 %if %{with python3}
 BuildRequires: python3-modules >= 1:3.3
 BuildRequires: python3-setuptools
+%if %{with tests}
+BuildRequires: python3-pytest
+BuildRequires: python3-readthedocs-sphinx-ext
+%endif
 %endif
 Requires:      python-modules >= 1:2.7
 BuildArch:     noarch
@@ -54,11 +63,19 @@ wykonany przez readthedocs.org.
 
 %build
 %if %{with python2}
-%py_build %{?with_tests:test}
+%py_build
+
+%if %{with tests}
+%{__python} -m pytest tests
+%endif
 %endif
 
 %if %{with python3}
-%py3_build %{?with_tests:test}
+%py3_build
+
+%if %{with tests}
+%{__python3} -m pytest tests
+%endif
 %endif
 
 %install
This page took 0.10869 seconds and 4 git commands to generate.