Blame SPECS/python-funcparserlib.spec

a9cd54
%global srcname funcparserlib
a9cd54
%global srcdesc \
a9cd54
Parser combinators are just higher-order functions that take parsers as their\
a9cd54
arguments and return them as result values. Parser combinators are:\
a9cd54
* First-class values\
a9cd54
* Extremely composable\
a9cd54
* Tend to make the code quite compact\
a9cd54
* Resemble the readable notation of xBNF grammars\
a9cd54
\
a9cd54
Parsers made with funcparserlib are pure-Python LL(*) parsers. It means that\
a9cd54
it's very easy to write them without thinking about look-aheads and all that\
a9cd54
hardcore parsing stuff. But the recursive descent parsing is a rather slow\
a9cd54
method compared to LL(k) or LR(k) algorithms.\
a9cd54
\
a9cd54
So the primary domain for funcparserlib is parsing little languages or external\
a9cd54
DSLs (domain specific languages).
a9cd54
a9cd54
Name:           python-%{srcname}
a9cd54
Version:        1.0.1
a9cd54
Release:        10%{?dist}
a9cd54
Summary:        Recursive descent parsing library based on functional combinators
a9cd54
a9cd54
# SPDX
a9cd54
License:        MIT
a9cd54
URL:            https://github.com/vlasovskikh/funcparserlib
a9cd54
Source:         %pypi_source
a9cd54
a9cd54
BuildArch:      noarch
a9cd54
BuildRequires:  python3-devel
a9cd54
BuildRequires:  %{py3_dist setuptools}
a9cd54
a9cd54
a9cd54
%description %{srcdesc}
a9cd54
a9cd54
a9cd54
%package -n python3-%{srcname}
a9cd54
Summary:        %{summary}
a9cd54
%{?python_provide:%python_provide python3-%{srcname}}
a9cd54
a9cd54
a9cd54
%description -n python3-%{srcname} %{srcdesc}
a9cd54
a9cd54
a9cd54
%prep
a9cd54
%autosetup -n %{srcname}-%{version}
a9cd54
a9cd54
a9cd54
%build
a9cd54
%py3_build
a9cd54
a9cd54
a9cd54
%install
a9cd54
%py3_install
a9cd54
a9cd54
a9cd54
%files -n python3-%{srcname}
a9cd54
%license LICENSE
a9cd54
%doc PKG-INFO README.md
a9cd54
%{python3_sitelib}/%{srcname}/
a9cd54
%{python3_sitelib}/%{srcname}-*.egg-info/
a9cd54
a9cd54
a9cd54
%changelog
a9cd54
* Sat Jan 18 2025 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.1-10
a9cd54
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
a9cd54
a9cd54
* Fri Sep 27 2024 Dridi Boukelmoune <dridi@fedoraproject.org> - 1.0.1-9
a9cd54
- Review of the License tag according to the SPDX standard
a9cd54
a9cd54
* Fri Jul 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.1-8
a9cd54
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
a9cd54
a9cd54
* Fri Jun 07 2024 Python Maint <python-maint@redhat.com> - 1.0.1-7
a9cd54
- Rebuilt for Python 3.13
a9cd54
a9cd54
* Fri Jan 26 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.1-6
a9cd54
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
a9cd54
a9cd54
* Mon Jan 22 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.1-5
a9cd54
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
a9cd54
a9cd54
* Fri Jul 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.1-4
a9cd54
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
a9cd54
a9cd54
* Tue Jun 13 2023 Python Maint <python-maint@redhat.com> - 1.0.1-3
a9cd54
- Rebuilt for Python 3.12
a9cd54
a9cd54
* Fri Jan 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.1-2
a9cd54
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
a9cd54
a9cd54
* Sat Nov 05 2022 Dridi Boukelmoune <dridi@fedoraproject.org> - 1.0.1-1
a9cd54
- Bump version to 1.0.1
a9cd54
a9cd54
* Fri Jul 29 2022 Alfredo Moralejo <amoralej@redhat.com> - 1.0.0-1
a9cd54
- Update to 1.0.0
a9cd54
a9cd54
* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.0a1-3.prerelease
a9cd54
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
a9cd54
a9cd54
* Mon Jun 13 2022 Python Maint <python-maint@redhat.com> - 1.0.0a1-2.prerelease
a9cd54
- Rebuilt for Python 3.11
a9cd54
a9cd54
* Wed Apr 20 2022 Dridi Boukelmoune <dridi@fedoraproject.org> - 1.0.0a1-1.prerelease
a9cd54
- Bump version to 1.0.0a1 prerelease
a9cd54
a9cd54
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.0a0-2.prerelease
a9cd54
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
a9cd54
a9cd54
* Mon Dec 06 2021 Dridi Boukelmoune <dridi@fedoraproject.org> - 1.0.0a0-1.prerelease
a9cd54
- Bump version to 1.0.0a0 prerelease
a9cd54
a9cd54
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.6-28
a9cd54
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
a9cd54
a9cd54
* Fri Jun 04 2021 Python Maint <python-maint@redhat.com> - 0.3.6-27
a9cd54
- Rebuilt for Python 3.10
a9cd54
a9cd54
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.6-26
a9cd54
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
a9cd54
a9cd54
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.6-25
a9cd54
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
a9cd54
a9cd54
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 0.3.6-24
a9cd54
- Rebuilt for Python 3.9
a9cd54
a9cd54
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.6-23
a9cd54
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
a9cd54
a9cd54
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 0.3.6-22
a9cd54
- Rebuilt for Python 3.8.0rc1 (#1748018)
a9cd54
a9cd54
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 0.3.6-21
a9cd54
- Rebuilt for Python 3.8
a9cd54
a9cd54
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.6-20
a9cd54
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
a9cd54
a9cd54
* Tue Feb 05 2019 Dridi Boukelmoune <dridi@fedoraproject.org> - 0.3.6-19
a9cd54
- Catch up with packaging guidelines
a9cd54
- In general, use recommended RPM macros
a9cd54
- Drop the Python 2 package
a9cd54
- Inline package description
a9cd54
a9cd54
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.6-18
a9cd54
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
a9cd54
a9cd54
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.6-17
a9cd54
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
a9cd54
a9cd54
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 0.3.6-16
a9cd54
- Rebuilt for Python 3.7
a9cd54
a9cd54
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.6-15
a9cd54
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
a9cd54
a9cd54
* Fri Jan 19 2018 Iryna Shcherbina <ishcherb@redhat.com> - 0.3.6-14
a9cd54
- Update Python 2 dependency declarations to new packaging standards
a9cd54
  (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
a9cd54
a9cd54
* Thu Aug 10 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 0.3.6-13
a9cd54
- Python 2 binary package renamed to python2-funcparserlib
a9cd54
  See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3
a9cd54
a9cd54
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.6-12
a9cd54
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
a9cd54
a9cd54
* Sat Feb 11 2017 Dridi Boukelmoune <dridi@fedoraproject.org> - 0.3.6-11
a9cd54
- Python 3 detection for epel7
a9cd54
a9cd54
* Fri Feb 10 2017 Dridi Boukelmoune <dridi@fedoraproject.org> - 0.3.6-10
a9cd54
- Update URL
a9cd54
a9cd54
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 0.3.6-9
a9cd54
- Rebuild for Python 3.6
a9cd54
a9cd54
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.3.6-8
a9cd54
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
a9cd54
a9cd54
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.6-7
a9cd54
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
a9cd54
a9cd54
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.3.6-6
a9cd54
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
a9cd54
a9cd54
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.3.6-5
a9cd54
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
a9cd54
a9cd54
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.3.6-4
a9cd54
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
a9cd54
a9cd54
* Wed May 14 2014 Bohuslav Kabrda <bkabrda@redhat.com> - 0.3.6-3
a9cd54
- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4
a9cd54
a9cd54
* Sat Dec 21 2013 Dridi Boukelmoune <dridi@fedoraproject.org> - 0.3.6-2
a9cd54
- Using %%{python3_version} instead of hardcoded 3.3
a9cd54
a9cd54
* Mon Dec 09 2013 Dridi Boukelmoune <dridi@fedoraproject.org> - 0.3.6-1
a9cd54
- Initial spec