15
0
forked from pool/python-baron
Files
python-baron/python-baron.spec
Tomáš Chvátal 26a706e42c - Update to 0.9:
* BREAKING CHANGE: annotations are now member of {def,list,dict}_argument to flatten the data structure
  * add support for ... in from import by bram
  * add support for return annotation by bram
  * add support for exec function by bram
  * add support for variable annotation #145 by scottbelden and additional work by bram
  * add support for *var expressions in tuple assignment by bram
  * add support for raise from #120 by odcinek with additional work by bram
  * add support for arglist usage in class definition inheritence by bram
  * bug fix by 91e839a kyleatmakrs

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-baron?expand=0&rev=7
2019-03-06 13:48:46 +00:00

71 lines
2.2 KiB
RPMSpec

#
# spec file for package python-baron
#
# 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-baron
Version: 0.9
Release: 0
Summary: Full Syntax Tree for Python
License: LGPL-3.0-or-later
Group: Development/Languages/Python
URL: https://github.com/PyCQA/baron
Source0: https://files.pythonhosted.org/packages/source/b/baron/baron-%{version}.tar.gz
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-rply
BuildArch: noarch
# SECTION test requirements
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module rply}
# /SECTION
%python_subpackages
%description
Baron is a Full Syntax Tree (FST) library for Python. In contrast
to an AST which drops some syntax information in the process of its
creation (like empty lines, comments, formatting), a FST keeps
everything and guarantees the operation
fst_to_code(code_to_fst(source_code)) == source_code.
%prep
%setup -q -n baron-%{version}
# remove cache files accidentaly put in sdist
rm -f tests/*.pyc
rm -r tests/__pycache__
%build
export LANG='en_US.UTF-8'
%python_build
%install
export LANG='en_US.UTF-8'
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
export LANG='en_US.UTF-8'
%python_expand PYTHONPATH=%{buildroot}%{$python_sitelib} py.test-%{$python_bin_suffix} -v tests/
%files %{python_files}
%doc CHANGELOG README.md
%license LICENSE
%{python_sitelib}/*
%changelog