Matej Cepl
87e9fb868a
update to latest version OBS-URL: https://build.opensuse.org/request/show/951459 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyparsing?expand=0&rev=78
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() python-%{**} 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.7
|
|
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: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
# work around boo#1186870
|
|
Provides: %{mypython}%{python_version}dist(pyparsing) = %{version}
|
|
BuildArch: noarch
|
|
%if %{with test}
|
|
BuildRequires: %{python_module jinja2}
|
|
BuildRequires: %{python_module pytest}
|
|
BuildRequires: %{python_module railroad-diagrams}
|
|
%endif
|
|
%ifpython2
|
|
Provides: %{mypython}-parsing = %{version}
|
|
Obsoletes: %{mypython}-parsing < %{version}
|
|
%endif
|
|
%if "%{python_flavor}" == "python3" || "%{python_provides}" == "python3"
|
|
Provides: %{mypython}3dist(pyparsing) = %{version}
|
|
%endif
|
|
%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}
|
|
# do not require setuptools
|
|
# https://github.com/pyparsing/pyparsing/pull/133
|
|
sed -i -e 's:from setuptools :from distutils.core :g' setup.py
|
|
|
|
%build
|
|
%python_build
|
|
|
|
%install
|
|
%if ! %{with test}
|
|
%python_install
|
|
# ensure egg-info is a directory
|
|
%{python_expand rm -rf %{buildroot}%{$python_sitelib}/*.egg-info
|
|
cp -r pyparsing.egg-info %{buildroot}%{$python_sitelib}/pyparsing-%{version}-py%{$python_version}.egg-info
|
|
}
|
|
%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}-py*.egg-info/
|
|
%endif
|
|
|
|
%changelog
|