b248d0f
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
b248d0f
dff6e4d
%if 0%{?fedora}
b248d0f
%global with_python3 1
b248d0f
%{!?python3_version: %global python3_version %(%{__python3} -c "import sys; sys.stdout.write(sys.version[:3])")}
4e3dbbd
%endif
d11da99
7404ff2
# pygments is at 1.1.1 in rhel6
7404ff2
%if 0%{?rhel} == 6
7404ff2
%global skip_tests -pygments
7404ff2
%endif
7404ff2
4e3dbbd
%global srcname markdown2
d11da99
d11da99
Name:           python-%{srcname}
326fe69
Version:        2.3.0
120b1b6
Release:        1%{?dist}
d11da99
Summary:        A fast and complete Python implementation of Markdown
d11da99
Group:          Development/Languages
d11da99
License:        MIT
4e3dbbd
URL:            https://github.com/trentm/python-%{srcname}/
d14c302
Source0:        http://pypi.python.org/packages/source/m/%{srcname}/%{srcname}-%{version}.zip
d11da99
BuildArch:      noarch
d11da99
BuildRequires:  python-devel
d11da99
BuildRequires:  python-pygments
b248d0f
%if 0%{?with_python3}
b248d0f
BuildRequires:  python3-devel
b248d0f
BuildRequires:  python3-pygments
b248d0f
%endif # with_python3
b248d0f
d11da99
d11da99
%description
d11da99
Markdown is a text-to-HTML filter; it translates an easy-to-read /
d11da99
easy-to-write structured text format into HTML. Markdown's text format
d11da99
is most similar to that of plain text email, and supports features
d11da99
such as headers, emphasis, code blocks, blockquotes, and links.
d11da99
d11da99
This is a fast and complete Python implementation of the Markdown
d11da99
spec.
d11da99
d11da99
For information about markdown itself, see
d11da99
http://daringfireball.net/projects/markdown/
d11da99
d11da99
b248d0f
%if 0%{?with_python3}
b248d0f
%package -n python3-markdown2
b248d0f
Summary:        A fast and complete Python implementation of Markdown
b248d0f
Group:          Development/Languages
b248d0f
b248d0f
b248d0f
%description -n python3-markdown2
b248d0f
Markdown is a text-to-HTML filter; it translates an easy-to-read /
b248d0f
easy-to-write structured text format into HTML. Markdown's text format
b248d0f
is most similar to that of plain text email, and supports features
b248d0f
such as headers, emphasis, code blocks, blockquotes, and links.
b248d0f
b248d0f
This is a fast and complete Python implementation of the Markdown
b248d0f
spec.
b248d0f
b248d0f
For information about markdown itself, see
b248d0f
http://daringfireball.net/projects/markdown/
b248d0f
%endif # with_python3
b248d0f
b248d0f
d11da99
%prep
d11da99
%setup0 -q -n %{srcname}-%{version}
d11da99
b248d0f
%if 0%{?with_python3}
b248d0f
cp -a . %{py3dir}
b248d0f
%endif # with_python3
b248d0f
d11da99
d11da99
%build
d11da99
%{__python} setup.py build
d11da99
b248d0f
%if 0%{?with_python3}
b248d0f
pushd %{py3dir}
b248d0f
%{__python3} setup.py build
b248d0f
popd
b248d0f
%endif # with_python3
b248d0f
d11da99
d11da99
%install
d11da99
%{__python} setup.py install -O1 --skip-build --root %{buildroot}
d11da99
d11da99
# remove shebangs and fix permissions
d11da99
find %{buildroot}%{python_sitelib} \( -name '*.py' -o -name 'py.*' \) \
d11da99
  -exec sed -i '1{/^#!/d}' {} \; \
d11da99
  -exec chmod u=rw,go=r {} \;
d11da99
b248d0f
# rename binary
b248d0f
mv %{buildroot}%{_bindir}/markdown2{,-%{python_version}}
b248d0f
b248d0f
%if 0%{?with_python3}
b248d0f
pushd %{py3dir}
b248d0f
%{__python3} setup.py install -O1 --skip-build --root %{buildroot}
b248d0f
b248d0f
# remove shebangs and fix permissions
b248d0f
find %{buildroot}%{python3_sitelib} \( -name '*.py' -o -name 'py.*' \) \
b248d0f
  -exec sed -i '1{/^#!/d}' {} \; \
b248d0f
  -exec chmod u=rw,go=r {} \;
b248d0f
b248d0f
# rename binary
b248d0f
mv %{buildroot}%{_bindir}/markdown2{,-%{python3_version}}
b248d0f
popd
b248d0f
%endif # with_python3
b248d0f
b248d0f
# 2.X binary is called by default for now
b248d0f
ln -s markdown2-%{python_version} %{buildroot}%{_bindir}/markdown2
b248d0f
d11da99
d11da99
%check
d11da99
cd test
7404ff2
%{__python} test.py -- -knownfailure %{?skip_tests}
d11da99
b248d0f
%if 0%{?with_python3}
b248d0f
pushd %{py3dir}
b248d0f
cd test
7404ff2
%{__python3} test.py -- -knownfailure %{?skip_tests}
b248d0f
popd
b248d0f
%endif # with_python3
b248d0f
d11da99
d11da99
%files
2a0c9f6
%doc CHANGES.md CONTRIBUTORS.txt LICENSE.txt TODO.txt
d11da99
%{python_sitelib}/*
d11da99
%{_bindir}/markdown2
b248d0f
%{_bindir}/markdown2-%{python_version}
b248d0f
b248d0f
b248d0f
%if 0%{?with_python3}
b248d0f
%files -n python3-markdown2
b248d0f
%doc CHANGES.md CONTRIBUTORS.txt LICENSE.txt TODO.txt
b248d0f
%{python3_sitelib}/*
b248d0f
%{_bindir}/markdown2-%{python3_version}
b248d0f
%endif # with_python3
d11da99
d11da99
d11da99
%changelog
326fe69
* Thu Sep 25 2014 Thomas Moschny <thomas.moschny@gmx.de> - 2.3.0-1
326fe69
- Update to 2.3.0.
326fe69
e57bd5b
* Fri Sep  5 2014 Thomas Moschny <thomas.moschny@gmx.de> - 2.2.3-1
e57bd5b
- Update to 2.2.3.
e57bd5b
120b1b6
* Fri Aug 22 2014 Thomas Moschny <thomas.moschny@gmx.de> - 2.2.2-1
120b1b6
- Update to 2.2.2.
120b1b6
10155ec
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.1-3
10155ec
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
10155ec
c7d5b20
* Wed May 28 2014 Kalev Lember <kalevlember@gmail.com> - 2.2.1-2
c7d5b20
- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4
c7d5b20
bd1d0a6
* Sat Mar  8 2014 Thomas Moschny <thomas.moschny@gmx.de> - 2.2.1-1
bd1d0a6
- Update to 2.2.1.
bd1d0a6
dff6e4d
* Wed Feb  5 2014 Thomas Moschny <thomas.moschny@gmx.de> - 2.2.0-1
dff6e4d
- Update to 2.2.0.
dff6e4d
- Modernize spec file.
dff6e4d
bc521a9
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.0-3
bc521a9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
bc521a9
8cb5f52
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.0-2
8cb5f52
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
8cb5f52
e01b86c
* Thu Oct  4 2012 Thomas Moschny <thomas.moschny@gmx.de> - 2.1.0-1
e01b86c
- Update to 2.1.0.
e01b86c
d50e965
* Sat Aug 04 2012 David Malcolm <dmalcolm@redhat.com> - 2.0.1-2
d50e965
- rebuild for https://fedoraproject.org/wiki/Features/Python_3.3
d50e965
498ac42
* Fri Jul 27 2012 Thomas Moschny <thomas.moschny@gmx.de> - 2.0.1-1
498ac42
- Update to 2.0.1.
498ac42
8f362b2
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.0-2
8f362b2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
8f362b2
3531043
* Tue Jun 26 2012 Thomas Moschny <thomas.moschny@gmx.de> - 2.0.0-1
3531043
- Update to 2.0.0.
3531043
7404ff2
* Sat May 19 2012 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.2-2
7404ff2
- Skip pygments test on rhel6.
7404ff2
b248d0f
* Sat May 19 2012 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.2-1
b248d0f
- Update to 1.4.2.
b248d0f
- Build python3 subpackage.
b248d0f
2a0c9f6
* Fri Mar 16 2012 Thomas Moschny <thomas.moschny@gmx.de> - 1.1.1-1
2a0c9f6
- Update to 1.1.1.
2a0c9f6
04b882c
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.1.19-2
04b882c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
04b882c
4e3dbbd
* Thu Jul 21 2011 Thomas Moschny <thomas.moschny@gmx.de> - 1.0.1.19-1
4e3dbbd
- Update to 1.0.1.19.
4e3dbbd
  - Drop patch applied upstream.
4e3dbbd
  - Update project URL.
4e3dbbd
- Update macros, use %%global.
4e3dbbd
- Update %%doc.
4e3dbbd
- Do not run tests known to fail.
4e3dbbd
ef06d72
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.1.17-3
ef06d72
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
ef06d72
10d786a
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 1.0.1.17-2
10d786a
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
10d786a
37d4ff9
* Thu Jun  3 2010 Thomas Moschny <thomas.moschny@gmx.de> - 1.0.1.17-1
37d4ff9
- Update to 1.0.17.
37d4ff9
- Add patch for failing test.
37d4ff9
37d4ff9
* Tue Dec 29 2009 Thomas Moschny <thomas.moschny@gmx.de> - 1.0.1.16-2
37d4ff9
- Patch for older pygments on rhel no longer needed, pygments has been
37d4ff9
  updated in EPEL.
37d4ff9
ef8fb43
* Fri Dec 18 2009 Thomas Moschny <thomas.moschny@gmx.de> - 1.0.1.16-1
ef8fb43
- Update to 1.0.1.16.
ef8fb43
682bd89
* Thu Oct  8 2009 Thomas Moschny <thomas.moschny@gmx.de> - 1.0.1.15-1
682bd89
- Update to 1.0.1.15. Fixes three issues, two of them being
682bd89
  security-related.
682bd89
23fba25
* Wed Sep  2 2009 Thomas Moschny <thomas.moschny@gmx.de> - 1.0.1.13-3
23fba25
- Patch syntax_color test case for older pygments version on rhel.
23fba25
093b115
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.1.13-2
093b115
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
093b115
d14c302
* Sat Jul 11 2009 Thomas Moschny <thomas.moschny@gmx.de> - 1.0.1.13-1
d14c302
- Update to 1.0.1.13.
d14c302
20a28ea
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.1.11-3
20a28ea
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
20a28ea
957fc6a
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 1.0.1.11-2
957fc6a
- Rebuild for Python 2.6
957fc6a
4a70432
* Wed Oct  1 2008 Thomas Moschny <thomas.moschny@gmx.de> - 1.0.1.11-1
4a70432
- Update to 1.0.11, also fixes the syntax_color test for the latest
4a70432
  Pygments (should fix FTBFS bug 465049).
4a70432
4a70432
* Fri Sep 26 2008 Thomas Moschny <thomas.moschny@gmx.de> - 1.0.1.10-1
4a70432
- Update to 1.0.1.10.
4a70432
949bb82
* Fri Sep 12 2008 Thomas Moschny <thomas.moschny@gmx.de> - 1.0.1.9-1
949bb82
- Update to 1.0.1.9.
949bb82
4ffeb90
* Thu Sep 11 2008 Thomas Moschny <thomas.moschny@gmx.de> - 1.0.1.8-1
4ffeb90
- Update to 1.0.1.8.
4ffeb90
- Simplify the cmdline wrapper.
4ffeb90
d11da99
* Tue Sep  9 2008 Thomas Moschny <thomas.moschny@gmx.de> - 1.0.1.7-1
d11da99
- New package.