15
0

Accepting request 626760 from home:seanmarlow:branches:devel:languages:python

- Initial release v0.2.4

OBS-URL: https://build.opensuse.org/request/show/626760
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-openapi-spec-validator?expand=0&rev=1
This commit is contained in:
2018-08-01 06:22:42 +00:00
committed by Git OBS Bridge
commit eacc4ed331
5 changed files with 102 additions and 0 deletions

View File

@@ -0,0 +1,71 @@
#
# spec file for package python-openapi-spec-validator
#
# Copyright (c) 2018 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-openapi-spec-validator
Version: 0.2.4
Release: 0
Summary: Validates OpenAPI Specs against Swagger and OAS3
License: Apache-2.0
Group: Development/Languages/Python
Url: https://github.com/p1c2u/openapi-spec-validator
Source: https://files.pythonhosted.org/packages/source/o/openapi-spec-validator/openapi-spec-validator-%{version}.tar.gz
BuildRequires: fdupes
BuildRequires: python-rpm-macros
BuildRequires: %{python_module setuptools}
Requires: python-jsonchema
Requires: python-PyYAML
Requires: python-six
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildArch: noarch
Requires(post): update-alternatives
Requires(postun): update-alternatives
%python_subpackages
%description
OpenAPI Spec Validator is a Python library that validates
OpenAPI Specs against the OpenAPI 2.0 (aka Swagger) and
OpenAPI 3.0.0 specification. The validator aims to check
for full compliance with the Specification.
%prep
%setup -q -n openapi-spec-validator-%{version}
%build
%python_build
%install
%python_install
%python_clone -a %{buildroot}%{_bindir}/openapi-spec-validator
%fdupes %{buildroot}%{_prefix}
%post
%python_install_alternative openapi-spec-validator
%postun
%python_uninstall_alternative openapi-spec-validator
%files %{python_files}
%defattr(-,root,root,-)
%doc README.md
%license LICENSE
%python_alternative %{_bindir}/openapi-spec-validator
%{python_sitelib}/*
%changelog