15
0

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
This commit is contained in:
Tomáš Chvátal
2019-12-10 08:19:21 +00:00
committed by Git OBS Bridge
commit fb23a16849
5 changed files with 95 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
filetype-1.0.5.tar.gz Normal file
View File

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

5
python-filetype.changes Normal file
View File

@@ -0,0 +1,5 @@
-------------------------------------------------------------------
Fri Dec 6 20:53:47 UTC 2019 - Erico Mendonca <erico.mendonca@suse.com>
- Initial version.

63
python-filetype.spec Normal file
View File

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