forked from pool/python-pysrt
Accepting request 286538 from home:alois:branches:devel:languages:python
python srt library OBS-URL: https://build.opensuse.org/request/show/286538 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pysrt?expand=0&rev=1
This commit is contained in:
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
## Default LFS
|
||||
*.7z filter=lfs diff=lfs merge=lfs -text
|
||||
*.bsp filter=lfs diff=lfs merge=lfs -text
|
||||
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.gem filter=lfs diff=lfs merge=lfs -text
|
||||
*.gz filter=lfs diff=lfs merge=lfs -text
|
||||
*.jar filter=lfs diff=lfs merge=lfs -text
|
||||
*.lz filter=lfs diff=lfs merge=lfs -text
|
||||
*.lzma filter=lfs diff=lfs merge=lfs -text
|
||||
*.obscpio filter=lfs diff=lfs merge=lfs -text
|
||||
*.oxt filter=lfs diff=lfs merge=lfs -text
|
||||
*.pdf filter=lfs diff=lfs merge=lfs -text
|
||||
*.png filter=lfs diff=lfs merge=lfs -text
|
||||
*.rpm filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.tgz filter=lfs diff=lfs merge=lfs -text
|
||||
*.ttf filter=lfs diff=lfs merge=lfs -text
|
||||
*.txz filter=lfs diff=lfs merge=lfs -text
|
||||
*.whl filter=lfs diff=lfs merge=lfs -text
|
||||
*.xz filter=lfs diff=lfs merge=lfs -text
|
||||
*.zip filter=lfs diff=lfs merge=lfs -text
|
||||
*.zst filter=lfs diff=lfs merge=lfs -text
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.osc
|
3
pysrt-1.0.1.tar.gz
Normal file
3
pysrt-1.0.1.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5300a1584c8d15a1c49ef8880fa1ef7a4274ce3f24dde83ad581d12d875f6784
|
||||
size 11741
|
3
python-pysrt-rpmlintrc
Normal file
3
python-pysrt-rpmlintrc
Normal file
@@ -0,0 +1,3 @@
|
||||
# remove warnings about modules not being executable
|
||||
addFilter("non-executable-script")
|
||||
|
5
python-pysrt.changes
Normal file
5
python-pysrt.changes
Normal file
@@ -0,0 +1,5 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 10 22:20:06 UTC 2015 - aloisio@gmx.com
|
||||
|
||||
- Initial version 1.0.1
|
||||
|
59
python-pysrt.spec
Normal file
59
python-pysrt.spec
Normal file
@@ -0,0 +1,59 @@
|
||||
#
|
||||
# spec file for package python-pysrt
|
||||
#
|
||||
# Copyright (c) 2015 SUSE LINUX Products 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/
|
||||
#
|
||||
|
||||
Name: python-pysrt
|
||||
Version: 1.0.1
|
||||
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-setuptools
|
||||
BuildRequires: python-chardet
|
||||
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
|
Reference in New Issue
Block a user