commit 564a3ecc427990e98b629ace15973906e325834b
Author: Jakub Bogusz <[email protected]>
Date:   Sun Oct 20 15:12:40 2024 +0200

    - new

 python-executing.spec | 125 ++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 125 insertions(+)
---
diff --git a/python-executing.spec b/python-executing.spec
new file mode 100644
index 0000000..cbbf734
--- /dev/null
+++ b/python-executing.spec
@@ -0,0 +1,125 @@
+#
+# Conditional build:
+%bcond_without tests   # unit tests
+%bcond_without python2 # CPython 2.x module
+%bcond_without python3 # CPython 3.x module
+
+Summary:       Get the currently executing AST node of a frame, and other 
information
+Summary(pl.UTF-8):     Pobieranie aktualnie wykonywanego węzła AST ramki oraz 
innych informacji
+Name:          python-executing
+# keep 1.x here for python2 support
+Version:       1.2.0
+Release:       1
+License:       MIT
+Group:         Libraries/Python
+#Source0Download: https://pypi.org/simple/executing/
+Source0:       
https://files.pythonhosted.org/packages/source/e/executing/executing-%{version}.tar.gz
+# Source0-md5: e6fa9a6abf00555ccc8a6b3524729238
+URL:           https://pypi.org/project/executing/
+%if %{with python2}
+BuildRequires: python-modules >= 1:2.7
+BuildRequires: python-setuptools
+BuildRequires: python-setuptools_scm
+BuildRequires: python-toml
+%if %{with tests}
+BuildRequires: python-asttokens
+BuildRequires: python-littleutils
+BuildRequires: python-pytest
+BuildRequires: python-typing
+%endif
+%endif
+%if %{with python3}
+BuildRequires: python3-modules >= 1:3.5
+BuildRequires: python3-setuptools
+BuildRequires: python3-setuptools_scm
+# for setuptools_scm[toml] >= ? with python3 < 3.11
+BuildRequires: python3-tomli >= 1
+%if %{with tests}
+BuildRequires: python3-asttokens
+BuildRequires: python3-littleutils
+BuildRequires: python3-pytest
+# py3.11+
+#BuildRequires:        python3-rich
+%endif
+%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
+This mini-package lets you get information about what a frame is
+currently doing, particularly the AST node being executed.
+
+%description -l pl.UTF-8
+Ten minipakiet pozwala pobierać informacje o wykonywanej aktualnie
+ramce, w szczególności węźle AST.
+
+%package -n python3-executing
+Summary:       Get the currently executing AST node of a frame, and other 
information
+Summary(pl.UTF-8):     Pobieranie aktualnie wykonywanego węzła AST ramki oraz 
innych informacji
+Group:         Libraries/Python
+Requires:      python3-modules >= 1:3.5
+
+%description -n python3-executing
+This mini-package lets you get information about what a frame is
+currently doing, particularly the AST node being executed.
+
+%description -n python3-executing -l pl.UTF-8
+Ten minipakiet pozwala pobierać informacje o wykonywanej aktualnie
+ramce, w szczególności węźle AST.
+
+%prep
+%setup -q -n executing-%{version}
+
+%build
+%if %{with python2}
+%py_build
+
+%if %{with tests}
+PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 \
+%{__python} -m pytest tests
+%endif
+%endif
+
+%if %{with python3}
+%py3_build
+
+%if %{with tests}
+PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 \
+%{__python3} -m pytest tests
+%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 LICENSE.txt README.md
+%{py_sitescriptdir}/executing
+%{py_sitescriptdir}/executing-%{version}-py*.egg-info
+%endif
+
+%if %{with python3}
+%files -n python3-executing
+%defattr(644,root,root,755)
+%doc LICENSE.txt README.md
+%{py3_sitescriptdir}/executing
+%{py3_sitescriptdir}/executing-%{version}-py*.egg-info
+%endif
================================================================

---- gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/python-executing.git/commitdiff/564a3ecc427990e98b629ace15973906e325834b

_______________________________________________
pld-cvs-commit mailing list
[email protected]
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit

Reply via email to