forked from pool/python-subgrab
59 lines
1.8 KiB
RPMSpec
59 lines
1.8 KiB
RPMSpec
|
#
|
||
|
# spec file for package python-subgrab
|
||
|
#
|
||
|
# Copyright (c) 2017 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/
|
||
|
#
|
||
|
|
||
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||
|
Name: python-subgrab
|
||
|
Version: 0.17
|
||
|
Release: 0
|
||
|
Summary: Script to download subtitles for media files
|
||
|
License: GPL-3.0
|
||
|
Group: Development/Languages/Python
|
||
|
URL: https://github.com/RafayGhafoor/Subscene-Subtitle-Grabber
|
||
|
Source: https://files.pythonhosted.org/packages/source/s/subgrab/subgrab-%{version}.zip
|
||
|
BuildRequires: %{python_module devel}
|
||
|
BuildRequires: %{python_module setuptools}
|
||
|
BuildRequires: fdupes
|
||
|
BuildRequires: python-rpm-macros
|
||
|
BuildRequires: unzip
|
||
|
Requires: python-beautifulsoup4
|
||
|
Requires: python-lxml
|
||
|
Requires: python-requests
|
||
|
BuildArch: noarch
|
||
|
%python_subpackages
|
||
|
|
||
|
%description
|
||
|
A script that allows to download subtitles for TV-Series, Anime and Movies from
|
||
|
subscene and other sites.
|
||
|
|
||
|
%prep
|
||
|
%setup -q -n subgrab-%{version}
|
||
|
rm -rf subgrab.egg-info
|
||
|
sed -i 's/bs4/beautifulsoup4/g' setup.py
|
||
|
|
||
|
%build
|
||
|
%python_build
|
||
|
|
||
|
%install
|
||
|
%python_install
|
||
|
%python_expand %fdupes -s %{buildroot}/%{$python_sitelib}
|
||
|
|
||
|
%files %{python_files}
|
||
|
%python3_only %{_bindir}/subgrab
|
||
|
%{python_sitelib}/*
|
||
|
|
||
|
%changelog
|