1
0
python-fanficfare/python-fanficfare.spec
Matej Cepl 1e24543b23 Accepting request 682352 from home:mcepl:branches:devel:languages:python
- Update to version 3.5.0 (from 3.3.0):
  - Update Translations.
  - Remove firefly.populli.org -- now on AO3.
  - Remove fhsarchive.com -- now on AO3.
  - Add www.mugglenetfanfiction.com as replacement for removed
    fanfiction.mugglenet.com.
  - Fix for int(pages) in adapter_adultfanfictionorg. Closes #375
  - Fix author parsing at webnovelcom - pull request #372 from Rikkitp
  - Remember original href in data-orighref attr with epub
    internalize_text_links so inserted 'earlier' chapters don't break
    internal links.
  - Add always_login setting to base_xenforo for SV login-required story
    with 404 result.
  - Ignore current Virtual Library when checking for existing story ID.
  - Fix defaults.ini add_to_titlepage_entries for hentai-foundry.com
  - Fix metadata parsing for adapter_siyecouk
  - Fix adapter_whoficcom for site changes.
  - Update translations.
  - Fix AO3 logout url used to detect when already logged in.
  - Add conditionals_use_lists(default:true) setting for
    replace_metadata & Include/Exclude metadata conditionals. *Might
    change existing behavior for some users.*
  - Remove outdated comment.
  - Allow ==, !=, =~ and !~ in replace_metadata conditionals like
    in/exclude_metadata.
  - Additional metadata edit recursion proofing.
  - Allow animated gifs through Calibre Image proc -- need to remove
    gif.py later.
  - Update some comments in adapter_archiveofourownorg
  - Additional fix for AO3 login site changes.

OBS-URL: https://build.opensuse.org/request/show/682352
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-fanficfare?expand=0&rev=11
2019-03-07 07:49:15 +00:00

83 lines
2.7 KiB
RPMSpec

#
# spec file for package python-fanficfare
#
# Copyright (c) 2019 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 modname FanFicFare
%define modnamedown fanficfare
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-fanficfare
Version: 3.5.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://github.com/JimmXinu/%{modname}/archive/v%{version}/%{modname}-%{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
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 %{modname}-%{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}/%{modnamedown}
%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}/%{modnamedown}
%{python_sitelib}/*
%changelog