forked from pool/python-html2text
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-html2text?expand=0&rev=39
81 lines
2.3 KiB
RPMSpec
81 lines
2.3 KiB
RPMSpec
#
|
|
# spec file
|
|
#
|
|
# Copyright (c) 2021 SUSE LLC
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%define upname html2text
|
|
%define skip_python2 1
|
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
|
Name: python-%{upname}
|
|
Version: 2020.1.16
|
|
Release: 0
|
|
Summary: Python script for turning HTML into Markdown text
|
|
License: GPL-3.0-only
|
|
Group: Development/Languages/Python
|
|
URL: https://github.com/Alir3z4/html2text/
|
|
Source: https://files.pythonhosted.org/packages/source/h/%{upname}/%{upname}-%{version}.tar.gz
|
|
BuildRequires: %{python_module pytest}
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
Requires(post): update-alternatives
|
|
Requires(preun):update-alternatives
|
|
Provides: html2text = %{version}-%{release}
|
|
Obsoletes: html2text < %{version}-%{release}
|
|
BuildArch: noarch
|
|
%python_subpackages
|
|
|
|
%description
|
|
html2text is a Python script that converts a page of HTML into
|
|
Markdown (a text-to-HTML format).
|
|
|
|
%prep
|
|
%setup -q -n %{upname}-%{version}
|
|
# remove useless shebang
|
|
sed -i '/^#!/d' %{upname}/__init__.py
|
|
|
|
# remove executable bits from egg files
|
|
rm -r *.egg-info/
|
|
|
|
%build
|
|
%python_build
|
|
|
|
%install
|
|
%python_install
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
|
|
%python_clone -a %{buildroot}%{_bindir}/%{upname}
|
|
|
|
%post
|
|
%python_install_alternative html2text
|
|
|
|
%postun
|
|
%python_uninstall_alternative html2text
|
|
|
|
%check
|
|
# otherwise python 3.6 does not automatically select UTF-8 for console output
|
|
export LANG=en_US.UTF-8
|
|
%pytest
|
|
|
|
%files %{python_files}
|
|
%license COPYING
|
|
%doc README.md AUTHORS.rst ChangeLog.rst
|
|
%python_alternative %{_bindir}/%{upname}
|
|
%{python_sitelib}/*
|
|
%{python_sitelib}/*.egg-info/
|
|
|
|
%changelog
|