diff --git a/README.md b/README.md index 303ca1f..7508922 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # python-myst_parser +An extended CommonMark compliant parser. + diff --git a/python-myst_parser.spec b/python-myst_parser.spec new file mode 100644 index 0000000..07126c0 --- /dev/null +++ b/python-myst_parser.spec @@ -0,0 +1,65 @@ +%define pkgname %(echo %name | cut -d- -f2- | tr - _) +Name: python-myst_parser +Version: 2.0.0 +Release: 1mamba +Summary: An extended CommonMark compliant parser +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://github.com/executablebooks/MyST-Parser +Source: https://pypi.debian.net/myst-parser/myst_parser-%{version}.tar.gz +License: MIT +## AUTOBUILDREQ-BEGIN +BuildRequires: (python3.11dist(markdown-it-py) >= 3 with python3.11dist(markdown-it-py) < 4) +BuildRequires: (python3.11dist(mdit-py-plugins) >= 0.4 with python3.11dist(mdit-py-plugins) < 1) +BuildRequires: libpython311-devel +BuildRequires: python3.11dist(docutils) +BuildRequires: python3.11dist(jinja2) +BuildRequires: python3.11dist(pyyaml) +BuildRequires: python3.11dist(sphinx) +## AUTOBUILDREQ-END + +%description +%{summary}. + +%if 0%{?with_pyver} +%pyver_package +%endif + +%prep +%setup -q -n myst_parser-%{version} + +%build +CFLAGS="%{optflags}" %{__python} -m build --no-isolation --wheel + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%{__python} -m installer --destdir=%{buildroot} dist/*.whl + +#%if "%{?with_pyver}" != "3" +## Rename any conflicting file outside of python site packages tree +#for f in %{_bindir}/pdm; do +# mv %{buildroot}${f}{,-%{?pyappend}} +#done +#%endif + +%files %{?pyappend} +%defattr(-,root,root) +%{_bindir}/myst-anchors +%{_bindir}/myst-docutils-demo +%{_bindir}/myst-docutils-html +%{_bindir}/myst-docutils-html5 +%{_bindir}/myst-docutils-latex +%{_bindir}/myst-docutils-pseudoxml +%{_bindir}/myst-docutils-xml +%{_bindir}/myst-inv +%dir %{python_sitelib}/%{pkgname}-%{version}.dist-info +%{python_sitelib}/%{pkgname}-%{version}.dist-info/* +%dir %{python_sitelib}/%{pkgname} +%{python_sitelib}/%{pkgname}/* +%doc LICENSE + +%changelog +* Thu Mar 14 2024 Silvan Calarco 2.0.0-1mamba +- package created using the webbuild interface