Merge remote-tracking branch 'origin/9' into snapshot

This commit is contained in:
Sylvestre Ledru 2019-10-07 09:48:35 +02:00
commit 4bef74c9ba
3 changed files with 10 additions and 2 deletions

7
debian/changelog vendored
View File

@ -87,6 +87,13 @@ llvm-toolchain-snapshot (1:10~svn366440-1~exp1) experimental; urgency=medium
-- Sylvestre Ledru <sylvestre@debian.org> Thu, 18 Jul 2019 18:58:32 +0200 -- Sylvestre Ledru <sylvestre@debian.org> Thu, 18 Jul 2019 18:58:32 +0200
llvm-toolchain-9 (1:9-3) unstable; urgency=medium
* python-clang-9: missing dependency on libclang-9-dev
(Closes: #941890)
-- Sylvestre Ledru <sylvestre@debian.org> Mon, 07 Oct 2019 09:47:10 +0200
llvm-toolchain-9 (1:9-2) unstable; urgency=medium llvm-toolchain-9 (1:9-2) unstable; urgency=medium
[ Gianfranco Costamagna ] [ Gianfranco Costamagna ]

2
debian/control vendored
View File

@ -222,7 +222,7 @@ Description: Library for coverage-guided fuzz testing
Package: python-clang-10 Package: python-clang-10
Section: python Section: python
Architecture: any Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}, python3 Depends: ${shlibs:Depends}, ${misc:Depends}, python3, libclang-9-dev
Replaces: python-clang-x.y Replaces: python-clang-x.y
Conflicts: python-clang-x.y Conflicts: python-clang-x.y
Provides: python-clang-x.y Provides: python-clang-x.y

3
debian/rules vendored
View File

@ -69,7 +69,8 @@ endif
FORCE_NOT_GCC_9_DISTRO := eoan bullseye sid FORCE_NOT_GCC_9_DISTRO := eoan bullseye sid
ifneq (,$(filter $(DISTRO),$(FORCE_NOT_GCC_9_DISTRO))) ifneq (,$(filter $(DISTRO),$(FORCE_NOT_GCC_9_DISTRO)))
# Force gcc-8 # Force gcc before 9 (gcc 8 on Debian unstable) because it causes
# huge increase of the size of the .deb (because of .a and .so) and issues in the libs
GCC_VERSION := 8 GCC_VERSION := 8
endif endif