194 lines
5.5 KiB
RPMSpec
194 lines
5.5 KiB
RPMSpec
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
|
|
|
|
%if 0%{?fedora} || 0%{?rhel} > 6
|
|
%global with_python3 1
|
|
%{!?python3_version: %global python3_version %(%{__python3} -c "import sys; sys.stdout.write(sys.version[:3])")}
|
|
%endif
|
|
|
|
%define srcname Markdown
|
|
|
|
Name: python-markdown
|
|
Version: 2.3.1
|
|
Release: 1%{?dist}
|
|
Summary: Markdown implementation in Python
|
|
Group: Development/Languages
|
|
License: BSD
|
|
URL: http://packages.python.org/%{srcname}/
|
|
Source0: http://pypi.python.org/packages/source/M/%{srcname}/%{srcname}-%{version}.tar.gz
|
|
BuildArch: noarch
|
|
BuildRequires: python-devel >= 2.6
|
|
BuildRequires: python-nose
|
|
Requires: python >= 2.6
|
|
%if 0%{?with_python3}
|
|
BuildRequires: python3-devel >= 3.1
|
|
BuildRequires: python3-nose
|
|
Requires: python3 >= 3.1
|
|
%endif # with_python3
|
|
|
|
|
|
%description
|
|
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.
|
|
|
|
|
|
%if 0%{?with_python3}
|
|
%package -n python3-markdown
|
|
Summary: Markdown implementation in Python
|
|
Group: Development/Languages
|
|
|
|
|
|
%description -n python3-markdown
|
|
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.
|
|
%endif # with_python3
|
|
|
|
|
|
%prep
|
|
%setup -q -n %{srcname}-%{version}
|
|
|
|
# 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
|
|
|
|
%if 0%{?with_python3}
|
|
cp -a . %{py3dir}
|
|
%endif # with_python3
|
|
|
|
|
|
%build
|
|
%{__python} setup.py build
|
|
|
|
%if 0%{?with_python3}
|
|
pushd %{py3dir}
|
|
%{__python3} setup.py build
|
|
popd
|
|
%endif # with_python3
|
|
|
|
|
|
%install
|
|
%{__python} setup.py install -O1 --skip-build --root %{buildroot}
|
|
|
|
# rename binary
|
|
mv %{buildroot}%{_bindir}/markdown_py{,-%{python_version}}
|
|
|
|
%if 0%{?with_python3}
|
|
pushd %{py3dir}
|
|
%{__python3} setup.py install -O1 --skip-build --root %{buildroot}
|
|
popd
|
|
|
|
# rename binary
|
|
mv %{buildroot}%{_bindir}/markdown_py{,-%{python3_version}}
|
|
%endif # with_python3
|
|
|
|
# 2.X binary is called by default for now
|
|
ln -s markdown_py-%{python_version} %{buildroot}%{_bindir}/markdown_py
|
|
|
|
|
|
%check
|
|
%{__python} run-tests.py
|
|
|
|
%if 0%{?with_python3}
|
|
pushd %{py3dir}
|
|
%{__python3} run-tests.py
|
|
popd
|
|
%endif # with_python3
|
|
|
|
|
|
%files
|
|
%doc build/docs/*
|
|
%{python_sitelib}/*
|
|
%{_bindir}/markdown_py
|
|
%{_bindir}/markdown_py-%{python_version}
|
|
|
|
|
|
%if 0%{?with_python3}
|
|
%files -n python3-markdown
|
|
%doc build/docs/*
|
|
%{python3_sitelib}/*
|
|
%{_bindir}/markdown_py-%{python3_version}
|
|
%endif # with_python3
|
|
|
|
|
|
%changelog
|
|
* Mon Apr 8 2013 Thomas Moschny <thomas.moschny@gmx.de> - 2.3.1-1
|
|
- Update to 2.3.1.
|
|
|
|
* Mon Mar 18 2013 Thomas Moschny <thomas.moschny@gmx.de> - 2.3-1
|
|
- Update to 2.3.
|
|
- Spec file cleanups.
|
|
|
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.1-2
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
* Fri Nov 23 2012 Thomas Moschny <thomas.moschny@gmx.de> - 2.2.1-1
|
|
- Update to 2.2.1.
|
|
|
|
* Sat Aug 04 2012 David Malcolm <dmalcolm@redhat.com> - 2.2.0-3
|
|
- rebuild for https://fedoraproject.org/wiki/Features/Python_3.3
|
|
|
|
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.0-2
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
* Sat Jul 14 2012 Thomas Moschny <thomas.moschny@gmx.de> - 2.2.0-1
|
|
- Update to 2.2.0.
|
|
- Update url.
|
|
- Add patch from upstream git for failing test.
|
|
|
|
* Wed Feb 8 2012 Thomas Moschny <thomas.moschny@gmx.de> - 2.1.1-1
|
|
- Update to 2.1.1.
|
|
|
|
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.0-2
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
* Sat Dec 17 2011 Thomas Moschny <thomas.moschny@gmx.de> - 2.1.0-1
|
|
- Update to 2.1.0.
|
|
- Fix rhel conditional.
|
|
- Binary has been renamed.
|
|
- Build python3 subpackage.
|
|
- Include documentation in HTML instead of Markdown format.
|
|
- Run tests.
|
|
|
|
* Wed Sep 07 2011 Jesse Keating <jkeating@redhat.com> - 2.0.3-4
|
|
- Set a version in the rhel macro
|
|
|
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.3-3
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 2.0.3-2
|
|
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
|
|
|
|
* Thu Oct 8 2009 Thomas Moschny <thomas.moschny@gmx.de> - 2.0.3-1
|
|
- Update to 2.0.3.
|
|
|
|
* Thu Aug 27 2009 Thomas Moschny <thomas.moschny@gmx.de> - 2.0.1-3
|
|
- Add requirement on python-elementtree, which was a separate package
|
|
before Python 2.5.
|
|
- Re-add changelog entries accidentally removed earlier.
|
|
|
|
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.1-2
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
* Sat Jul 11 2009 Thomas Moschny <thomas.moschny@gmx.de> - 2.0.1-1
|
|
- Update to 2.0.1.
|
|
- Upstream stripped .py of the cmdline script.
|
|
|
|
* Sat Apr 25 2009 Thomas Moschny <thomas.moschny@gmx.de> - 2.0-1
|
|
- Update to 2.0.
|
|
- Adjusted source URL.
|
|
- License changed to BSD only.
|
|
- Upstream now provides a script to run markdown from the cmdline.
|
|
|
|
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.7-3
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 1.7-2
|
|
- Rebuild for Python 2.6
|
|
|
|
* Mon Aug 4 2008 Thomas Moschny <thomas.moschny@gmx.de> - 1.7-1
|
|
- New package.
|