Accepting request 403704 from devel:tools:compiler
1 OBS-URL: https://build.opensuse.org/request/show/403704 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/llvm?expand=0&rev=83
This commit is contained in:
commit
ebc7bfdcae
@ -1,3 +1,9 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri May 20 07:44:49 UTC 2016 - jengelh@inai.de
|
||||||
|
|
||||||
|
- Set RPM group, drop marketing words from summary in lieu of
|
||||||
|
something useful. Implement shared library guideline.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun May 15 17:13:24 UTC 2016 - ronisbr@gmail.com
|
Sun May 15 17:13:24 UTC 2016 - ronisbr@gmail.com
|
||||||
|
|
||||||
|
22
lldb.spec
22
lldb.spec
@ -20,9 +20,9 @@
|
|||||||
Name: lldb
|
Name: lldb
|
||||||
Version: 3.8.0
|
Version: 3.8.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Next generation high-performance debugger
|
Summary: Software debugger built using LLVM libraries
|
||||||
License: NCSA
|
License: NCSA
|
||||||
Group: Development/Languages/Other
|
Group: Development/Tools/Debuggers
|
||||||
Url: http://lldb.llvm.org
|
Url: http://lldb.llvm.org
|
||||||
Source: http://llvm.org/releases/%{version}/lldb-%{version}.src.tar.xz
|
Source: http://llvm.org/releases/%{version}/lldb-%{version}.src.tar.xz
|
||||||
# PATCH-FIX-OPENSUSE lldb-cmake.patch -- Let us set LLDB_REVISION and fix ncurses include path.
|
# PATCH-FIX-OPENSUSE lldb-cmake.patch -- Let us set LLDB_REVISION and fix ncurses include path.
|
||||||
@ -55,11 +55,18 @@ of reusable components which highly leverage existing libraries in the
|
|||||||
larger LLVM Project, such as the Clang expression parser and LLVM
|
larger LLVM Project, such as the Clang expression parser and LLVM
|
||||||
disassembler.
|
disassembler.
|
||||||
|
|
||||||
|
%package -n liblldb3_8
|
||||||
|
Summary: LLDB software debugger runtime library
|
||||||
|
Group: System/Libraries
|
||||||
|
|
||||||
|
%description -n liblldb3_8
|
||||||
|
This subpackage contains the main LLDB component.
|
||||||
|
|
||||||
%package devel
|
%package devel
|
||||||
Summary: Development files for LLDB
|
Summary: Development files for LLDB
|
||||||
Group: Development/Languages/Other
|
Group: Development/Languages/Other
|
||||||
Requires: libedit-devel
|
Requires: libedit-devel
|
||||||
Requires: lldb = %{version}
|
Requires: liblldb3_8 = %{version}
|
||||||
Requires: zlib-devel
|
Requires: zlib-devel
|
||||||
|
|
||||||
%description devel
|
%description devel
|
||||||
@ -114,16 +121,19 @@ rm %{buildroot}%{_libdir}/liblldb*.a
|
|||||||
# Fix duplicated files.
|
# Fix duplicated files.
|
||||||
%fdupes %{_includedir}/%{name}/Host/
|
%fdupes %{_includedir}/%{name}/Host/
|
||||||
|
|
||||||
%post -p /sbin/ldconfig
|
%post -n liblldb3_8 -p /sbin/ldconfig
|
||||||
%postun -p /sbin/ldconfig
|
%postun -n liblldb3_8 -p /sbin/ldconfig
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
%{_bindir}/lldb*
|
%{_bindir}/lldb*
|
||||||
%{_libdir}/liblldb.so.*
|
|
||||||
%{py_sitedir}/lldb
|
%{py_sitedir}/lldb
|
||||||
%{py_sitedir}/readline.so
|
%{py_sitedir}/readline.so
|
||||||
|
|
||||||
|
%files -n liblldb3_8
|
||||||
|
%defattr(-,root,root)
|
||||||
|
%{_libdir}/liblldb.so.*
|
||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
%{_includedir}/lldb
|
%{_includedir}/lldb
|
||||||
|
Loading…
x
Reference in New Issue
Block a user