Compare commits

...

1 Commits

Author SHA1 Message Date
Tom Stellard 9bd3f423c1 Build python module for python3 2018-10-04 02:12:37 +00:00
1 changed files with 20 additions and 17 deletions

View File

@ -1,12 +1,14 @@
Name: lldb Name: lldb
Version: 7.0.0 Version: 7.0.0
Release: 1%{?dist} Release: 2%{?dist}
Summary: Next generation high-performance debugger Summary: Next generation high-performance debugger
License: NCSA License: NCSA
URL: http://lldb.llvm.org/ URL: http://lldb.llvm.org/
Source0: http://%{?rc_ver:pre}releases.llvm.org/%{version}/%{?rc_ver:rc%{rc_ver}}/%{name}-%{version}%{?rc_ver:rc%{rc_ver}}.src.tar.xz Source0: http://%{?rc_ver:pre}releases.llvm.org/%{version}/%{?rc_ver:rc%{rc_ver}}/%{name}-%{version}%{?rc_ver:rc%{rc_ver}}.src.tar.xz
Patch0: 0001-Convert-symbolication.py-to-python3-using-2to3.patch
BuildRequires: cmake BuildRequires: cmake
BuildRequires: llvm-devel = %{version} BuildRequires: llvm-devel = %{version}
BuildRequires: clang-devel = %{version} BuildRequires: clang-devel = %{version}
@ -18,7 +20,7 @@ BuildRequires: zlib-devel
BuildRequires: libxml2-devel BuildRequires: libxml2-devel
BuildRequires: libedit-devel BuildRequires: libedit-devel
Requires: python2-lldb Requires: python3-lldb
%description %description
LLDB is a next generation, high-performance debugger. It is built as a set LLDB is a next generation, high-performance debugger. It is built as a set
@ -33,21 +35,21 @@ Requires: %{name}%{?_isa} = %{version}-%{release}
%description devel %description devel
The package contains header files for the LLDB debugger. The package contains header files for the LLDB debugger.
%package -n python2-lldb %package -n python3-lldb
%{?python_provide:%python_provide python2-lldb} %{?python_provide:%python_provide python3-lldb}
Summary: Python module for LLDB Summary: Python module for LLDB
BuildRequires: python2-devel BuildRequires: python3-devel
Requires: python2-six Requires: python3-six
%description -n python2-lldb %description -n python3-lldb
The package contains the LLDB Python module. The package contains the LLDB Python module.
%prep %prep
%setup -q -n %{name}-%{version}%{?rc_ver:rc%{rc_ver}}.src %autosetup -n %{name}-%{version}%{?rc_ver:rc%{rc_ver}}.src -p1
# HACK so that lldb can find its custom readline.so, because we move it # HACK so that lldb can find its custom readline.so, because we move it
# after install. # after install.
sed -i -e "s~import sys~import sys\nsys.path.insert\(1, '%{python2_sitearch}/lldb'\)~g" source/Interpreter/embedded_interpreter.py sed -i -e "s~import sys~import sys\nsys.path.insert\(1, '%{python3_sitearch}/lldb'\)~g" source/Interpreter/embedded_interpreter.py
%build %build
@ -78,9 +80,7 @@ CXXFLAGS="%{optflags} -Wno-error=format-security"
-DLLVM_LIBDIR_SUFFIX= \ -DLLVM_LIBDIR_SUFFIX= \
%endif %endif
\ \
-DPYTHON_EXECUTABLE:STRING=%{__python2} \ -DPYTHON_EXECUTABLE:STRING=%{__python3}
-DPYTHON_VERSION_MAJOR:STRING=$(%{__python2} -c "import sys; print sys.version_info.major") \
-DPYTHON_VERSION_MINOR:STRING=$(%{__python2} -c "import sys; print sys.version_info.minor")
make %{?_smp_mflags} make %{?_smp_mflags}
@ -93,11 +93,11 @@ rm -fv %{buildroot}%{_libdir}/*.a
# python: fix binary libraries location # python: fix binary libraries location
liblldb=$(basename $(readlink -e %{buildroot}%{_libdir}/liblldb.so)) liblldb=$(basename $(readlink -e %{buildroot}%{_libdir}/liblldb.so))
ln -vsf "../../../${liblldb}" %{buildroot}%{python2_sitearch}/lldb/_lldb.so ln -vsf "../../../${liblldb}" %{buildroot}%{python3_sitearch}/lldb/_lldb.so
mv -v %{buildroot}%{python2_sitearch}/readline.so %{buildroot}%{python2_sitearch}/lldb/readline.so mv -v %{buildroot}%{python3_sitearch}/readline.so %{buildroot}%{python3_sitearch}/lldb/readline.so
# remove bundled six.py # remove bundled six.py
rm -f %{buildroot}%{python2_sitearch}/six.* rm -f %{buildroot}%{python3_sitearch}/six.*
%post -p /sbin/ldconfig %post -p /sbin/ldconfig
%postun -p /sbin/ldconfig %postun -p /sbin/ldconfig
@ -111,10 +111,13 @@ rm -f %{buildroot}%{python2_sitearch}/six.*
%{_includedir}/lldb %{_includedir}/lldb
%{_libdir}/*.so %{_libdir}/*.so
%files -n python2-lldb %files -n python3-lldb
%{python2_sitearch}/lldb %{python3_sitearch}/lldb
%changelog %changelog
* Wed Oct 03 2018 Tom Stellard <tstellar@redhat.com> - 7.0.0-2
- Build python module for python3
* Tue Sep 25 2018 Tom Stellard <tstellar@redhat.com> - 7.0.0-1 * Tue Sep 25 2018 Tom Stellard <tstellar@redhat.com> - 7.0.0-1
- 7.0.0 Release - 7.0.0 Release