python-lark-parser/python-lark-parser.spec

142 lines
4.3 KiB
RPMSpec
Raw Normal View History

2018-09-26 21:42:16 +00:00
%global pypi_name lark-parser
Name: python-%{pypi_name}
2020-10-05 22:02:53 +00:00
Version: 0.9.0
Release: 2%{?dist}
2018-09-26 21:42:16 +00:00
Summary: Lark is a modern general-purpose parsing library for Python
License: MIT
Url: https://github.com/lark-parser/lark
Source: https://files.pythonhosted.org/packages/source/l/%{pypi_name}/%{pypi_name}-%{version}.tar.gz
BuildArch: noarch
%description
Lark is a modern general-purpose parsing library for Python.
Lark focuses on simplicity and power. It lets you choose between
two parsing algorithms:
Earley : Parses all context-free grammars (even ambiguous ones)!
It is the default.
LALR(1): Only LR grammars. Outperforms PLY and most if not all
other pure-python parsing libraries.
Both algorithms are written in Python and can be used interchangeably
with the same grammar (aside for algorithmic restrictions).
See "Comparison to other parsers" for more details.
Lark can auto magically build an AST from your grammar, without any
more code on your part.
Features:
- EBNF grammar with a little extra
- Earley & LALR(1)
- Builds an AST auto magically based on the grammar
- Automatic line & column tracking
- Automatic token collision resolution (unless both tokens are regexps)
- Python 2 & 3 compatible
- Unicode fully supported
2019-01-11 00:17:54 +00:00
%package -n python3-%{pypi_name}
Summary: %{summary}
BuildRequires: python3-devel
%{?python_provide:%python_provide python3-%{pypi_name}}
%description -n python3-%{pypi_name}
Lark is a modern general-purpose parsing library for Python.
Lark focuses on simplicity and power. It lets you choose between
two parsing algorithms:
Earley : Parses all context-free grammars (even ambiguous ones)!
It is the default.
LALR(1): Only LR grammars. Outperforms PLY and most if not all
other pure-python parsing libraries.
Both algorithms are written in Python and can be used interchangeably
with the same grammar (aside for algorithmic restrictions).
See "Comparison to other parsers" for more details.
Lark can auto magically build an AST from your grammar, without any
more code on your part.
Features:
- EBNF grammar with a little extra
- Earley & LALR(1)
- Builds an AST auto magically based on the grammar
- Automatic line & column tracking
- Automatic token collision resolution (unless both tokens are regexps)
- Python 2 & 3 compatible
- Unicode fully supported
2018-09-26 21:42:16 +00:00
%prep
%autosetup -n %{pypi_name}-%{version}
%build
%py3_build
%install
%py3_install
2020-03-07 13:24:28 +00:00
rm -rfv %{buildroot}/%{python3_sitelib}/lark-stubs/
2018-09-26 21:42:16 +00:00
2020-10-05 22:04:56 +00:00
%check
%{python3} -m tests
2019-01-11 00:17:54 +00:00
%files -n python3-%{pypi_name}
2018-09-26 21:42:16 +00:00
%license LICENSE
%doc README.md examples
%{python3_sitelib}/lark_parser-*.egg-info
%{python3_sitelib}/lark/
%changelog
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
2020-10-05 22:02:53 +00:00
* Mon Oct 05 2020 Miro Hrončok <mhroncok@redhat.com> - 0.9.0-1
- Update to 0.9.0
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.2-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
2020-05-26 01:22:31 +00:00
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 0.8.2-2
- Rebuilt for Python 3.9
2020-03-07 13:24:28 +00:00
* Sat Mar 07 2020 Thomas Andrejak <thomas.andrejak@gmail.com> - 0.8.2-1
- Update to 0.8.2
2020-02-27 21:07:04 +00:00
* Mon Feb 24 2020 Thomas Andrejak <thomas.andrejak@gmail.com> - 0.8.1-1
- Update to 0.8.1
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.7.8-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
2019-11-06 23:35:06 +00:00
* Wed Nov 06 2019 Thomas Andrejak <thomas.andrejak@c-s.fr> - 0.7.8-1
- Update to 0.7.8
2019-10-27 00:22:37 +00:00
* Fri Oct 25 2019 Thomas Andrejak <thomas.andrejak@c-s.fr> - 0.7.7-1
- Update to 0.7.7
2019-10-03 12:17:04 +00:00
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 0.7.1-4
- Rebuilt for Python 3.8.0rc1 (#1748018)
2019-08-19 08:43:30 +00:00
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 0.7.1-3
- Rebuilt for Python 3.8
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.7.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
2019-05-20 23:04:42 +00:00
* Mon May 20 2019 Scott K Logan <logans@cottsay.net> - 0.7.1-1
- Update to 0.7.1
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.4-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
2019-01-11 00:17:54 +00:00
* Fri Jan 11 2019 Thomas Andrejak <thomas.andrejak@gmail.com> - 0.6.4-2
- Fix package naming
2018-09-26 21:42:16 +00:00
* Mon Sep 24 2018 Thomas Andrejak <thomas.andrejak@gmail.com> - 0.6.4-1
- Initial package