2015-02-17 18:40:10 +00:00
|
|
|
#
|
|
|
|
# spec file for package python-pysrt
|
|
|
|
#
|
2016-12-16 09:33:40 +00:00
|
|
|
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
2015-02-17 18:40:10 +00:00
|
|
|
#
|
|
|
|
# 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/
|
|
|
|
#
|
|
|
|
|
2016-12-16 09:33:40 +00:00
|
|
|
|
2015-02-17 18:40:10 +00:00
|
|
|
Name: python-pysrt
|
2016-12-16 09:33:40 +00:00
|
|
|
Version: 1.1.1
|
2015-02-17 18:40:10 +00:00
|
|
|
Release: 0
|
|
|
|
Summary: SubRip (.srt) subtitle parser and writer
|
|
|
|
License: GPL-3.0
|
|
|
|
Group: System/Libraries
|
|
|
|
Url: https://github.com/byroot/pysrt
|
|
|
|
Source0: https://pypi.python.org/packages/source/p/pysrt/pysrt-%{version}.tar.gz
|
|
|
|
Source1: python-pysrt-rpmlintrc
|
|
|
|
BuildRequires: fdupes
|
|
|
|
BuildRequires: python
|
|
|
|
BuildRequires: python-chardet
|
2016-12-16 09:33:40 +00:00
|
|
|
BuildRequires: python-setuptools
|
2015-02-17 18:40:10 +00:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
Requires: python
|
|
|
|
Requires: python-chardet
|
|
|
|
%if 0%{?suse_version} > 1110
|
|
|
|
BuildArch: noarch
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%description
|
|
|
|
pysrt is a python library to search and download subtitles.
|
|
|
|
It comes with an easy to use CLI suitable for direct use or cron jobs.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -n pysrt-%{version}
|
|
|
|
|
|
|
|
%build
|
|
|
|
python setup.py build
|
|
|
|
|
|
|
|
%install
|
|
|
|
python setup.py install -O1 --skip-build --prefix=%{_prefix} --root=%{buildroot}
|
|
|
|
%fdupes -s %{buildroot}
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%{_bindir}/srt
|
|
|
|
%dir %{python_sitelib}/pysrt
|
|
|
|
%{python_sitelib}/pysrt/*
|
|
|
|
%{python_sitelib}/pysrt-%{version}-py%{py_ver}.egg-info
|
|
|
|
|
|
|
|
%changelog
|