kumquat-buildroot/package/python-pyparsing/Config.in
Fabrice Fontaine b4705dfdd4 package/python-pyparsing: needs python3
python-pyparsing dropped python2 support since version 3.0.0:
https://github.com/pyparsing/pyparsing/blob/master/docs/whats_new_in_3_0_0.rst#python-2-x-no-longer-supported
resulting in the following build failure since bump to version 3.0.6 in
commit 7affc7827a:

  File "setup.py", line 8, in <module>
    from pyparsing import __version__ as pyparsing_version
  File "/home/buildroot/autobuild/instance-0/output-1/build/python-pyparsing-3.0.6/pyparsing/__init__.py", line 100
    major: int
         ^
SyntaxError: invalid syntax

Fixes:
 - http://autobuild.buildroot.org/results/8ac5224f4b6c2c59035dbfb53541e76f58b15e47

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2022-01-11 21:48:23 +01:00

12 lines
446 B
Plaintext

config BR2_PACKAGE_PYTHON_PYPARSING
bool "python-pyparsing"
depends on BR2_PACKAGE_PYTHON3
help
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.
https://github.com/pyparsing/pyparsing/