summaryrefslogtreecommitdiff
path: root/python-pydevd.spec
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-04-10 13:00:38 +0000
committerCoprDistGit <infra@openeuler.org>2023-04-10 13:00:38 +0000
commit4d8713049beb8937c22b6742112f230c79befb74 (patch)
tree68c7303062868f5c8da6e5ca72eb761dd6447b56 /python-pydevd.spec
parentdae181f43324621f1b59202563badfebd9a2c787 (diff)
automatic import of python-pydevd
Diffstat (limited to 'python-pydevd.spec')
-rw-r--r--python-pydevd.spec116
1 files changed, 116 insertions, 0 deletions
diff --git a/python-pydevd.spec b/python-pydevd.spec
new file mode 100644
index 0000000..5b78bc3
--- /dev/null
+++ b/python-pydevd.spec
@@ -0,0 +1,116 @@
+%global _empty_manifest_terminate_build 0
+Name: python-pydevd
+Version: 2.9.5
+Release: 1
+Summary: PyDev.Debugger (used in PyDev, PyCharm and VSCode Python)
+License: EPL, Apache 2.0
+URL: https://github.com/fabioz/PyDev.Debugger/
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/18/34/06ac3b3afb713170a8694cc04eb9679ff7ad421920a966d5c66e8af8145d/pydevd-2.9.5.tar.gz
+
+
+%description
+The sources for the PyDev.Debugger may be seen at:
+https://github.com/fabioz/PyDev.Debugger
+In general, the debugger backend should **NOT** be installed separately if you're using an IDE which already
+bundles it (such as PyDev, PyCharm or bundled through debugpy, which is the debug adapter used in
+VSCode Python and Visual Studio Python).
+It is however available in PyPi so that it can be installed for doing remote debugging with `pip` -- so, when
+debugging a process which runs in another machine, it's possible to `pip install pydevd` and in the code use
+`pydevd.settrace(host='10.1.1.1')` to connect the debugger backend to the debugger UI running in the IDE
+(whereas previously the sources had to be manually copied from the IDE installation).
+`pydevd` is compatible with Python 3.6 onwards.
+For `Python 2` please keep using `pydevd 2.8.0`.
+`pydevd` is tested both with CPython as well as PyPy.
+Recent versions contain speedup modules using Cython, which are generated with a few changes in the regular files
+to `cythonize` the files. To update and compile the cython sources (and generate some other auto-generated files),
+`build_tools/build.py` should be run -- note that the resulting .pyx and .c files should be commited.
+
+%package -n python3-pydevd
+Summary: PyDev.Debugger (used in PyDev, PyCharm and VSCode Python)
+Provides: python-pydevd
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+BuildRequires: python3-cffi
+BuildRequires: gcc
+BuildRequires: gdb
+%description -n python3-pydevd
+The sources for the PyDev.Debugger may be seen at:
+https://github.com/fabioz/PyDev.Debugger
+In general, the debugger backend should **NOT** be installed separately if you're using an IDE which already
+bundles it (such as PyDev, PyCharm or bundled through debugpy, which is the debug adapter used in
+VSCode Python and Visual Studio Python).
+It is however available in PyPi so that it can be installed for doing remote debugging with `pip` -- so, when
+debugging a process which runs in another machine, it's possible to `pip install pydevd` and in the code use
+`pydevd.settrace(host='10.1.1.1')` to connect the debugger backend to the debugger UI running in the IDE
+(whereas previously the sources had to be manually copied from the IDE installation).
+`pydevd` is compatible with Python 3.6 onwards.
+For `Python 2` please keep using `pydevd 2.8.0`.
+`pydevd` is tested both with CPython as well as PyPy.
+Recent versions contain speedup modules using Cython, which are generated with a few changes in the regular files
+to `cythonize` the files. To update and compile the cython sources (and generate some other auto-generated files),
+`build_tools/build.py` should be run -- note that the resulting .pyx and .c files should be commited.
+
+%package help
+Summary: Development documents and examples for pydevd
+Provides: python3-pydevd-doc
+%description help
+The sources for the PyDev.Debugger may be seen at:
+https://github.com/fabioz/PyDev.Debugger
+In general, the debugger backend should **NOT** be installed separately if you're using an IDE which already
+bundles it (such as PyDev, PyCharm or bundled through debugpy, which is the debug adapter used in
+VSCode Python and Visual Studio Python).
+It is however available in PyPi so that it can be installed for doing remote debugging with `pip` -- so, when
+debugging a process which runs in another machine, it's possible to `pip install pydevd` and in the code use
+`pydevd.settrace(host='10.1.1.1')` to connect the debugger backend to the debugger UI running in the IDE
+(whereas previously the sources had to be manually copied from the IDE installation).
+`pydevd` is compatible with Python 3.6 onwards.
+For `Python 2` please keep using `pydevd 2.8.0`.
+`pydevd` is tested both with CPython as well as PyPy.
+Recent versions contain speedup modules using Cython, which are generated with a few changes in the regular files
+to `cythonize` the files. To update and compile the cython sources (and generate some other auto-generated files),
+`build_tools/build.py` should be run -- note that the resulting .pyx and .c files should be commited.
+
+%prep
+%autosetup -n pydevd-2.9.5
+
+%build
+%py3_build
+
+%install
+%py3_install
+install -d -m755 %{buildroot}/%{_pkgdocdir}
+if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi
+if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi
+if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi
+if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi
+pushd %{buildroot}
+if [ -d usr/lib ]; then
+ find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+if [ -d usr/lib64 ]; then
+ find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+if [ -d usr/bin ]; then
+ find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+if [ -d usr/sbin ]; then
+ find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+touch doclist.lst
+if [ -d usr/share/man ]; then
+ find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst
+fi
+popd
+mv %{buildroot}/filelist.lst .
+mv %{buildroot}/doclist.lst .
+
+%files -n python3-pydevd -f filelist.lst
+%dir %{python3_sitearch}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Mon Apr 10 2023 Python_Bot <Python_Bot@openeuler.org> - 2.9.5-1
+- Package Spec generated