forked from pool/python-baron
Full Syntax Tree for python OBS-URL: https://build.opensuse.org/request/show/652705 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-baron?expand=0&rev=1
69 lines
2.1 KiB
RPMSpec
69 lines
2.1 KiB
RPMSpec
#
|
|
# spec file for package python-baron
|
|
#
|
|
# 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 https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
|
Name: python-baron
|
|
Version: 0.8
|
|
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
|
|
Source10: https://raw.githubusercontent.com/PyCQA/baron/%{version}/LICENCE
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
Requires: python-rply
|
|
BuildArch: noarch
|
|
# SECTION test requirements
|
|
BuildRequires: %{python_module rply}
|
|
# /SECTION
|
|
%python_subpackages
|
|
|
|
%description
|
|
Baron is a Full Syntax Tree (FST) library for Python. By opposition
|
|
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}
|
|
cp %{SOURCE10} .
|
|
|
|
%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_exec setup.py test
|
|
|
|
%files %{python_files}
|
|
%doc CHANGELOG README.md
|
|
%license LICENCE
|
|
%{python_sitelib}/*
|
|
|
|
%changelog
|