mirror of
https://git.proxmox.com/git/llvm-toolchain
synced 2025-08-02 11:55:53 +00:00
* Various packages rename to allow co installations:
* libclang1 => libclang1-3.3 * libclang1-dbg => libclang1-3.3-dbg * libclang-dev => libclang-3.3-dev * libclang-common-dev => libclang-common-3.3-dev
This commit is contained in:
parent
14a30e2718
commit
23f2ff9b47
5
debian/changelog
vendored
5
debian/changelog
vendored
@ -5,6 +5,11 @@ llvm-toolchain-3.3 (1:3.3~0rc2-1~exp1) experimental; urgency=low
|
||||
* Improve the dependencies:
|
||||
* clang-3.3 depends on the exact same libllvm3.3 release
|
||||
* idem for lldb-3.3
|
||||
* Various packages rename to allow co installations:
|
||||
* libclang1 => libclang1-3.3
|
||||
* libclang1-dbg => libclang1-3.3-dbg
|
||||
* libclang-dev => libclang-3.3-dev
|
||||
* libclang-common-dev => libclang-common-3.3-dev
|
||||
|
||||
-- Sylvestre Ledru <sylvestre@debian.org> Fri, 19 Apr 2013 09:31:38 +0200
|
||||
|
||||
|
42
debian/control
vendored
42
debian/control
vendored
@ -19,8 +19,8 @@ Vcs-Browser: http://svn.debian.org/viewsvn/pkg-llvm/llvm-toolchain/branches/3.3/
|
||||
Package: clang-3.3
|
||||
Architecture: any
|
||||
Depends: ${shlibs:Depends}, ${misc:Depends}, ${dep:devlibs},
|
||||
libclang-common-dev (= ${binary:Version}),
|
||||
libclang1 (= ${binary:Version})
|
||||
libclang-common-3.3-dev (= ${binary:Version}),
|
||||
libclang1-3.3 (= ${binary:Version})
|
||||
Provides: c-compiler, objc-compiler, c++-compiler
|
||||
Recommends: llvm-3.3-dev, python
|
||||
Replaces: clang (<< 1:3.3), clang-3.1, clang-3.2, compiler-rt
|
||||
@ -81,7 +81,7 @@ Description: C, C++ and Objective-C compiler (LLVM based) - Documentation
|
||||
.
|
||||
This package contains the documentation.
|
||||
|
||||
Package: libclang1
|
||||
Package: libclang1-3.3
|
||||
Architecture: any
|
||||
Depends: ${shlibs:Depends}, ${misc:Depends}, ${dep:devlibs}
|
||||
Description: clang library
|
||||
@ -111,11 +111,11 @@ Description: clang library
|
||||
.
|
||||
This package contains the clang library.
|
||||
|
||||
Package: libclang1-dbg
|
||||
Package: libclang1-3.3-dbg
|
||||
Architecture: any
|
||||
Section: debug
|
||||
Priority: extra
|
||||
Depends: ${shlibs:Depends}, ${misc:Depends}, ${dep:devlibs}, libclang1
|
||||
Depends: ${shlibs:Depends}, ${misc:Depends}, ${dep:devlibs}, libclang1-3.3
|
||||
Description: clang library
|
||||
Clang project is a C, C++, Objective C and Objective C++ front-end
|
||||
for the LLVM compiler. Some of its goals include the following:
|
||||
@ -143,11 +143,11 @@ Description: clang library
|
||||
.
|
||||
This package contains the debugging symbols.
|
||||
|
||||
Package: libclang-dev
|
||||
Package: libclang-3.3-dev
|
||||
Architecture: any
|
||||
Section: libdevel
|
||||
Depends: ${shlibs:Depends}, ${misc:Depends}, ${dep:devlibs},
|
||||
libclang1 (= ${binary:Version}), libclang-common-dev (= ${binary:Version})
|
||||
libclang1-3.3 (= ${binary:Version}), libclang-common-3.3-dev (= ${binary:Version})
|
||||
Description: clang library - Development package
|
||||
Clang project is a C, C++, Objective C and Objective C++ front-end
|
||||
for the LLVM compiler. Some of its goals include the following:
|
||||
@ -173,13 +173,13 @@ Description: clang library - Development package
|
||||
* A single unified parser for C, Objective C, C++, and Objective C++
|
||||
* Conformance with C/C++/ObjC and their variants
|
||||
.
|
||||
This package contains the clang headers to develop extensions over libclang.
|
||||
This package contains the clang headers to develop extensions over libclang1-3.3.
|
||||
|
||||
Package: libclang-common-dev
|
||||
Package: libclang-common-3.3-dev
|
||||
Architecture: any
|
||||
Section: libdevel
|
||||
Depends: ${misc:Depends}, libllvm3.3 (= ${binary:Version})
|
||||
Replaces: llvm-3.3-dev (<< 1:3.2repack), libclang-dev
|
||||
Replaces: llvm-3.3-dev (<< 1:3.2repack), libclang-3.3-dev
|
||||
Breaks: llvm-3.3-dev (<< 1:3.2repack)
|
||||
Description: clang library - Common development package
|
||||
Clang project is a C, C++, Objective C and Objective C++ front-end
|
||||
@ -209,28 +209,6 @@ Description: clang library - Common development package
|
||||
This package contains the clang generic headers and some libraries
|
||||
(profiling, etc).
|
||||
|
||||
|
||||
# Package: compiler-rt
|
||||
# Architecture: amd64 i386
|
||||
# Replaces: libclang-dev
|
||||
# Section: libdevel
|
||||
# Depends: ${misc:Depends}, python
|
||||
# Description: Runtime C library - LLVM based
|
||||
# The compiler-rt project is a simple library that provides an implementation of
|
||||
# the low-level target-specific hooks required by code generation and other
|
||||
# runtime components. For example, when compiling for a 32-bit target,
|
||||
# converting a double to a 64-bit unsigned integer is compiling into a runtime
|
||||
# call to the "__fixunsdfdi" function. The compiler-rt library provides
|
||||
# optimized implementations of this and other low-level routines.
|
||||
# .
|
||||
# The current feature set of compiler-rt is:
|
||||
# .
|
||||
# * Full support for the libgcc interfaces on supported targets.
|
||||
# * High performance hand tuned implementations of commonly used functions
|
||||
# like __floatundidf in assembly that are dramatically faster than the
|
||||
# libgcc implementations.
|
||||
# .
|
||||
|
||||
Package: libllvm3.3
|
||||
Architecture: any
|
||||
Section: libs
|
||||
|
Loading…
Reference in New Issue
Block a user