python-fanficfare/python-fanficfare.spec
Matej Cepl 0a5a45b706 - Update to version 3.2.1+git.1543262085.5eb1f1f3:
* Bump Test Version 3.2.1
  * base_xenforoforum_adapter - Fix for buggy threadmarks on SV thread 46020.
  * Bump Release Version 3.2.0
  * Update example.ini.
  * Bump Test Version 3.1.10
  * Add background_color ini verbiage and check before image conversion.
  * Bump Test Version 3.1.9
  * Refactor busy_cursor, busy cursor around saving rejects & settings, bump copyright years.
  * Move rejectlisturls_data out of settings in to own 'namedspaced' for efficiency. PI Only.
  * Use saved rejectlist_data.
  * Reject list changes: show numbers, edit title/author, incomplete save rejects as data.
  * Add feature for manually editing settings JSON.  Only shown in debug mode.
  * Add verbiage to [www.asianfanfics.com] about site censoring words when not logged in.
  * Bump Test Version 3.1.8
  * Detect 'fake' 404 page (with HTTP 200) for adapter_royalroadcom
  * Fix defaults.ini order
  * Bump Test Version 3.1.7
  * Fix for adapter_wuxiaworldco for Python3.
  * Added volumes to chapter titles
  * Bump Test Version 3.1.6
  * Fix adapter_wuxiaworldco description decomposition
  * Bump Test Version 3.1.5
  * Fix for adapter_wuxiaworldcom site change.
  * Minor improvement to adapter_asianfanficscom logging.
  * Bump Test Version 3.1.4
  * adapter_fanfiktionde login doesn't use ssl.fanfiktion.de anymore.
  * Bump Test Version 3.1.3
  * Update for adapter_storiesonlinenet(& finestories) for login change.
  * Use a default chapter name when none is given.  Problem with adapter_novelonlinefullcom

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-fanficfare?expand=0&rev=7
2018-12-03 06:51:55 +00:00

83 lines
2.7 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 https://bugs.opensuse.org/
#
%define upname FanFicFare
%define upnamedown fanficfare
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-fanficfare
Version: 3.2.1+git.1543262085.5eb1f1f3
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: %{upname}-%{version}.tar.xz
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
FanFicFare is a tool for downloading fanfiction and original stories from various sites into ebook form.
FanFicFare is the rename and move of the FanFictionDownLoader (AKA FFDL, AKA fanficdownloader) project.
Main Features of FanFicFare:
- Download fanfiction stories from various sites into ebooks.
- Create various ebook formats (currently epub, mobi, HTML, txt)
- Also available as a Calibre plugin (not in this package)
- Ability to update already downloaded book
%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