- Initial commit, needed by flasgger
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-flex?expand=0&rev=1
This commit is contained in:
commit
e701a124f1
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal 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
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
.osc
|
4
python-flex.changes
Normal file
4
python-flex.changes
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Mar 14 12:12:22 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>
|
||||||
|
|
||||||
|
- Initial commit, needed by flasgger
|
77
python-flex.spec
Normal file
77
python-flex.spec
Normal file
@ -0,0 +1,77 @@
|
|||||||
|
#
|
||||||
|
# spec file for package python-flex
|
||||||
|
#
|
||||||
|
# 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 https://bugs.opensuse.org/
|
||||||
|
#
|
||||||
|
|
||||||
|
|
||||||
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||||
|
Name: python-flex
|
||||||
|
Version: 6.14.0
|
||||||
|
Release: 0
|
||||||
|
Summary: Swagger Schema validation
|
||||||
|
License: MIT
|
||||||
|
Group: Development/Languages/Python
|
||||||
|
URL: https://github.com/pipermerriam/flex
|
||||||
|
Source: https://github.com/pipermerriam/flex/archive/v%{version}.tar.gz
|
||||||
|
BuildRequires: %{python_module PyYAML >= 3.11}
|
||||||
|
BuildRequires: %{python_module click >= 3.3}
|
||||||
|
BuildRequires: %{python_module factory_boy >= 2.4.1}
|
||||||
|
BuildRequires: %{python_module jsonpointer >= 1.7}
|
||||||
|
BuildRequires: %{python_module pytest-httpbin}
|
||||||
|
BuildRequires: %{python_module pytest-pythonpath >= 0.3}
|
||||||
|
BuildRequires: %{python_module pytest}
|
||||||
|
BuildRequires: %{python_module requests >= 2.4.3}
|
||||||
|
BuildRequires: %{python_module responses >= 0.5.1}
|
||||||
|
BuildRequires: %{python_module rfc3987 >= 1.3.4}
|
||||||
|
BuildRequires: %{python_module setuptools}
|
||||||
|
BuildRequires: %{python_module six >= 1.7.3}
|
||||||
|
BuildRequires: %{python_module strict-rfc3339 >= 0.7}
|
||||||
|
BuildRequires: %{python_module validate_email >= 1.2}
|
||||||
|
BuildRequires: fdupes
|
||||||
|
BuildRequires: python-rpm-macros
|
||||||
|
Requires: pyton-PyYAML >= 3.11
|
||||||
|
Requires: pyton-click >= 3.3
|
||||||
|
Requires: pyton-jsonpointer >= 1.7
|
||||||
|
Requires: pyton-requests >= 2.4.3
|
||||||
|
Requires: pyton-rfc3987 >= 1.3.4
|
||||||
|
Requires: pyton-six >= 1.7.3
|
||||||
|
Requires: pyton-strict-rfc3339 >= 0.7
|
||||||
|
Requires: pyton-validate_email >= 1.2
|
||||||
|
BuildArch: noarch
|
||||||
|
%python_subpackages
|
||||||
|
|
||||||
|
%description
|
||||||
|
Validation tooling for Swagger 2.0 specifications.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q -n flex-%{version}
|
||||||
|
|
||||||
|
%build
|
||||||
|
%python_build
|
||||||
|
|
||||||
|
%install
|
||||||
|
%python_install
|
||||||
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||||||
|
|
||||||
|
%check
|
||||||
|
%pytest
|
||||||
|
|
||||||
|
%files %{python_files}
|
||||||
|
%license LICENSE
|
||||||
|
%doc CHANGELOG README.md
|
||||||
|
%{python_sitelib}/*
|
||||||
|
%python3_only %{_bindir}/swagger-flex
|
||||||
|
|
||||||
|
%changelog
|
3
v6.14.0.tar.gz
Normal file
3
v6.14.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:1560b69821948a4e4ac677b102e4a2735180c9061f76146ee13638abf927e15e
|
||||||
|
size 97316
|
Loading…
x
Reference in New Issue
Block a user