Your message dated Sat, 12 Aug 2017 12:06:28 +0000
with message-id <e1dgvbu-000acf...@fasolo.debian.org>
and subject line Bug#871591: fixed in llvm-toolchain-5.0 1:5.0~+rc2-1
has caused the Debian Bug report #871591,
regarding [src:llvm-toolchain-snapshot] FTBFS: debian/rules fails to detect
gcc-7
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)
--
871591: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=871591
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: src:llvm-toolchain-snapshot
Version: 1:5.0~svn305653-1
Severity: serious
Tags: patch sid
User: debian-...@lists.debian.org
Usertags: ftbfs-gcc-7
Dear LLVM packagers,
I've noticed that llvm-toolchain-snapshot goes FTBFS because
`debian/rules' in the packge fails to detect gcc-7 (it tries to use
gcc-7.1). The Jenkins builds seem to be failing due to the same bug.
http://llvm-jenkins.debian.net/view/Debian%20unstable/job/llvm-toolchain-binaries/architecture=amd64,distribution=unstable/898/console
Here I send a patch to fix this by ensuring the existence of
/usr/bin/g++-$(GCC_VERSION) on the build system.
Could you take a look at it please?
diff -Nru llvm-toolchain-snapshot-5.0~svn305653/debian/changelog llvm-toolchain-snapshot-5.0~svn305653/debian/changelog
--- llvm-toolchain-snapshot-5.0~svn305653/debian/changelog 2017-06-09 19:04:56.000000000 +0900
+++ llvm-toolchain-snapshot-5.0~svn305653/debian/changelog 2017-08-09 23:32:40.000000000 +0900
@@ -1,3 +1,10 @@
+llvm-toolchain-snapshot (1:5.0~svn305653-1.1) UNRELEASED; urgency=medium
+
+ * Ensure /usr/bin/g++-$(GCC_VERSION) exists
+
+ -- Katsuhiko Nishimra <ktns...@gmail.com> Wed, 09 Aug 2017 23:32:40 +0900
+
llvm-toolchain-snapshot (1:5.0~svn305653-1) unstable; urgency=medium
[ Gianfranco Costamagna ]
diff -Nru llvm-toolchain-snapshot-5.0~svn305653/debian/rules llvm-toolchain-snapshot-5.0~svn305653/debian/rules
--- llvm-toolchain-snapshot-5.0~svn305653/debian/rules 2017-06-09 19:04:56.000000000 +0900
+++ llvm-toolchain-snapshot-5.0~svn305653/debian/rules 2017-08-09 23:32:40.000000000 +0900
@@ -2,9 +2,11 @@
TARGET_BUILD := build-llvm
DEB_INST := $(CURDIR)/debian/tmp/
-# The 5|6| in the regexp is a crappy workaround. g++ 5.2 in Debian is not providing a g++-5.2 binary (only g++-5)
-# accomodate that by hardcoding the 5 detection
-GCC_VERSION := $(shell dpkg-query -W -f '$${Version}' g++ | sed -rne 's,^([0-9]+:)?(5|6|[0-9]+\.[0-9]+|[0-9]+).*$$,\2,p')
+
+GXX_VERSIONED_PACKAGE := $(shell dpkg-query -W -f '$${Depends}' g++ | grep -o 'g++-[0-9][0-9.]*' | tail -n1 )
+GXX_VERSIONED_EXECUTABLE := $(shell dpkg -L $(GXX_VERSIONED_PACKAGE) | grep '/usr/bin/g++-[0-9][0-9.]*' | xargs ls -d | tail -n1 )
+GCC_VERSION := $(subst /usr/bin/g++-,,$(GXX_VERSIONED_EXECUTABLE))
+
LLVM_VERSION := 5.0
LLVM_VERSION_FULL := $(LLVM_VERSION).0
signature.asc
Description: PGP signature
--- End Message ---
--- Begin Message ---
Source: llvm-toolchain-5.0
Source-Version: 1:5.0~+rc2-1
We believe that the bug you reported is fixed in the latest version of
llvm-toolchain-5.0, which is due to be installed in the Debian FTP archive.
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to 871...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Sylvestre Ledru <sylves...@debian.org> (supplier of updated llvm-toolchain-5.0
package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
Format: 1.8
Date: Sat, 12 Aug 2017 11:38:36 +0200
Source: llvm-toolchain-5.0
Binary: clang-5.0 clang-format-5.0 clang-tidy-5.0 clang-5.0-doc libclang1-5.0
libclang1-5.0-dbg libclang-5.0-dev libclang-common-5.0-dev libfuzzer-5.0-dev
python-clang-5.0 clang-5.0-examples libllvm5.0 libllvm5.0-dbg llvm-5.0
llvm-5.0-runtime llvm-5.0-dev llvm-5.0-tools libllvm-5.0-ocaml-dev llvm-5.0-doc
llvm-5.0-examples lld-5.0 liblld-5.0 liblld-5.0-dbg liblld-5.0-dev lldb-5.0
liblldb-5.0 liblldb-5.0-dbg python-lldb-5.0 liblldb-5.0-dev
Architecture: source amd64 all
Version: 1:5.0~+rc2-1
Distribution: unstable
Urgency: medium
Maintainer: LLVM Packaging Team <pkg-llvm-t...@lists.alioth.debian.org>
Changed-By: Sylvestre Ledru <sylves...@debian.org>
Description:
clang-5.0 - C, C++ and Objective-C compiler (LLVM based)
clang-5.0-doc - C, C++ and Objective-C compiler (LLVM based) - Documentation
clang-5.0-examples - Clang examples
clang-format-5.0 - Tool to format C/C++/Obj-C code
clang-tidy-5.0 - clang-based C++ linter tool
libclang-5.0-dev - clang library - Development package
libclang-common-5.0-dev - clang library - Common development package
libclang1-5.0 - C interface to the clang library
libclang1-5.0-dbg - clang library
libfuzzer-5.0-dev - Library for coverage-guided fuzz testing
liblld-5.0 - LLVM-based linker, library
liblld-5.0-dbg - LLVM-based linker, debugging libraries
liblld-5.0-dev - LLVM-based linker, header files
liblldb-5.0 - Next generation, high-performance debugger, library
liblldb-5.0-dbg - Next generation, high-performance debugger, debugging
libraries
liblldb-5.0-dev - Next generation, high-performance debugger, header files
libllvm-5.0-ocaml-dev - Modular compiler and toolchain technologies, OCaml
bindings
libllvm5.0 - Modular compiler and toolchain technologies, runtime library
libllvm5.0-dbg - Modular compiler and toolchain technologies, debugging
libraries
lld-5.0 - LLVM-based linker
lldb-5.0 - Next generation, high-performance debugger
llvm-5.0 - Modular compiler and toolchain technologies
llvm-5.0-dev - Modular compiler and toolchain technologies, libraries and
header
llvm-5.0-doc - Modular compiler and toolchain technologies, documentation
llvm-5.0-examples - Modular compiler and toolchain technologies, examples
llvm-5.0-runtime - Modular compiler and toolchain technologies, IR interpreter
llvm-5.0-tools - Modular compiler and toolchain technologies, tools
python-clang-5.0 - Clang Python Bindings
python-lldb-5.0 - Next generation, high-performance debugger, python lib
Closes: 871591
Changes:
llvm-toolchain-5.0 (1:5.0~+rc2-1) unstable; urgency=medium
.
* New snapshot release
* Force the usage of gcc 6 until the link issues with gcc 7 are fixed
https://bugs.llvm.org/show_bug.cgi?id=34140
* Remove the temp-unbreak-5.0-build.diff patch to unbreak the build
.
[ Katsuhiko Nishimra ]
* Ensure /usr/bin/g++-$(GCC_VERSION) exists (Closes: #871591)
Checksums-Sha1:
b77d5da1b89b8747136926f229fd22e09be7b8b4 7395 llvm-toolchain-5.0_5.0~+rc2-1.dsc
ffc4a5e9268ea879fccfef7bbcbad321cf8203b4 681450
llvm-toolchain-5.0_5.0~+rc2.orig-clang-tools-extra.tar.bz2
57940797388b92a34683eab253ee5f4d1c226a83 12694363
llvm-toolchain-5.0_5.0~+rc2.orig-clang.tar.bz2
118ab8388497644ff29fc39ebd1da919a28699ba 1987473
llvm-toolchain-5.0_5.0~+rc2.orig-compiler-rt.tar.bz2
d58dc80af0bbdd85e5da55f4c32811ba4fb61ce3 714254
llvm-toolchain-5.0_5.0~+rc2.orig-lld.tar.bz2
fcabbd93a6f4cb59639bdc80ae951a8e3ec377f3 11138278
llvm-toolchain-5.0_5.0~+rc2.orig-lldb.tar.bz2
5d33d3409c7f3d5a11f0a307cc4073dcb0acabcb 3075608
llvm-toolchain-5.0_5.0~+rc2.orig-polly.tar.bz2
b5c7898fe16bea0cb90a76fd6f8fff8166bb4fd6 27826534
llvm-toolchain-5.0_5.0~+rc2.orig.tar.bz2
c709ce87751cb8ab13d9213de1314874d750d92c 64768
llvm-toolchain-5.0_5.0~+rc2-1.debian.tar.xz
abf2281308899834d75ae37d4ccff7aee0ffbe50 344430408
clang-5.0-dbgsym_5.0~+rc2-1_amd64.deb
b3b716e7af2f9c0ebf13ab4c42dc520998e6b064 892286
clang-5.0-doc_5.0~+rc2-1_all.deb
814340accf64034a23b226996d855648feff051c 30736
clang-5.0-examples_5.0~+rc2-1_amd64.deb
0d23c1c66801c8a4aa0d41c38da419a3889020d2 61558022
clang-5.0_5.0~+rc2-1_amd64.deb
dc51b9467dcd5cb3b402a718b132570b29e6a58e 2022124
clang-format-5.0-dbgsym_5.0~+rc2-1_amd64.deb
ab2c566d0e3642e0150a412858f6c6b3ae437a5e 568982
clang-format-5.0_5.0~+rc2-1_amd64.deb
12ecd9d15c22fb26e767d4a48d7f6299b2811cef 62817666
clang-tidy-5.0-dbgsym_5.0~+rc2-1_amd64.deb
1a9fe91ba1a740a59bb5ca3cf6ef529c16d8df37 6537890
clang-tidy-5.0_5.0~+rc2-1_amd64.deb
b16084295f977d7c8e6467d68532c4e778de192d 18296308
libclang-5.0-dev_5.0~+rc2-1_amd64.deb
cbd9fd0edb623f6cd75ebbf2e25f48d84497fd49 1486708
libclang-common-5.0-dev-dbgsym_5.0~+rc2-1_amd64.deb
cefdbad4b5b66411e2fffe538b943cbc77f163f2 1989404
libclang-common-5.0-dev_5.0~+rc2-1_amd64.deb
8d68ad3f8cf6a81cfcc13bbd2ca64d2f0c23081f 66246618
libclang1-5.0-dbg_5.0~+rc2-1_amd64.deb
0862c25676f3eaec08006c2bc790a5d617aafe17 6728610
libclang1-5.0_5.0~+rc2-1_amd64.deb
5e8f402447bbda1d15c57bb78815aba792bc2e76 117776
libfuzzer-5.0-dev_5.0~+rc2-1_amd64.deb
5c4ea11ea49852a062123c6c611e7c5a3ddda29f 23256
liblld-5.0-dbg_5.0~+rc2-1_amd64.deb
c5a6045ff35b70cbe607e12fb3c344e93438635e 49458
liblld-5.0-dev_5.0~+rc2-1_amd64.deb
50f9ec7b9b16c38c326a1203f546061477b91736 1032470
liblld-5.0_5.0~+rc2-1_amd64.deb
3cbbecbef687f29d6d15f779e486b8bac8956f23 46404568
liblldb-5.0-dbg_5.0~+rc2-1_amd64.deb
f5b5b92da4c2c3061bc4e18effeff58e6531db70 4994942
liblldb-5.0-dev_5.0~+rc2-1_amd64.deb
20b68bb763d4a0a0627422336b172b715ce82d6f 8730268
liblldb-5.0_5.0~+rc2-1_amd64.deb
110b853601b58208b564cebec0c92f26de089c62 193662
libllvm-5.0-ocaml-dev_5.0~+rc2-1_amd64.deb
cc8417b3dc2c83c3843b2b74d4552b3b9c8e5334 64319438
libllvm5.0-dbg_5.0~+rc2-1_amd64.deb
e8af2e68d19330a3a5dcfa9f9bd98e5c9bb9c540 13545340
libllvm5.0_5.0~+rc2-1_amd64.deb
27bd59ca6e8a4ebfb89d48748d38a7ed463d9b73 3491554
lld-5.0-dbgsym_5.0~+rc2-1_amd64.deb
8b2deac8d0f6b241eb20a586f6fee0b2d0801a9d 748704 lld-5.0_5.0~+rc2-1_amd64.deb
500b1f6f9e069fa4c99b7579adf4399cf74fe0e9 40103312
lldb-5.0-dbgsym_5.0~+rc2-1_amd64.deb
33307064e1b6d02a231547f6c2380186f4abdf62 1810210 lldb-5.0_5.0~+rc2-1_amd64.deb
fd5a537ebb66161036c1cdfe4c708061ecc4d854 18013522
llvm-5.0-dbgsym_5.0~+rc2-1_amd64.deb
db7b448ea76adac52a58e8bc6befd4d9bb846113 5169884
llvm-5.0-dev-dbgsym_5.0~+rc2-1_amd64.deb
76aa65fd07345a44b031f3b37a069e5652176f40 21469340
llvm-5.0-dev_5.0~+rc2-1_amd64.deb
77aa8e35c1aabdcd41cbd3657fa15e0a8b3e1e0f 1832082
llvm-5.0-doc_5.0~+rc2-1_all.deb
0f20a532638f28d729cdb27d005abd32b5115805 247118
llvm-5.0-examples_5.0~+rc2-1_all.deb
8310d10fe14d59cf20886e905c4d323676f03878 4434694
llvm-5.0-runtime-dbgsym_5.0~+rc2-1_amd64.deb
72487efe7772a4eee0d21f3a52313e4006e6630a 200702
llvm-5.0-runtime_5.0~+rc2-1_amd64.deb
45814b8243325291bbf25fa440e559ba08027afb 843558
llvm-5.0-tools-dbgsym_5.0~+rc2-1_amd64.deb
e515f076d3024c3648abef9f7e86823e8f926230 211550
llvm-5.0-tools_5.0~+rc2-1_amd64.deb
b0c4ff578cc5b78623fcb2e51f3f43027dbaeca2 4378816 llvm-5.0_5.0~+rc2-1_amd64.deb
529672448046468a714248d7a24c50ee0722882d 21119
llvm-toolchain-5.0_5.0~+rc2-1_amd64.buildinfo
1bad3247d4d14fd27bf81929dfce8b3043a0211b 47760
python-clang-5.0_5.0~+rc2-1_amd64.deb
f7d991faecde931a99fea711995e3561b205bdc8 110570
python-lldb-5.0_5.0~+rc2-1_amd64.deb
Checksums-Sha256:
949851f3373c82f6ec97661f7fc21e36619e3496b78c24e54186c99f7eeda9e8 7395
llvm-toolchain-5.0_5.0~+rc2-1.dsc
3d7f976b7ac8603f901e8f072befb43fde3f1bcb1bd75afc531f1d083334dda3 681450
llvm-toolchain-5.0_5.0~+rc2.orig-clang-tools-extra.tar.bz2
55e6aa0e06e2ee1156cb1e72529c4c4bf65f68f0c754559f5c2a5166bf89b8b9 12694363
llvm-toolchain-5.0_5.0~+rc2.orig-clang.tar.bz2
458f7afd281d37529356015c45ca26e8731a910d7e5adcc1309d005372d50376 1987473
llvm-toolchain-5.0_5.0~+rc2.orig-compiler-rt.tar.bz2
9de6459ff5eea5642ecd5bbaf1384bf23ae39662dfbd6ce902b6b5a5a6654478 714254
llvm-toolchain-5.0_5.0~+rc2.orig-lld.tar.bz2
b06ae46f0003225a5108a8d204d9e6b9a3ab97ab2b251869e4bac727bc6e8166 11138278
llvm-toolchain-5.0_5.0~+rc2.orig-lldb.tar.bz2
50072bb66cf42a680beda150e0dcb9950555cacdd9891d04cdb7fecd23b35538 3075608
llvm-toolchain-5.0_5.0~+rc2.orig-polly.tar.bz2
59c3903d6c15ca012dad85dd2677c0d68295c1420dea13b84968f70c6e37f15d 27826534
llvm-toolchain-5.0_5.0~+rc2.orig.tar.bz2
b6670c382a69f02d55e08d8e50493e53d32402fb6e5389295611b4d92c7170cd 64768
llvm-toolchain-5.0_5.0~+rc2-1.debian.tar.xz
a7b7ee53fbdb5cb087c240e3b192984bc9872e90bf837e45abd0495981cac819 344430408
clang-5.0-dbgsym_5.0~+rc2-1_amd64.deb
57545ee0c73809cd665c016b2acffd08a02bfa19375604e95a094bcfebf6fee3 892286
clang-5.0-doc_5.0~+rc2-1_all.deb
b44ed4999a18b4695f67149d8dd44ec39c9c3270257ab8e8dfcd4e8afa4cf0b3 30736
clang-5.0-examples_5.0~+rc2-1_amd64.deb
fc4a64d3225127095350f037661dd016af5dacd977ecd063f9e824882255a9f9 61558022
clang-5.0_5.0~+rc2-1_amd64.deb
17a979d565f54058f1c80fd4455cf31b69db4d03bdc18081bd7487b20ffcaedb 2022124
clang-format-5.0-dbgsym_5.0~+rc2-1_amd64.deb
900384d273a6028e4fbf076c5194b790b5d30a7df70d1256ffb04c4287e7290f 568982
clang-format-5.0_5.0~+rc2-1_amd64.deb
59d02adff07f7f3c9a0bddf3744981f3c47b483068174418df6d0a5072b02c19 62817666
clang-tidy-5.0-dbgsym_5.0~+rc2-1_amd64.deb
215bc057ad398bb82d3edbcb11410d97c59538637eb7aae2b643733df3cbe207 6537890
clang-tidy-5.0_5.0~+rc2-1_amd64.deb
86c58a7e352be25902854be6baacebc2341b227b1ec8dc2adad5fe8598702fcb 18296308
libclang-5.0-dev_5.0~+rc2-1_amd64.deb
e5386d9c206108195c0a53b6c8ed02ed0b14e22de030b097d084a60c980c4cd5 1486708
libclang-common-5.0-dev-dbgsym_5.0~+rc2-1_amd64.deb
4b9a947a978ee5093d5d3490ed41365b33941e6baa857404dc49845fab307d36 1989404
libclang-common-5.0-dev_5.0~+rc2-1_amd64.deb
ec0d01874cf15c71bf850be6952af57e0392659c22f4075acfdaa0a98a07ed05 66246618
libclang1-5.0-dbg_5.0~+rc2-1_amd64.deb
50a0af6deaa82a403a8a9a891a58bd689a3ac1eb35fdfd238d4d7f908c304c43 6728610
libclang1-5.0_5.0~+rc2-1_amd64.deb
6427ff021dfb69accd0f434ec5edc57035f92f2c4f6ff8711f9f0e2a50be0349 117776
libfuzzer-5.0-dev_5.0~+rc2-1_amd64.deb
6ce46273ca5fc42e3b92347d162ceb4550ca24f96313660c918c70e9b78f7c05 23256
liblld-5.0-dbg_5.0~+rc2-1_amd64.deb
c9e8d7e419a50af1a6e7b758e21a4ab3e9ea7aaefb4c87d5869178857d11231c 49458
liblld-5.0-dev_5.0~+rc2-1_amd64.deb
18c0609fe73589bd6f722de4f2f8d4cc2aed6553312c1426f306109050e36bf4 1032470
liblld-5.0_5.0~+rc2-1_amd64.deb
df1ac80cacbfc0959c4b125bf8e75e3a14c5ffcd17cd6d8dafcb4eef82f07393 46404568
liblldb-5.0-dbg_5.0~+rc2-1_amd64.deb
dc2faee961bf66e9353e7e7dd93f83be0f139e3b221857cd46b140fb82b2979c 4994942
liblldb-5.0-dev_5.0~+rc2-1_amd64.deb
0f88de77ad4918381543e9c42c6cf58b5907b4a78c1239e3ed96e5eb5219fca7 8730268
liblldb-5.0_5.0~+rc2-1_amd64.deb
195b5d31d9f23d8c00ec6715d614edac018678ce042414506ad32c8bf8c05aaa 193662
libllvm-5.0-ocaml-dev_5.0~+rc2-1_amd64.deb
1a8eaa981febc343a7c2b3272d78471af657129334a8239dc2b83443781f5668 64319438
libllvm5.0-dbg_5.0~+rc2-1_amd64.deb
8e4244585587d391ac0c5d8ace07a3faf2aded12a18f04a296f4606d5b54c40e 13545340
libllvm5.0_5.0~+rc2-1_amd64.deb
c131948bd3568574a6cd488f9e3f8008b15e09bf7ec099d53dbbae53e5293601 3491554
lld-5.0-dbgsym_5.0~+rc2-1_amd64.deb
4a3b2510bc08462a9025208d4255ee3d744f340ef4ec6454d147ba821b15e08e 748704
lld-5.0_5.0~+rc2-1_amd64.deb
8b1db7306bd2d6491b0381a6ab608f8fbc85073ac2db9ad231d5d6cd7bbcf852 40103312
lldb-5.0-dbgsym_5.0~+rc2-1_amd64.deb
42d19ccac5ac9b77dca4661df3656dc6bcdfbb06007168758cb88ccd1eec056b 1810210
lldb-5.0_5.0~+rc2-1_amd64.deb
99ed386a0d698ccdf39a3c3c324008a4aa40c0a6432555c41516f42bae17f591 18013522
llvm-5.0-dbgsym_5.0~+rc2-1_amd64.deb
415eeab7493a8330da72b6c80e0292e35e7f1f60ed306fb11cc596204b57eabc 5169884
llvm-5.0-dev-dbgsym_5.0~+rc2-1_amd64.deb
6801adb0749a4fe1701621c6a91099cd9fcd98353dbbf2abb2740252022c72b0 21469340
llvm-5.0-dev_5.0~+rc2-1_amd64.deb
06dbec8f5d258f64a461f91c73971335b4c5f3f3efaf78acbd7e50e9f9e24d97 1832082
llvm-5.0-doc_5.0~+rc2-1_all.deb
67cc27b1c00226bcf6233b6257471899d84b28448080b7b30d84c9b579986178 247118
llvm-5.0-examples_5.0~+rc2-1_all.deb
3a2d02392f2f25e9438b7c69e012a9a6c4b816b1f5e1888c036f19ed8f9d04cc 4434694
llvm-5.0-runtime-dbgsym_5.0~+rc2-1_amd64.deb
149ad6df92faa26aca6e684986ab3e190a358fd3ddaba6502915e0552e4fbbc6 200702
llvm-5.0-runtime_5.0~+rc2-1_amd64.deb
606907854ecebc47cdf2a5e67b9545585ce7e388d49acf83188c296755f0ebbc 843558
llvm-5.0-tools-dbgsym_5.0~+rc2-1_amd64.deb
6a3986698d1c64386dd63dd008175258d1ca7c919137385d135b7848174cba69 211550
llvm-5.0-tools_5.0~+rc2-1_amd64.deb
604cf14afc15cc6eeff2904149aeb16f5110ff246afcaa2de3ecb9227bd71c43 4378816
llvm-5.0_5.0~+rc2-1_amd64.deb
9b9cef0e79256441e368f0e3e77e1c164183888986898a8063247aebe463822d 21119
llvm-toolchain-5.0_5.0~+rc2-1_amd64.buildinfo
4aaf3e6015df3637f9b8be3e11d357f6f36defe7a1ce7e8adfb9e252a508f396 47760
python-clang-5.0_5.0~+rc2-1_amd64.deb
867da764f165233c28c44edbdd65fd39bee1bfb671b9e0ffd3873af3938b9b99 110570
python-lldb-5.0_5.0~+rc2-1_amd64.deb
Files:
02c1a71e7562be566a33b4cfbb704031 7395 devel optional
llvm-toolchain-5.0_5.0~+rc2-1.dsc
269158285f2cdae11de462833cd39485 681450 devel optional
llvm-toolchain-5.0_5.0~+rc2.orig-clang-tools-extra.tar.bz2
e3037da7e99ad4fbe0f9db8d3f50dadb 12694363 devel optional
llvm-toolchain-5.0_5.0~+rc2.orig-clang.tar.bz2
4bd3945c43bee887bc140f76519964c2 1987473 devel optional
llvm-toolchain-5.0_5.0~+rc2.orig-compiler-rt.tar.bz2
3c64487d4594f2c358f04633ea0b93c8 714254 devel optional
llvm-toolchain-5.0_5.0~+rc2.orig-lld.tar.bz2
96c5758dbe5f46665d5e4ef51df582d8 11138278 devel optional
llvm-toolchain-5.0_5.0~+rc2.orig-lldb.tar.bz2
de0051129a879819f3c4d3a656d0e1ba 3075608 devel optional
llvm-toolchain-5.0_5.0~+rc2.orig-polly.tar.bz2
5bb8c0a1743ea00deeffd1a4ed60f4e6 27826534 devel optional
llvm-toolchain-5.0_5.0~+rc2.orig.tar.bz2
3791ddd0ef803614599d644c438ddac9 64768 devel optional
llvm-toolchain-5.0_5.0~+rc2-1.debian.tar.xz
47c640a0398de103dd67cc3d62df1d0c 344430408 debug extra
clang-5.0-dbgsym_5.0~+rc2-1_amd64.deb
0907ac1cbfeee28963514d913cd3c151 892286 doc optional
clang-5.0-doc_5.0~+rc2-1_all.deb
76756a7fb471dfd720763144a54cdc2d 30736 doc optional
clang-5.0-examples_5.0~+rc2-1_amd64.deb
1e2aca614a8150581c5d127bf47d7386 61558022 devel optional
clang-5.0_5.0~+rc2-1_amd64.deb
55432fd03c87270e9deeb55d0b6c4c55 2022124 debug extra
clang-format-5.0-dbgsym_5.0~+rc2-1_amd64.deb
891b7ede50e4201a4984880c0a5223ef 568982 devel optional
clang-format-5.0_5.0~+rc2-1_amd64.deb
2cd9dbc608a876b9697092153df88bf4 62817666 debug extra
clang-tidy-5.0-dbgsym_5.0~+rc2-1_amd64.deb
96f976c5560cd7d6e65ffe840adcb5f6 6537890 devel optional
clang-tidy-5.0_5.0~+rc2-1_amd64.deb
478100ce6c3cd5ff53987ae433778ba0 18296308 libdevel optional
libclang-5.0-dev_5.0~+rc2-1_amd64.deb
8c64e4d88d8c77a1da07fe8a596a51e5 1486708 debug extra
libclang-common-5.0-dev-dbgsym_5.0~+rc2-1_amd64.deb
3078ef830958f3ab3092025438ee1344 1989404 libdevel optional
libclang-common-5.0-dev_5.0~+rc2-1_amd64.deb
3cee4cd02db920ebc9809eb2cfd7ecd3 66246618 debug extra
libclang1-5.0-dbg_5.0~+rc2-1_amd64.deb
61a051e26cb943a147edc9db5642ad20 6728610 devel optional
libclang1-5.0_5.0~+rc2-1_amd64.deb
2f39a7dc145f61c1aeccad47ab38c214 117776 libdevel optional
libfuzzer-5.0-dev_5.0~+rc2-1_amd64.deb
9f5cd2b9214e7c0cdcb68ddc56bf0c3c 23256 debug extra
liblld-5.0-dbg_5.0~+rc2-1_amd64.deb
0138369960cffae5cb87b5a7fbcbd9e4 49458 libdevel optional
liblld-5.0-dev_5.0~+rc2-1_amd64.deb
94a0d8e167af445545c8d2acc73795b2 1032470 libs optional
liblld-5.0_5.0~+rc2-1_amd64.deb
5f328ecdd81c9650005d2b3c6def5929 46404568 debug extra
liblldb-5.0-dbg_5.0~+rc2-1_amd64.deb
1756228011104e590e3692723fcf04ff 4994942 libdevel optional
liblldb-5.0-dev_5.0~+rc2-1_amd64.deb
07670c978460219fd5289ddcd61c83cb 8730268 libs optional
liblldb-5.0_5.0~+rc2-1_amd64.deb
4d160440a2bbc239863351d1d5b474c6 193662 ocaml optional
libllvm-5.0-ocaml-dev_5.0~+rc2-1_amd64.deb
ec89807e313a32272d05e6348875d494 64319438 debug extra
libllvm5.0-dbg_5.0~+rc2-1_amd64.deb
3943d6a1a4a574faeaa83a05088392a4 13545340 libs optional
libllvm5.0_5.0~+rc2-1_amd64.deb
0d72726fdb74549377fd4d30e324de0c 3491554 debug extra
lld-5.0-dbgsym_5.0~+rc2-1_amd64.deb
5aed09f1b8e2a4e8819638fe2b89d5e0 748704 devel optional
lld-5.0_5.0~+rc2-1_amd64.deb
6c78e7b2cab9212662212b16a3f67eb7 40103312 debug extra
lldb-5.0-dbgsym_5.0~+rc2-1_amd64.deb
74e00e317175ea9ad95575e50ae95fd4 1810210 devel optional
lldb-5.0_5.0~+rc2-1_amd64.deb
d7be658ed2894b293fd61d54e0c2d3e1 18013522 debug extra
llvm-5.0-dbgsym_5.0~+rc2-1_amd64.deb
06e0dee91e89926906ce624063b8a96d 5169884 debug extra
llvm-5.0-dev-dbgsym_5.0~+rc2-1_amd64.deb
2cb7d943fa8226af7b9f3fa1a83be97c 21469340 devel optional
llvm-5.0-dev_5.0~+rc2-1_amd64.deb
211475caa60479b50076611f5e3f3bae 1832082 doc optional
llvm-5.0-doc_5.0~+rc2-1_all.deb
44dc6408b059af211ef7a1fb194935b8 247118 doc optional
llvm-5.0-examples_5.0~+rc2-1_all.deb
e55a6321f6f67c2950bbd29621c06aa2 4434694 debug extra
llvm-5.0-runtime-dbgsym_5.0~+rc2-1_amd64.deb
ee396cfd9624a345bd62ccfa856f0fae 200702 devel optional
llvm-5.0-runtime_5.0~+rc2-1_amd64.deb
c6aea4db211774b7e0207f554c935828 843558 debug extra
llvm-5.0-tools-dbgsym_5.0~+rc2-1_amd64.deb
e2a73a00382ba9694c4f82ca74f7e1c2 211550 devel optional
llvm-5.0-tools_5.0~+rc2-1_amd64.deb
06e62250c8d8f477e1e30e788afe2f40 4378816 devel optional
llvm-5.0_5.0~+rc2-1_amd64.deb
59d6bf48add00bf619c8840c8b8e3d8a 21119 devel optional
llvm-toolchain-5.0_5.0~+rc2-1_amd64.buildinfo
6307b80fe7f5db8edde7685547b80084 47760 python optional
python-clang-5.0_5.0~+rc2-1_amd64.deb
d22b6173f4083390e599d38797ecfbba 110570 python optional
python-lldb-5.0_5.0~+rc2-1_amd64.deb
-----BEGIN PGP SIGNATURE-----
iQIzBAEBCAAdFiEEtg21mU05vsTRqVzPfmUo2nUvG+EFAlmO6XsACgkQfmUo2nUv
G+FTJBAAnCQ/SAgQ+W6pVhXD41JXSpQNRCIU395bYEEDqpTu4RLtLv/BU5U1Eamc
7uuhGJnbJxeRQ2AVTZyJWt32rvplSAypuiJ7TtXM5LHCUsBJZq0kovw1EVtE4qkd
WgiD7jeGKT/JJmYpjqg0Vby6uvO/SKhXYFE/buhegAISYkpKdrIVGooMllJlFgUb
bCejYMej45hqLyBTYu82TNlO4MgWzM8u0g/xI+t0/f5vh0uuook9Mj7hBnBKtNcH
t1cCj24fi3CSRiiH5Oynkn8IRws+7Oxz0GUjoYxqre8uYC93ViJBrlVOU8jsx3xr
bH83VZU3k0JNlaAuJujCOVRdJ0Bxu5D1YUaQeivZ6TCpL+ruql2UvwVBOpDNW/YL
VPuCIh9yIktqtlgkT9jrb8hzr+ykfvXAysPl90KqfcyM2ePDREBiwHZebRfiZV7d
xJPJr5ZxHTeVEmnXg8/0AktqkN973Vnpr5KIQStj2ZStHEvk1j7cDIgdfsQgfunt
njG2KpvswUO1gO3tdJtckfc3NzDU6xQsBiA1hmLu1RH7VgkTvpHUnXr0SNClsBdd
3NmauUVmLULvCJj7lvknjxh2HiaDqkl5AgzxmCsdkGBdFCYz3ImtPgDA42F4JYDr
kqnp9xmqu+wkqlWeOVJQ13FKXNjwueAUJVH3qTL5d5zakys3uwU=
=D+AK
-----END PGP SIGNATURE-----
--- End Message ---