commit d6f3d49ec52a9b45827ad0d55574c163498874db9e3965dadbe04cec9accfe54 Author: Todd R Date: Mon Jan 11 13:19:49 2016 +0000 - Initial version OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-imageio?expand=0&rev=1 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -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 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/imageio-1.4.zip b/imageio-1.4.zip new file mode 100644 index 0000000..c7d88af --- /dev/null +++ b/imageio-1.4.zip @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad9a3e75ffa802cca87a56bfdc6af7facbf8db5c62232b63c9822f10ac49292e +size 209794 diff --git a/python-imageio.changes b/python-imageio.changes new file mode 100644 index 0000000..41fcdb7 --- /dev/null +++ b/python-imageio.changes @@ -0,0 +1,4 @@ +------------------------------------------------------------------- +Tue Dec 9 13:36:25 UTC 2014 - toddrme2178@gmail.com + +- Initial version diff --git a/python-imageio.spec b/python-imageio.spec new file mode 100644 index 0000000..be09a5d --- /dev/null +++ b/python-imageio.spec @@ -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