forked from pool/python-fanficfare
81 lines
2.5 KiB
RPMSpec
81 lines
2.5 KiB
RPMSpec
|
#
|
||
|
# spec file for package python-fanficfare
|
||
|
#
|
||
|
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
||
|
#
|
||
|
# 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 http://bugs.opensuse.org/
|
||
|
#
|
||
|
|
||
|
|
||
|
%define upname FanFicFare
|
||
|
%define upnamedown %(echo %{upname}|tr '[:upper:]' '[:lower:]')
|
||
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||
|
Name: python-%{upnamedown}
|
||
|
Version: 3.0.0
|
||
|
Release: 0
|
||
|
Summary: Tool for making eBooks from stories on fanfiction and other web sites
|
||
|
License: GPL-3.0-only
|
||
|
Group: Development/Languages/Python
|
||
|
URL: https://github.com/JimmXinu/FanFicFare
|
||
|
Source: https://files.pythonhosted.org/packages/source/F/%{upname}/%{upname}-%{version}.tar.gz
|
||
|
BuildRequires: %{python_module beautifulsoup4}
|
||
|
BuildRequires: %{python_module chardet}
|
||
|
BuildRequires: %{python_module html2text}
|
||
|
BuildRequires: %{python_module html5lib}
|
||
|
BuildRequires: %{python_module setuptools >= 17.1}
|
||
|
BuildRequires: fdupes
|
||
|
BuildRequires: python-rpm-macros
|
||
|
Requires(post): update-alternatives
|
||
|
Requires(postun): update-alternatives
|
||
|
BuildArch: noarch
|
||
|
%python_subpackages
|
||
|
|
||
|
%description
|
||
|
This is the repository for the FanFicFare project.
|
||
|
|
||
|
FanFicFare is the rename and move of the previous FanFictionDownLoader (AKA
|
||
|
FFDL, AKA fanficdownloader) project.
|
||
|
|
||
|
This program is available as a calibre plugin, a command-line interface (via
|
||
|
pip), and a web service.
|
||
|
|
||
|
%prep
|
||
|
%setup -q -n %{upname}-%{version}
|
||
|
sed -i -e '/^#!\/usr\/bin\/python/d' fanficfare/mobi{,html}.py
|
||
|
for f in DESCRIPTION.rst README.md ; do
|
||
|
tr -d '\r' < $f > $f.new
|
||
|
touch --reference=$f $f.new
|
||
|
mv -f $f.new $f
|
||
|
done
|
||
|
|
||
|
%build
|
||
|
%python_build
|
||
|
|
||
|
%install
|
||
|
%python_install
|
||
|
%python_clone -a %{buildroot}%{_bindir}/%{upnamedown}
|
||
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||
|
|
||
|
%post
|
||
|
%python_install_alternative fanficfare
|
||
|
|
||
|
%postun
|
||
|
%python_uninstall_alternative fanficfare
|
||
|
|
||
|
%files %{python_files}
|
||
|
%license LICENSE
|
||
|
%doc DESCRIPTION.rst README.md
|
||
|
%python_alternative %{_bindir}/%{upnamedown}
|
||
|
%{python_sitelib}/*
|
||
|
|
||
|
%changelog
|