raven-rhel8/base/python-smartypants/python-smartypants.spec
2024-06-29 12:12:15 +06:00

79 lines
2.2 KiB
RPMSpec

%global pypi_name smartypants
Name: python-%{pypi_name}
Version: 2.0.1
Release: 2
Summary: plug-in that easily translates ASCII punctuation characters into smart entities
Group: Development/Python
License: BSD
URL: https://github.com/leohemsted/smartypants.py
Source0: https://github.com/leohemsted/smartypants.py/archive/v%{version}/%{pypi_name}.py-%{version}.tar.gz
BuildArch: noarch
BuildRequires: python%{python3_pkgversion}-devel
BuildRequires: python%{python3_pkgversion}dist(setuptools)
BuildRequires: python3dist(sphinx)
%global _description %{expand:
SmartyPants is a free web publishing plug-in for Movable
Type, Blosxom, and BBEdit that easily translates plain ASCII
punctuation characters into “smart” typographic punctuation HTML
entities.}
%description
%_description
%package -n python%{python3_pkgversion}-%{pypi_name}
Summary: %{summary}
BuildArch: noarch
%{?python_provide:%python_provide python%{python3_pkgversion}-%{pypi_name}}
%description -n python%{python3_pkgversion}-%{pypi_name} %_description
%package -n python-%{pypi_name}-doc
Summary: python-smartypants documentation
Group: Documentation
%description -n python-%{pypi_name}-doc
Documentation for python-smartypants.
%prep
%autosetup -n %{pypi_name}.py-%{version}
# Remove bundled egg-info
rm -rf %{pypi_name}.egg-info
for lib in $(find -type f -name '*.py'); do
sed -i.python -e '1{\@^#!@d}' $lib
done
sed -i.python -e 's|#!/usr/bin/env python|#!/usr/bin/python%{python3_pkgversion}|' smartypants
%build
%py3_build
# generate html documentation
cd docs
make html
# remove the sphinx-build leftovers
rm -rf _build/html/.{doctrees,buildinfo}
%install
%py3_install
mv %{buildroot}%{_bindir}/%{pypi_name} %{buildroot}%{_bindir}/%{pypi_name}-%{python3_pkgversion}
%files -n python%{python3_pkgversion}-%{pypi_name}
%doc README.rst
%doc CHANGES.rst
%license COPYING
%{_bindir}/%{pypi_name}-%{python3_pkgversion}
%{python3_sitelib}/%{pypi_name}.py
%{python3_sitelib}/__pycache__/*.pyc
%{python3_sitelib}/%{pypi_name}-%{version}-py*.*.egg-info
%files -n python-%{pypi_name}-doc
%doc docs/_build/html
%license COPYING