From 467bb0b7a25d0701e9343ac6b0ff3b4c85c1a04f Mon Sep 17 00:00:00 2001 From: Jakub Bogusz Date: Wed, 10 Feb 2021 20:08:54 +0100 Subject: [PATCH] - new --- python-parse.spec | 106 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 106 insertions(+) create mode 100644 python-parse.spec diff --git a/python-parse.spec b/python-parse.spec new file mode 100644 index 0000000..0fdc957 --- /dev/null +++ b/python-parse.spec @@ -0,0 +1,106 @@ +# +# Conditional build: +%bcond_without tests # unit tests +%bcond_without python2 # CPython 2.x module +%bcond_without python3 # CPython 3.x module + +Summary: parse() - the opposite of format() +Summary(pl.UTF-8): parse() - odwrotność format() +Name: python-parse +# keep 1.12.x here for python2 support +Version: 1.12.1 +Release: 1 +License: MIT +Group: Libraries/Python +#Source0Download: https://pypi.org/simple/parse/ +Source0: https://files.pythonhosted.org/packages/source/p/parse/parse-%{version}.tar.gz +# Source0-md5: 8fc634769f1d841f14a52dd731ca447a +URL: https://pypi.org/project/parse/ +%if %{with python2} +BuildRequires: python-modules >= 1:2.7 +BuildRequires: python-setuptools +%endif +%if %{with python3} +BuildRequires: python3-modules >= 1:3.4 +BuildRequires: python3-setuptools +%endif +BuildRequires: rpm-pythonprov +BuildRequires: rpmbuild(macros) >= 1.714 +Requires: python-modules >= 1:2.7 +BuildArch: noarch +BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n) + +%description +Parse strings using a specification based on the Python format() +syntax. + +%description -l pl.UTF-8 +Rozkład łańcuchów znaków przy użyciu specyfikacji opartej na składni +pythonowej metody format(). + +%package -n python3-parse +Summary: parse() - the opposite of format() +Summary(pl.UTF-8): parse() - odwrotność format() +Group: Libraries/Python +Requires: python3-modules >= 1:3.4 + +%description -n python3-parse +Parse strings using a specification based on the Python format() +syntax. + +%description -n python3-parse -l pl.UTF-8 +Rozkład łańcuchów znaków przy użyciu specyfikacji opartej na składni +pythonowej metody format(). + +%prep +%setup -q -n parse-%{version} + +%build +%if %{with python2} +%py_build + +%if %{with tests} +%{__python} test_parse.py +%endif +%endif + +%if %{with python3} +%py3_build + +%if %{with tests} +%{__python3} test_parse.py +%endif +%endif + +%install +rm -rf $RPM_BUILD_ROOT + +%if %{with python2} +%py_install + +%py_postclean +%endif + +%if %{with python3} +%py3_install +%endif + +%clean +rm -rf $RPM_BUILD_ROOT + +%if %{with python2} +%files +%defattr(644,root,root,755) +%doc README.rst +%{py_sitescriptdir}/parse.py[co] +%{py_sitescriptdir}/parse-%{version}-py*.egg-info +%endif + +%if %{with python3} +%files -n python3-parse +%defattr(644,root,root,755) +%doc README.rst +%{py3_sitescriptdir}/parse.py +%{py3_sitescriptdir}/__pycache__/parse.cpython-*.py[co] +%{py3_sitescriptdir}/parse-%{version}-py*.egg-info +%endif -- 2.44.0