]> git.pld-linux.org Git - packages/python-markdown.git/blobdiff - python-markdown.spec
- updated to 3.1.1
[packages/python-markdown.git] / python-markdown.spec
index 24e725f7e8d0cd3ef7d7b5139fe34f7bfe987429..8317507b4971c8616e599b5175d76935761fdc5a 100644 (file)
-# TODO
-# - check py3 tests, are they ran?
-
+#
 # Conditional build:
-%bcond_without tests   # do not perform "make test"
-%bcond_without py3     # do not build python3 package
+%bcond_with    doc     # documentation
+%bcond_without tests   # unit tests
+%bcond_without python2 # python2 package
+%bcond_without python3 # python3 package
 
 %define        module  markdown
-Summary:       Markdown implementation in Python
+Summary:       Markdown implementation in Python 2
+Summary(pl.UTF-8):     Implementacja formatu Markdown w Pythonie 2
 Name:          python-%{module}
-Version:       2.6.2
-Release:       2
+Version:       3.1.1
+Release:       1
 License:       BSD
 Group:         Development/Languages/Python
-Source0:       http://pypi.python.org/packages/source/M/Markdown/Markdown-%{version}.tar.gz
-# Source0-md5: 256d19afcc564dc4ce4c229bb762f7ae
-URL:           http://packages.python.org/Markdown/
-BuildRequires: python-devel
+#Source0Download: https://pypi.org/simple/markdown/
+Source0:       https://files.pythonhosted.org/packages/source/M/Markdown/Markdown-%{version}.tar.gz
+# Source0-md5: d84732ecc65b3a1bff693d9d4c24277f
+URL:           https://pypi.org/project/markdown/
+%if %{with python2}
+BuildRequires: python-devel >= 1:2.7
 BuildRequires: python-elementtree
-BuildRequires: python-nose
-BuildRequires: rpm-pythonprov
-BuildRequires: rpmbuild(macros) >= 1.219
-%if %{with py3}
-BuildRequires: python3-devel
-BuildRequires: python3-nose
-# for converting before running the tests:
-BuildRequires: python-2to3
+BuildRequires: python-setuptools >= 36
+%if %{with tests}
+BuildRequires: python-PyYAML
+%endif
 %endif
+%if %{with python3}
+BuildRequires: python3-devel >= 1:3.5
+BuildRequires: python3-setuptools >= 36
+%if %{with tests}
+BuildRequires: python3-PyYAML
+%endif
+%endif
+BuildRequires: rpm-pythonprov
+BuildRequires: rpmbuild(macros) >= 1.714
 Requires:      python-elementtree
 Provides:      python-Markdown = %{version}-%{release}
-Obsoletes:     python-Markdown = 2.2.1
+Obsoletes:     python-Markdown < 2.3
 BuildArch:     noarch
 BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 %description
-This is a Python implementation of John Gruber's Markdown. It is
+This is a Python implementation of John Gruber's Markdown. It is
 almost completely compliant with the reference implementation, though
 there are a few known issues.
 
+%description -l pl.UTF-8
+Ten pakiet zawiera implementację formatu Markdown Johna Grubera w
+Pythonie 2. Jest prawie całkowicie zgodna z implementacją wzorcową,
+choć jest kilka znanych problemów.
+
 %package -n python3-markdown
-Summary:       Markdown implementation in Python
+Summary:       Markdown implementation in Python 3
+Summary(pl.UTF-8):     Implementacja formatu Markdown w Pythonie 3
 Group:         Development/Languages/Python
 
 %description -n python3-markdown
-This is a Python implementation of John Gruber's Markdown. It is
+This is a Python implementation of John Gruber's Markdown. It is
 almost completely compliant with the reference implementation, though
 there are a few known issues.
 
-%prep
-# install does not support --build-base. so create two different trees
-%setup -qc
-mv Markdown-%{version} py2
-cd py2
-
-# remove shebangs
-find markdown -type f -name '*.py' -exec sed -i -e '/^#!/{1D}' {} ';'
-
-# fix line-ending
-sed -i 's/\r//' docs/release-2.2.0.txt
+%description -n python3-markdown -l pl.UTF-8
+Ten pakiet zawiera implementację formatu Markdown Johna Grubera w
+Pythonie 3. Jest prawie całkowicie zgodna z implementacją wzorcową,
+choć jest kilka znanych problemów.
 
-cd ..
-cp -a py2 py3
+%prep
+%setup -q -n Markdown-%{version}
 
 %build
-cd py2
+%if %{with python2}
 %py_build
 
-%if %{with py3}
-cd ../py3
-%py3_build
+%if %{with tests}
+%{__python} -m unittest discover tests
 %endif
+%endif
+
+%if %{with python3}
+%py3_build
 
 %if %{with tests}
-cd ../py2
-./run-tests.py
-
-%if %{with py3}
-cd ../py3
-2to3 -d -w -n markdown tests run-tests.py > /dev/null
-# FIXME: run-tests.py shebang points to python2, is that correct?
-./run-tests.py
+%{__python3} -m unittest discover tests
+%endif
 %endif
+
+%if %{with doc}
+mkdocs
+mkdocs_nature
 %endif
 
 %install
 rm -rf $RPM_BUILD_ROOT
-# somewhy --build-base not supported in install
-cd py2
-%py_install \
-       --root $RPM_BUILD_ROOT
 
-%py_postclean
+%if %{with python2}
+%py_install
 
+%py_postclean
 # rename binary
-mv $RPM_BUILD_ROOT%{_bindir}/markdown_py{,-%{py_ver}}
-
-%if %{with py3}
-cd ../py3
-%py3_install \
-       --root $RPM_BUILD_ROOT
+%{__mv} $RPM_BUILD_ROOT%{_bindir}/markdown_py{,-%{py_ver}}
+%endif
 
+%if %{with python3}
+%py3_install
 # rename binary
-mv $RPM_BUILD_ROOT%{_bindir}/markdown_py{,-%{py3_ver}}
+%{__mv} $RPM_BUILD_ROOT%{_bindir}/markdown_py{,-%{py3_ver}}
+# default binary
+ln -s markdown_py-%{py3_ver} $RPM_BUILD_ROOT%{_bindir}/markdown_py
 %endif
 
-# 2.X binary is called by default for now
-ln -s markdown_py-%{py_ver} $RPM_BUILD_ROOT%{_bindir}/markdown_py
-
 %clean
 rm -rf $RPM_BUILD_ROOT
 
+%if %{with python2}
 %files
 %defattr(644,root,root,755)
-%doc py2/docs/*
-%attr(755,root,root) %{_bindir}/markdown_py
+%doc LICENSE.md README.md docs/{change_log,extensions,authors.md,cli.md,favicon.ico,index.md,py.png,reference.md}
 %attr(755,root,root) %{_bindir}/markdown_py-%{py_ver}
 %{py_sitescriptdir}/markdown
 %{py_sitescriptdir}/Markdown-%{version}-py*.egg-info
+%endif
 
-%if %{with py3}
+%if %{with python3}
 %files -n python3-markdown
 %defattr(644,root,root,755)
-%doc py3/docs/*
+%doc LICENSE.md README.md docs/{change_log,extensions,authors.md,cli.md,favicon.ico,index.md,py.png,reference.md}
+%attr(755,root,root) %{_bindir}/markdown_py
 %attr(755,root,root) %{_bindir}/markdown_py-%{py3_ver}
-%{py3_sitescriptdir}/Markdown-%{version}-py*.egg-info
 %{py3_sitescriptdir}/markdown
+%{py3_sitescriptdir}/Markdown-%{version}-py*.egg-info
 %endif
This page took 0.07594 seconds and 4 git commands to generate.