# # 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