14
0

Accepting request 693164 from home:jayvdb:branches:devel:languages:python:numeric

OBS-URL: https://build.opensuse.org/request/show/693164
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-yamldoc?expand=0&rev=1
This commit is contained in:
Tomáš Chvátal
2019-04-11 10:05:05 +00:00
committed by Git OBS Bridge
commit 9efbdedd95
6 changed files with 90 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

4
python-yamldoc.changes Normal file
View File

@@ -0,0 +1,4 @@
-------------------------------------------------------------------
Wed Mar 20 09:16:17 UTC 2019 - John Vandenberg <jayvdb@gmail.com>
- Initial spec for v0.2.0

57
python-yamldoc.spec Normal file
View File

@@ -0,0 +1,57 @@
#
# spec file for package python-yamldoc
#
# 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-yamldoc
Version: 0.2.0
Release: 0
License: GPL-3.0-or-later
Summary: A module to determine file mimetypes
Url: https://github.com/smathot/python-yamldoc
Group: Development/Languages/Python
Source: https://github.com/smathot/python-yamldoc/archive/release/%{version}.tar.gz#/yamldoc-%{version}.tar.gz
Source1: setup.py
BuildRequires: python-rpm-macros
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildArch: noarch
%python_subpackages
%description
This module is a layer on top of the standard Python mimetypes module and
python-magic. Python-magic only works with local files to which you need to
have access, while mimetypes only uses the filename to determine its
filetype.
%prep
%setup -q -n python-yamldoc-release-%{version}
cp %{SOURCE1} .
sed -i '1{/^#!/d}' yamldoc/*.py
%build
%python_build
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%files %{python_files}
%doc readme.md examples
%{python_sitelib}/*
%changelog

2
setup.py Normal file
View File

@@ -0,0 +1,2 @@
from setuptools import setup
setup(name='yamldoc', packages=['yamldoc'])

3
yamldoc-0.2.0.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7f03470108693989fe68bede720e974b123adf8801e5cb9c645521f9d263590f
size 10314