Package python-module-funcparserlib: Information

Danger alert: Package removed from sisyphus repository

Removed in the task: #280122
Package removed: Grigory Ustinov
Deletion date: July 23, 2021
Message: python2_eol
    Source package: python-module-funcparserlib
    Version: 0.3.6-alt1
    Build time:  Sep 23, 2019, 06:54 PM in the task #238021
    Report package bug
    License: MIT
    Summary: Recurisve descent parsing library for Python based on functional combinators
    Description: 
    Parser combinators are just higher-order functions that take parsers as their
    arguments and return them as result values. Parser combinators are:
    
        * First-class values
        * Extremely composable
        * Tend to make the code quite compact
        * Resemble the readable notation of xBNF grammars
    
    Parsers made with funcparserlib are pure-Python LL(*) parsers. It means that
    it's very easy to write them without thinking about look-aheads and all that
    hardcore parsing stuff. But the recursive descent parsing is a rather slow
    method compared to LL(k) or LR(k) algorithms.
    
    So the primary domain for funcparserlib is parsing little languages or external
    DSLs (domain specific languages).
    
    The library itself is very small. Its source code is only 0.5 KLOC, with lots
    of comments included. It features the longest parsed prefix error reporting, as
    well as a tiny lexer generator for token position tracking.

    List of rpms provided by this srpm:
    python-module-funcparserlib (noarch)

    Maintainer: Grigory Ustinov


      1. python-dev
      2. rpm-build-python
      3. python-module-setuptools
      4. python-module-setuptools

    Last changed


    Sept. 23, 2019 Grigory Ustinov 0.3.6-alt1
    - Build new version for python3.
    Oct. 20, 2011 Vitaly Kuznetsov 0.3.4-alt2.1
    - Rebuild with Python-2.7
    May 19, 2010 Kirill Maslinsky 0.3.4-alt2
    - fixed license: MIT, not GPL