forked from pool/python-pyparsing
- Update to version 3.0.9 * Added Unicode set BasicMultilingualPlane (may also be referenced as BMP) representing the Basic Multilingual Plane (Unicode characters up to code point 65535). Can be used to parse most language characters, but omits emojis, wingdings, etc. Raised in discussion with Dave Tapley (issue #392). * To address mypy confusion of pyparsing.Optional and typing.Optional resulting in error: "_SpecialForm" not callable message reported in issue #365, fixed the import in exceptions.py. Nice sleuthing by Iwan Aucamp and Dominic Davis-Foster, thank you! (Removed definitions of OptionalType, DictType, and IterableType and replaced them with typing.Optional, typing.Dict, and typing.Iterable throughout.) * Fixed typo in jinja2 template for railroad diagrams, thanks for the catch Nioub (issue #388). * Removed use of deprecated pkg_resources package in railroad diagramming code (issue #391). * Updated bigquery_view_parser.py example to parse examples at https://cloud.google.com/bigquery/docs/reference/legacy-sql - Release 3.0.8 * API CHANGE: modified pyproject.toml to require Python version 3.6.8 or later for pyparsing 3.x. Earlier minor versions of 3.6 fail in evaluating the version_info class (implemented using typing.NamedTuple). If you are using an earlier version of Python 3.6, you will need to use pyparsing 2.4.7. * Improved pyparsing import time by deferring regex pattern compiles. PR submitted by Anthony Sottile to fix issue #362, thanks! * Updated build to use flit, PR by Michał Górny, added BUILDING.md doc and removed old Windows build scripts - nice OBS-URL: https://build.opensuse.org/request/show/989210 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyparsing?expand=0&rev=79
98 lines
3.0 KiB
RPMSpec
98 lines
3.0 KiB
RPMSpec
#
|
|
# spec file
|
|
#
|
|
# Copyright (c) 2022 SUSE LLC
|
|
#
|
|
# 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/
|
|
#
|
|
|
|
|
|
%define modname pyparsing
|
|
# in order to avoid rewriting for subpackage generator
|
|
%define mypython python
|
|
%{?!python_module:%define python_module() python3-%{**}}
|
|
%global flavor @BUILD_FLAVOR@%{nil}
|
|
%if "%{flavor}" == "test"
|
|
%define psuffix -test
|
|
%bcond_without test
|
|
%else
|
|
%define psuffix %{nil}
|
|
%bcond_with test
|
|
%endif
|
|
%define skip_python2 1
|
|
Name: python-pyparsing%{psuffix}
|
|
Version: 3.0.9
|
|
Release: 0
|
|
Summary: Grammar Parser Library for Python
|
|
License: GPL-2.0-or-later AND MIT AND GPL-3.0-or-later
|
|
URL: https://github.com/pyparsing/pyparsing/
|
|
Source: https://files.pythonhosted.org/packages/source/p/pyparsing/pyparsing-%{version}.tar.gz
|
|
BuildRequires: %{python_module base}
|
|
BuildRequires: %{python_module flit-core}
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
%if %{with test}
|
|
BuildRequires: %{python_module jinja2}
|
|
BuildRequires: %{python_module pytest}
|
|
BuildRequires: %{python_module railroad-diagrams}
|
|
%endif
|
|
# SECTION work around boo#1186870: we are a dependency of python-packaging which is used by pythondistdeps.py normally creating this entry
|
|
Provides: %{mypython}%{python_version}dist(pyparsing) = %{version}
|
|
%if "%{python_flavor}" == "python3" || "%{python_provides}" == "python3"
|
|
Provides: %{mypython}3dist(pyparsing) = %{version}
|
|
%endif
|
|
# /SECTION
|
|
BuildArch: noarch
|
|
%python_subpackages
|
|
|
|
%description
|
|
The pyparsing module is an alternative approach to creating and executing
|
|
simple grammars, vs. the traditional lex/yacc approach, or the use of regular
|
|
expressions. The pyparsing module provides a library of classes that client
|
|
code uses to construct the grammar directly in Python code.
|
|
|
|
%prep
|
|
%setup -q -n %{modname}-%{version}
|
|
|
|
%if !%{with test}
|
|
%build
|
|
%{python_expand # use pythonXX-base bundled pip as PEP517 frontend for flit-core
|
|
mkdir -p build
|
|
$python -m venv build/buildenv --system-site-packages
|
|
}
|
|
export PATH=$PWD/build/buildenv/bin:$PATH
|
|
%pyproject_wheel
|
|
|
|
%install
|
|
export PATH=$PWD/build/buildenv/bin:$PATH
|
|
%pyproject_install
|
|
# fix venv install path
|
|
mv %{buildroot}/$PWD/build/buildenv %{buildroot}%{_prefix}
|
|
rm -r %{buildroot}/home
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
%endif
|
|
|
|
%check
|
|
%if %{with test}
|
|
%pytest
|
|
%endif
|
|
|
|
%if ! %{with test}
|
|
%files %{python_files}
|
|
%license LICENSE
|
|
%doc CHANGES README.rst
|
|
%{python_sitelib}/pyparsing
|
|
%{python_sitelib}/pyparsing-%{version}*-info
|
|
%endif
|
|
|
|
%changelog
|