commit 5cfa4c0e8b8a9e59281d9864147bb36bc1e16d26b709a0f11fa8f64f841f7c92 Author: Todd R Date: Fri Nov 10 16:25:06 2017 +0000 Accepting request 540605 from home:TheBlackCat:branches:devel:languages:python - initial version OBS-URL: https://build.opensuse.org/request/show/540605 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pypng?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/pypng-0.0.18.tar.gz b/pypng-0.0.18.tar.gz new file mode 100644 index 0000000..123fce8 --- /dev/null +++ b/pypng-0.0.18.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:985a1306319e3187e2cb3dabec95a7a0f0f281ae2e1fec04289bed520fecd932 +size 377942 diff --git a/python-pypng.changes b/python-pypng.changes new file mode 100644 index 0000000..319f7e7 --- /dev/null +++ b/python-pypng.changes @@ -0,0 +1,4 @@ +------------------------------------------------------------------- +Tue Nov 7 18:24:48 UTC 2017 - toddrme2178@gmail.com + +- initial version diff --git a/python-pypng.spec b/python-pypng.spec new file mode 100644 index 0000000..bc8c279 --- /dev/null +++ b/python-pypng.spec @@ -0,0 +1,73 @@ +# +# spec file for package python-pypng +# +# 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-%{**}} +%bcond_without test +Name: python-pypng +Version: 0.0.18 +Release: 0 +License: MIT +Summary: Pure Python PNG image encoder/decoder +Url: https://github.com/drj11/pypng +Group: Development/Languages/Python +Source: https://files.pythonhosted.org/packages/source/p/pypng/pypng-%{version}.tar.gz +BuildRequires: %{python_module Cython} +BuildRequires: %{python_module devel} +BuildRequires: %{python_module setuptools} +BuildRequires: fdupes +BuildRequires: python-rpm-macros +BuildRequires: python3-2to3 +%if %{with test} +BuildRequires: %{python_module numpy} +%endif +BuildArch: noarch + +%python_subpackages + +%description +PyPNG allows PNG image files to be read and written using pure Python. + +%prep +%setup -q -n pypng-%{version} +sed -i -e '/^#!\//, 1d' code/png.py + +%build +%python_build + +%install +%python_install +%python_expand %fdupes %{buildroot}%{$python_sitelib} + +%if %{with test} +%check +%python_expand cp code/test_png.py test_png_%{$python_bin_suffix}.py + +if [ -f test_png_%{python3_bin_suffix}.py ]; then +2to3 -wn test_png_%{python3_bin_suffix}.py +fi + +%{python_expand export PYTHONPATH=%{buildroot}%{$python_sitelib}:code +$python test_png_%{$python_bin_suffix}.py +} +%endif + +%files %{python_files} +%defattr(-,root,root,-) +%doc README.txt +%{python_sitelib}/* + +%changelog