diff options
author | François Andriot <albator78@libertysurf.fr> | 2023-04-09 19:20:39 +0200 |
---|---|---|
committer | François Andriot <albator78@libertysurf.fr> | 2023-04-09 19:24:19 +0200 |
commit | 1ee750e74af200e4de757ac99c60c92053b3380f (patch) | |
tree | 875ada4cd96ab4e6f632825027eb3120eceb692e | |
parent | 4bfb528842f18726efae80256f6ed2403630a73c (diff) | |
download | tde-packaging-1ee750e74af200e4de757ac99c60c92053b3380f.tar.gz tde-packaging-1ee750e74af200e4de757ac99c60c92053b3380f.zip |
RPM: update pytde
Signed-off-by: François Andriot <albator78@libertysurf.fr>
-rw-r--r-- | redhat/libraries/pytde/pytde.spec | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/redhat/libraries/pytde/pytde.spec b/redhat/libraries/pytde/pytde.spec index 03a1cbdd6..2e38227e1 100644 --- a/redhat/libraries/pytde/pytde.spec +++ b/redhat/libraries/pytde/pytde.spec @@ -63,14 +63,8 @@ BuildRequires: autoconf automake libtool m4 BuildRequires: gcc-c++ # PYTHON support -%if 0%{?rhel} >= 8 || 0%{?fedora} >= 31 || 0%{?suse_version} >= 1550 || 0%{?mgaversion} >= 8 -%global python python2 -%global __python %__python2 -%global python_sitearch %{python2_sitearch} -%else -%global python python -%endif -%{!?python_sitearch:%global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} +%global python python3 +%{!?python_sitearch:%global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib(1))")} BuildRequires: %{python} BuildRequires: %{python}-devel @@ -97,6 +91,7 @@ from tdeio, tdejs, tdehtml and tdeprint. %{python_sitearch}/*.so %{python_sitearch}/dcop*.py* %{python_sitearch}/pytde*.py* +%{python_sitearch}/__pycache__/*.pyc ########## @@ -153,9 +148,7 @@ tips and working code you can use to learn from. %prep %setup -q -n %{name}-%{tde_version}%{?preversion:~%{preversion}} -%if 0%{?fedora} >= 30 || 0%{?rhel} >= 8 || 0%{?mgaversion} >= 8 -%__sed -i "contrib/tdepyuic" -e "s|/usr/bin/env python|/usr/bin/env python2|" -%endif +%__sed -i "contrib/tdepyuic" -e "s|/usr/bin/env python|/usr/bin/env python3|" %build |