commit fb23a16849e00de342bb3c9c5c41b3f3e6303904da82e21c7ca70f7dc7444db2 Author: Tomáš Chvátal Date: Tue Dec 10 08:19:21 2019 +0000 Accepting request 755416 from home:emendonca:octoprint Adding doc, license, fixing tests. OBS-URL: https://build.opensuse.org/request/show/755416 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-filetype?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/filetype-1.0.5.tar.gz b/filetype-1.0.5.tar.gz new file mode 100644 index 0000000..ccde452 --- /dev/null +++ b/filetype-1.0.5.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17a3b885f19034da29640b083d767e0f13c2dcb5dcc267945c8b6e5a5a9013c7 +size 668401 diff --git a/python-filetype.changes b/python-filetype.changes new file mode 100644 index 0000000..0e0851e --- /dev/null +++ b/python-filetype.changes @@ -0,0 +1,5 @@ +------------------------------------------------------------------- +Fri Dec 6 20:53:47 UTC 2019 - Erico Mendonca + +- Initial version. + diff --git a/python-filetype.spec b/python-filetype.spec new file mode 100644 index 0000000..465d490 --- /dev/null +++ b/python-filetype.spec @@ -0,0 +1,63 @@ +# +# spec file for package python-filetype +# +# Copyright (c) 2019 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-%{**}} +Name: python-filetype +Version: 1.0.5 +Release: 0 +License: MIT +Summary: Infer file type and MIME type of any file/buffer. No external dependencies +Url: https://github.com/h2non/filetype.py +Group: Development/Languages/Python +Source: https://files.pythonhosted.org/packages/source/f/filetype/filetype-%{version}.tar.gz +BuildRequires: python-rpm-macros +BuildRequires: %{python_module setuptools} +BuildRequires: fdupes +BuildArch: noarch + +%python_subpackages + +%description +Small and dependency free `Python`_ package to infer file type and MIME +type checking the `magic numbers`_ signature of a file or buffer. + +This is a Python port from `filetype`_ Go package. + +%prep +%setup -q -n filetype-%{version} + +%build +# fix the interpreter header warnings +sed -i 's@/usr/bin/env python@/usr/bin/python@g' examples/{buffer,bytes,file}.py +%python_build + +%install +%python_install + +# fix file permission warnings for the included examples +%python_expand chmod 0755 %{buildroot}%{$python_sitelib}/examples/{buffer,bytes,file}.py + +%python_expand %fdupes %{buildroot}%{$python_sitelib} + +%check +%python_expand PYTHONPATH=%{buildroot}%{$python_sitelib} $python -m unittest discover + +%files %{python_files} +%doc README.rst +%license LICENSE +%{python_sitelib}/* + +%changelog