15
0
Todd R
2016-01-11 13:19:49 +00:00
committed by Git OBS Bridge
commit d6f3d49ec5
5 changed files with 103 additions and 0 deletions

23
.gitattributes vendored Normal file
View 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
View File

@@ -0,0 +1 @@
.osc

3
imageio-1.4.zip Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ad9a3e75ffa802cca87a56bfdc6af7facbf8db5c62232b63c9822f10ac49292e
size 209794

4
python-imageio.changes Normal file
View File

@@ -0,0 +1,4 @@
-------------------------------------------------------------------
Tue Dec 9 13:36:25 UTC 2014 - toddrme2178@gmail.com
- Initial version

72
python-imageio.spec Normal file
View File

@@ -0,0 +1,72 @@
#
# spec file for package python-imageio
#
# Copyright (c) 2016 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/
#
Name: python-imageio
Version: 1.4
Release: 0
Summary: Library for reading and writing image, video, and related formats
License: BSD-2-Clause
Group: Development/Languages/Python
Url: http://imageio.github.io/
Source: https://pypi.python.org/packages/source/i/imageio/imageio-%{version}.zip
BuildRequires: ffmpeg
BuildRequires: libfreeimage3
BuildRequires: python-devel
BuildRequires: python-nose
BuildRequires: python-numpy
BuildRequires: python-pytest
BuildRequires: python-setuptools
BuildRequires: unzip
Requires: ffmpeg
Requires: libfreeimage3
Requires: python-numpy
Recommends: libfreeimageplus3
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0%{?suse_version} && 0%{?suse_version} <= 1110
%{!?python_sitelib: %global python_sitelib %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
%else
BuildArch: noarch
%endif
%description
Imageio is a Python library that provides an easy interface to read and
write a wide range of image data, including animated images, volumetric
data, and scientific formats. It is cross-platform, runs on Python 2.x
and 3.x, and is easy to install.
%prep
%setup -q -n imageio-%{version}
%build
IMAGEIO_NO_INTERNET=1 python setup.py build
%install
IMAGEIO_NO_INTERNET=1 python setup.py install --prefix=%{_prefix} --root=%{buildroot}
# Tests don't work without internet
# %check
# pushd tests
# PYTHONPATH=%{buildroot}%{python_sitelib} py.test
# popd
%files
%defattr(-,root,root,-)
%doc CONTRIBUTORS.txt LICENSE README.md
%{python_sitelib}/*
%changelog