lldb/lldb.spec

224 lines
6.9 KiB
RPMSpec
Raw Normal View History

2016-01-27 14:32:24 +00:00
Name: lldb
2018-05-24 20:04:27 +00:00
Version: 6.0.1
Release: 2%{?dist}
2016-01-27 14:32:24 +00:00
Summary: Next generation high-performance debugger
License: NCSA
URL: http://lldb.llvm.org/
2018-01-25 22:12:17 +00:00
Source0: http://llvm.org/releases/%{version}/%{name}-%{version}%{?rc_ver:rc%{rc_ver}}.src.tar.xz
2016-02-19 00:19:00 +00:00
ExclusiveArch: %{arm} aarch64 %{ix86} x86_64
2016-01-27 14:32:24 +00:00
BuildRequires: cmake
BuildRequires: llvm-devel = %{version}
BuildRequires: clang-devel = %{version}
2016-11-14 19:07:29 +00:00
BuildRequires: ncurses-devel
2016-01-27 14:32:24 +00:00
BuildRequires: swig
2016-02-14 04:03:20 +00:00
BuildRequires: llvm-static = %{version}
2016-02-14 07:36:06 +00:00
BuildRequires: libffi-devel
2016-02-14 08:04:06 +00:00
BuildRequires: zlib-devel
BuildRequires: libxml2-devel
BuildRequires: libedit-devel
2016-01-27 14:32:24 +00:00
%description
LLDB is a next generation, high-performance debugger. It is built as a set
of reusable components which highly leverage existing libraries in the
larger LLVM Project, such as the Clang expression parser and LLVM
disassembler.
%package devel
Summary: Development header files for LLDB
Requires: %{name}%{?_isa} = %{version}-%{release}
%description devel
The package contains header files for the LLDB debugger.
%package -n python2-lldb
%{?python_provide:%python_provide python2-lldb}
2016-01-27 14:32:24 +00:00
Summary: Python module for LLDB
BuildRequires: python2-devel
2016-02-19 00:19:00 +00:00
Requires: python2-six
2016-01-27 14:32:24 +00:00
%description -n python2-lldb
2016-01-27 14:32:24 +00:00
The package contains the LLDB Python module.
%prep
2018-01-25 22:12:17 +00:00
%setup -q -n %{name}-%{version}%{?rc_ver:rc%{rc_ver}}.src
2016-01-27 14:32:24 +00:00
# HACK so that lldb can find its custom readline.so, because we move it
# after install.
sed -i -e "s~import sys~import sys\nsys.path.insert\(1, '%{python2_sitearch}/lldb'\)~g" source/Interpreter/embedded_interpreter.py
2016-01-27 14:32:24 +00:00
%build
2016-10-26 22:02:57 +00:00
2016-01-27 14:32:24 +00:00
mkdir -p _build
cd _build
# Python version detection is broken
LDFLAGS="%{__global_ldflags} -lpthread -ldl"
2017-03-28 12:26:55 +00:00
CFLAGS="%{optflags} -Wno-error=format-security"
CXXFLAGS="%{optflags} -Wno-error=format-security"
2016-01-27 14:32:24 +00:00
%cmake .. \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
2016-02-24 23:48:14 +00:00
-DLLVM_LINK_LLVM_DYLIB:BOOL=ON \
2016-01-27 14:32:24 +00:00
-DLLVM_CONFIG:FILEPATH=/usr/bin/llvm-config-%{__isa_bits} \
\
-DLLDB_PATH_TO_LLVM_BUILD=%{_prefix} \
-DLLDB_PATH_TO_CLANG_BUILD=%{_prefix} \
\
-DLLDB_DISABLE_CURSES:BOOL=OFF \
-DLLDB_DISABLE_LIBEDIT:BOOL=OFF \
2016-01-27 14:32:24 +00:00
-DLLDB_DISABLE_PYTHON:BOOL=OFF \
2016-10-26 00:00:54 +00:00
%if 0%{?__isa_bits} == 64
-DLLVM_LIBDIR_SUFFIX=64 \
%else
-DLLVM_LIBDIR_SUFFIX= \
%endif
2016-01-27 14:32:24 +00:00
\
-DPYTHON_EXECUTABLE:STRING=%{__python2} \
-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")
2016-01-27 14:32:24 +00:00
make %{?_smp_mflags}
%install
cd _build
make install DESTDIR=%{buildroot}
# remove static libraries
rm -fv %{buildroot}%{_libdir}/*.a
# python: fix binary libraries location
liblldb=$(basename $(readlink -e %{buildroot}%{_libdir}/liblldb.so))
ln -vsf "../../../${liblldb}" %{buildroot}%{python2_sitearch}/lldb/_lldb.so
mv -v %{buildroot}%{python2_sitearch}/readline.so %{buildroot}%{python2_sitearch}/lldb/readline.so
2016-02-19 00:19:00 +00:00
# remove bundled six.py
rm -f %{buildroot}%{python2_sitearch}/six.*
2016-01-27 14:32:24 +00:00
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files
%{_bindir}/lldb*
%{_libdir}/liblldb.so.*
2018-01-25 22:12:17 +00:00
%{_libdir}/liblldbIntelFeatures.so.*
2016-01-27 14:32:24 +00:00
%files devel
%{_includedir}/lldb
%{_libdir}/*.so
%files -n python2-lldb
%{python2_sitearch}/lldb
2016-01-27 14:32:24 +00:00
%changelog
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 6.0.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
2018-06-29 05:00:19 +00:00
* Mon May 21 2018 Tom Stellard <tstellar@redhat.com> - 6.0.1-1
- 6.0.1 Release
2018-05-24 20:04:27 +00:00
* Mon May 21 2018 Tom Stellard <tstellar@redhat.com> - 6.0.1-0.1.rc1
- 6.0.1-rc1 Release
* Sat May 05 2018 Miro Hrončok <mhroncok@redhat.com> - 6.0.0-4
- Update Python macros to new packaging standards
(See https://fedoraproject.org/wiki/Changes/Avoid_usr_bin_python_in_RPM_Build)
* Tue Mar 20 2018 Tom Stellard <tstellar@redhat.com> - 6.0.0-3
- Rebuild against llvm with the rhbz#1558657 fix
* Wed Mar 14 2018 Tilmann Scheller <tschelle@redhat.com> - 6.0.0-2
- Restore LLDB SB API headers, fixes rhbz#1548758
2018-03-09 17:01:54 +00:00
* Fri Mar 09 2018 Tom Stellard <tstellar@redhat.com> - 6.0.0-1
- 6.0.0 Release
2018-02-13 19:52:38 +00:00
* Tue Feb 13 2018 Tom Stellard <tstellar@redhat.com> - 6.0.0-0.3.rc2
- 6.0.0-rc2 release
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 6.0.0-0.2.rc1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
2018-01-25 22:12:17 +00:00
* Thu Jan 25 2018 Tom Stellard <tstellar@redhat.com> - 6.0.0-0.1.rc1
- 6.0.1-rc1 Release
2017-12-21 15:57:05 +00:00
* Thu Dec 21 2017 Tom Stellard <tstellar@redhat.com> - 5.0.1-1
- 5.0.1 Release
2017-10-06 16:28:37 +00:00
* Fri Oct 06 2017 Tom Stellard <tstellar@redhat.com> - 5.0.0-1
- 5.0.0 Release
* Sat Aug 19 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 4.0.1-4
- Python 2 binary package renamed to python2-lldb
See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3
* Mon Jul 31 2017 Jan Kratochvil <jan.kratochvil@redhat.com> - 4.0.1-3
- Backport lldb r303907
Resolves rhbz #1356140
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
2017-06-26 23:44:03 +00:00
* Mon Jun 26 2017 Tom Stellard <tstellar@redhat.com> - 4.0.1-1
- 4.0.1 Release
* Mon May 15 2017 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.0.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_27_Mass_Rebuild
2017-03-28 12:26:55 +00:00
* Fri Mar 24 2017 Tom Stellard <tstellar@redhat.com> - 4.0.0-1
- lldb 4.0.0
* Tue Mar 21 2017 Tom Stellard <tstellar@redhat.com> - 3.9.1-4
- Add explicit Requires for llvm-libs and clang-libs
* Fri Mar 17 2017 Tom Stellard <tstellar@redhat.org> - 3.9.1-3
- Adjust python sys.path so lldb can find readline.so
2017-03-14 18:17:44 +00:00
* Tue Mar 14 2017 Tom Stellard <tstellar@redhat.com> - 3.9.1-2
- Fix build with gcc 7
2017-03-01 19:20:44 +00:00
* Thu Mar 02 2017 Dave Airlie <airlied@redhat.com - 3.9.1-1
- lldb 3.9.1
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.9.0-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
* Mon Nov 14 2016 Nathaniel McCallum <npmccallum@redhat.com> - 3.9.0-3
- Disable libedit support until upstream fixes it (#1356140)
* Wed Nov 2 2016 Peter Robinson <pbrobinson@fedoraproject.org> 3.9.0-2
- Set upstream supported architectures in an ExclusiveArch
2016-10-26 00:00:54 +00:00
* Wed Oct 26 2016 Dave Airlie <airlied@redhat.com> - 3.9.0-1
- lldb 3.9.0
2016-10-26 22:02:57 +00:00
- fixup some issues with MIUtilParse by removing it
- build with -fno-rtti
2016-10-26 00:00:54 +00:00
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.8.0-2
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
2016-03-10 01:06:05 +00:00
* Thu Mar 10 2016 Dave Airlie <airlied@redhat.com> 3.8.0-1
- lldb 3.8.0
2016-03-02 23:29:20 +00:00
* Thu Mar 03 2016 Dave Airlie <airlied@redhat.com> 3.8.0-0.3
- lldb 3.8.0 rc3
2016-02-24 23:48:14 +00:00
* Wed Feb 24 2016 Dave Airlie <airlied@redhat.com> - 3.8.0-0.2
- dynamically link to llvm
2016-02-19 00:19:00 +00:00
* Thu Feb 18 2016 Dave Airlie <airlied@redhat.com> - 3.8.0-0.1
- lldb 3.8.0 rc2
2016-02-14 03:16:20 +00:00
* Sun Feb 14 2016 Dave Airlie <airlied@redhat.com> 3.7.1-3
- rebuild lldb against latest llvm
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 3.7.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
2016-01-27 14:32:24 +00:00
* Tue Oct 06 2015 Jan Vcelak <jvcelak@fedoraproject.org> 3.7.0-100
- initial version using cmake build system