Your message dated Sun, 27 Aug 2017 02:56:58 +0000
with message-id <e1dlnkw-0006jg...@fasolo.debian.org>
and subject line Bug#871591: fixed in llvm-toolchain-3.9 1:3.9.1-11
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
 

Attachment: signature.asc
Description: PGP signature


--- End Message ---
--- Begin Message ---
Source: llvm-toolchain-3.9
Source-Version: 1:3.9.1-11

We believe that the bug you reported is fixed in the latest version of
llvm-toolchain-3.9, 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-3.9 
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: Sun, 18 Jun 2017 19:12:15 +0200
Source: llvm-toolchain-3.9
Binary: clang-3.9 clang-format-3.9 clang-tidy-3.9 clang-3.9-doc libclang1-3.9 
libclang1-3.9-dbg libclang-3.9-dev libclang-common-3.9-dev libfuzzer-3.9-dev 
python-clang-3.9 clang-3.9-examples libllvm3.9 libllvm3.9-dbg llvm-3.9 
llvm-3.9-runtime llvm-3.9-dev llvm-3.9-tools libllvm-3.9-ocaml-dev llvm-3.9-doc 
llvm-3.9-examples lldb-3.9 liblldb-3.9 liblldb-3.9-dbg python-lldb-3.9 
liblldb-3.9-dev
Architecture: source amd64 all
Version: 1:3.9.1-11
Distribution: unstable
Urgency: medium
Maintainer: LLVM Packaging Team <pkg-llvm-t...@lists.alioth.debian.org>
Changed-By: Sylvestre Ledru <sylves...@debian.org>
Description:
 clang-3.9  - C, C++ and Objective-C compiler (LLVM based)
 clang-3.9-doc - C, C++ and Objective-C compiler (LLVM based) - Documentation
 clang-3.9-examples - Clang examples
 clang-format-3.9 - Tool to format C/C++/Obj-C code
 clang-tidy-3.9 - clang-based C++ linter tool
 libclang-3.9-dev - clang library - Development package
 libclang-common-3.9-dev - clang library - Common development package
 libclang1-3.9 - C interface to the clang library
 libclang1-3.9-dbg - clang library
 libfuzzer-3.9-dev - Library for coverage-guided fuzz testing
 liblldb-3.9 - Next generation, high-performance debugger, library
 liblldb-3.9-dbg - Next generation, high-performance debugger, debugging 
libraries
 liblldb-3.9-dev - Next generation, high-performance debugger, header files
 libllvm-3.9-ocaml-dev - Modular compiler and toolchain technologies, OCaml 
bindings
 libllvm3.9 - Modular compiler and toolchain technologies, runtime library
 libllvm3.9-dbg - Modular compiler and toolchain technologies, debugging 
libraries
 lldb-3.9   - Next generation, high-performance debugger
 llvm-3.9   - Modular compiler and toolchain technologies
 llvm-3.9-dev - Modular compiler and toolchain technologies, libraries and 
header
 llvm-3.9-doc - Modular compiler and toolchain technologies, documentation
 llvm-3.9-examples - Modular compiler and toolchain technologies, examples
 llvm-3.9-runtime - Modular compiler and toolchain technologies, IR interpreter
 llvm-3.9-tools - Modular compiler and toolchain technologies, tools
 python-clang-3.9 - Clang Python Bindings
 python-lldb-3.9 - Next generation, high-performance debugger, python lib
Closes: 853524 871591
Changes:
 llvm-toolchain-3.9 (1:3.9.1-11) unstable; urgency=medium
 .
   [ Sylvestre Ledru ]
   * Remove the --no-discard-stderr option from help2man calls
   * Also add a missing include in ftfbs-gcc.diff to fix a ftbfs
     with gcc 7
   * clang was producing unusable binaries on armv5tel (Closes #873304)
     Thanks to Adrian Bunk for the patch
   * Disable -gsplit-dwarf when using gcc 7 for causing a linking issue
     See https://bugs.llvm.org/show_bug.cgi?id=34140 (Closes: #853524)
 .
   [ Gianfranco Costamagna, John Paul Adrian Glaubitz ]
   * Add powerpcspe to latomic archs
 .
   [ Katsuhiko Nishimra ]
   * Ensure /usr/bin/g++-$(GCC_VERSION) exists (Closes: #871591)
Checksums-Sha1:
 c626df8e4a7f1567d17150539611861fe9918928 6588 llvm-toolchain-3.9_3.9.1-11.dsc
 d70598e4a7c6c3f554971ccf4329003f2c2e2722 77808 
llvm-toolchain-3.9_3.9.1-11.debian.tar.xz
 6eaa98ff1fe7263c760cca7a24c6c192e6d7bf87 1322546486 
clang-3.9-dbgsym_3.9.1-11_amd64.deb
 fb1f5564e781ea22084f70c5a3d6d136975aa3af 685956 clang-3.9-doc_3.9.1-11_all.deb
 b6a685cf4aaa24d0bc3c097b3f2379c80482cfab 29864 
clang-3.9-examples_3.9.1-11_amd64.deb
 5f5cb2c2e660583dcf05aac253b5ad40895683dd 37263052 clang-3.9_3.9.1-11_amd64.deb
 b931001ce22c367ab07bebf60c30a8eaae5cfa73 11072184 
clang-format-3.9-dbgsym_3.9.1-11_amd64.deb
 90dc4b8d86200a9c60d3704f11c674c91a18deee 522254 
clang-format-3.9_3.9.1-11_amd64.deb
 f72272c9738f896181c2a913f5ef1726b942eb1a 358875874 
clang-tidy-3.9-dbgsym_3.9.1-11_amd64.deb
 373532794940ac6831cdad2bb3414b9eced690bf 5644302 
clang-tidy-3.9_3.9.1-11_amd64.deb
 a2296294011ff50dd731c17da882152c30b086f9 46119950 
libclang-3.9-dev_3.9.1-11_amd64.deb
 b957e803557b8a430db7180a017341d6364a2b59 10779258 
libclang-common-3.9-dev-dbgsym_3.9.1-11_amd64.deb
 709e729eb26e0acd9416affa0f4089753017b669 2586966 
libclang-common-3.9-dev_3.9.1-11_amd64.deb
 c40b19da112fdbacbfb7295f0a95dd89817c679a 387056012 
libclang1-3.9-dbg_3.9.1-11_amd64.deb
 768d910461f158e1bf9e896e6a36c765e38eadba 5895696 
libclang1-3.9_3.9.1-11_amd64.deb
 0ad6cfd177ff87206e0cdae94873775bb24e70df 85922 
libfuzzer-3.9-dev_3.9.1-11_amd64.deb
 cfc0f6db020784bd16d235d42a91ede8326f1c46 556033250 
liblldb-3.9-dbg_3.9.1-11_amd64.deb
 8a352c875370adf843418118d762ff26a3410b35 4573582 
liblldb-3.9-dev_3.9.1-11_amd64.deb
 ec4c7baaa3f5aac576fa92302f00378c80b00735 16517156 
liblldb-3.9_3.9.1-11_amd64.deb
 1e266d0b7986829dadf17aceca02656cda0b4477 173708 
libllvm-3.9-ocaml-dev_3.9.1-11_amd64.deb
 93ca76622069ed81c5a6ef48fa83fc5713472477 340538250 
libllvm3.9-dbg_3.9.1-11_amd64.deb
 147e553e638117842b48e549483be26b4db86bdb 11405760 libllvm3.9_3.9.1-11_amd64.deb
 93c27020f39254a338e19e13b8e7f34f53cb4559 254389122 
lldb-3.9-dbgsym_3.9.1-11_amd64.deb
 ba510fd96fe8eb079a239f904d414be340a84a64 1472120 lldb-3.9_3.9.1-11_amd64.deb
 0c48a6397b4006a98bce2643f597de77b8ce58c9 62542684 
llvm-3.9-dbgsym_3.9.1-11_amd64.deb
 2bdf04aa19d1e4211a2dd7ecd4a4a8560976743d 16034386 
llvm-3.9-dev-dbgsym_3.9.1-11_amd64.deb
 1739e5dc8b07d757df3268b4d0fe8d8c63259d6e 21413864 
llvm-3.9-dev_3.9.1-11_amd64.deb
 d1df74a4f982679602cac4793379eda065ba0336 1655816 llvm-3.9-doc_3.9.1-11_all.deb
 df0976e99cd1501b340c8ce4c4ca7c92f7023091 246660 
llvm-3.9-examples_3.9.1-11_all.deb
 37cb90c33bb44fffda9856e9e1950dec54899ec6 20236726 
llvm-3.9-runtime-dbgsym_3.9.1-11_amd64.deb
 d6079f286835eec1636a65ae38af69127f5c9146 173298 
llvm-3.9-runtime_3.9.1-11_amd64.deb
 ed7d1c16a889ffb8e04d5747a97533461b6120cf 2516324 
llvm-3.9-tools-dbgsym_3.9.1-11_amd64.deb
 c967b29110b810feebff2e8418197f72cc1f039a 184688 
llvm-3.9-tools_3.9.1-11_amd64.deb
 4b2e20b2b9f87d247dc0fcb7d627af14e4263895 2773892 llvm-3.9_3.9.1-11_amd64.deb
 124509c156e60d64bc1c9f16c583b7b7cd8224b3 19410 
llvm-toolchain-3.9_3.9.1-11_amd64.buildinfo
 11a0440723bdd6a4895d08792a9c8683275ac146 45204 
python-clang-3.9_3.9.1-11_amd64.deb
 381651bfdee532d8cc7dfcc99263ac9a6d96586e 107454 
python-lldb-3.9_3.9.1-11_amd64.deb
Checksums-Sha256:
 2b10411c8fab78a61e3aed188e8b48426b01e07c268b4fe59cc9c7c010805cd3 6588 
llvm-toolchain-3.9_3.9.1-11.dsc
 62c63fc62e4826f72ac0a3f5b11f2e73444df23601bed1732b89844e4a4ef52b 77808 
llvm-toolchain-3.9_3.9.1-11.debian.tar.xz
 0c3e6eca4f48867d642562153533223401c6fe1ca3787588d4672c14ca0c6536 1322546486 
clang-3.9-dbgsym_3.9.1-11_amd64.deb
 eb717862334a750109a1133df3349ee0eee14252d1ce5eb72a1f1e60170890fa 685956 
clang-3.9-doc_3.9.1-11_all.deb
 5ea74d0b509468c8f96db8c2293009154d2c768d1fc6f185d9761198dd97a6f0 29864 
clang-3.9-examples_3.9.1-11_amd64.deb
 f34bcd8fd0063d55966ef000051d938e63c7c960cbc7249a894258ac42b403fe 37263052 
clang-3.9_3.9.1-11_amd64.deb
 35bbf8e44842ea6091c2515bffc8012cd4eef4c4eb254d4f40454e82c150661f 11072184 
clang-format-3.9-dbgsym_3.9.1-11_amd64.deb
 876fe0ff78040dbf1fce59e80ca4e34e28743f9e9d6d51efdf6f018300241df1 522254 
clang-format-3.9_3.9.1-11_amd64.deb
 d5c5a298b86a023e1b8274c701bc3bce7df91f6d995050d99e0599f91bbc1506 358875874 
clang-tidy-3.9-dbgsym_3.9.1-11_amd64.deb
 ac59748db8be311f69f953b8615ce6351dc0ad7d98120e294b33b004922c8d25 5644302 
clang-tidy-3.9_3.9.1-11_amd64.deb
 0e16a50b854f6151397c7668989a157df56804ef12ece5e914300ccd3ebd4f4c 46119950 
libclang-3.9-dev_3.9.1-11_amd64.deb
 3df55781d5269589fd97193370aac95a90b8989d4d98c389320e61c5e00561ef 10779258 
libclang-common-3.9-dev-dbgsym_3.9.1-11_amd64.deb
 a0ef957f2764d1c2ddc12647e99a9ab4908a38cab41e412b5cc9efb9946c1433 2586966 
libclang-common-3.9-dev_3.9.1-11_amd64.deb
 4c0404432f0631dfc2b866240d32c0dca9f83692bc7665f5f5e8282dd6ee7ae7 387056012 
libclang1-3.9-dbg_3.9.1-11_amd64.deb
 f27a0050ae4890ca163737c33199ec55fe03863a962accf72ef4b4ccce21c6bb 5895696 
libclang1-3.9_3.9.1-11_amd64.deb
 494232221d2f954cd156ff97a5f838ed64c4684421d2797a80783a88f76fc58c 85922 
libfuzzer-3.9-dev_3.9.1-11_amd64.deb
 3f0a276b5b0d0a0e06ff17c804769126b001323b7a80594b848eecd3e6d9543a 556033250 
liblldb-3.9-dbg_3.9.1-11_amd64.deb
 5149b74843b21e13cd5ad5ec5741ffff03d8abc5ebadd87747e335d2d123a718 4573582 
liblldb-3.9-dev_3.9.1-11_amd64.deb
 ca85855046daf87eeb3dddb47ec57a8a1e46348a69c400efb25cda297117e99d 16517156 
liblldb-3.9_3.9.1-11_amd64.deb
 60ca4dd6186a607874fef9604cf7b332aa7809da318f2ea17d6667161c9d4a19 173708 
libllvm-3.9-ocaml-dev_3.9.1-11_amd64.deb
 b4734831184527771c82308b066dfe21cc53377695143df4d664ab4f6488088b 340538250 
libllvm3.9-dbg_3.9.1-11_amd64.deb
 cb3b5db1e3ed6dd35168175ad53def7b50e1d30258a5571d648c2221f6e2c51a 11405760 
libllvm3.9_3.9.1-11_amd64.deb
 d1a1d1c9f2d00ae5ffc1bedc80a795d5e83af3f8d207c25d4eae332284d520d4 254389122 
lldb-3.9-dbgsym_3.9.1-11_amd64.deb
 6da1942bb09f32bf484692de4580c175def570fefecf07448430d6d3f5211275 1472120 
lldb-3.9_3.9.1-11_amd64.deb
 a21b9ce67ba11482bd913ed999291514e54408fd652ff22b16cd35e26c149d4e 62542684 
llvm-3.9-dbgsym_3.9.1-11_amd64.deb
 77800d73e25d02dc626c136b809d5443e89849298c725c855f76bfcc6cc2fc00 16034386 
llvm-3.9-dev-dbgsym_3.9.1-11_amd64.deb
 1bc127eded69340e2305102f0d6d6e900ffd42a984c25ecfef062038d789cd9e 21413864 
llvm-3.9-dev_3.9.1-11_amd64.deb
 d1cc02516b1fef287f992fdcf3b490426a928d75ad2c70654fa8e21004395cfb 1655816 
llvm-3.9-doc_3.9.1-11_all.deb
 6478ca81c652dc48a96fdfa7433cb4cb553d534e68d64564160ef37232c8b4ba 246660 
llvm-3.9-examples_3.9.1-11_all.deb
 e840b868fa2d283f6a4e009b420cc7d1973a70263d52caa8beb2c2e925d5abd8 20236726 
llvm-3.9-runtime-dbgsym_3.9.1-11_amd64.deb
 eaebb1a3c76db686655f7415c8b4831f4d19cfd5c07047fdadf772e7000efb44 173298 
llvm-3.9-runtime_3.9.1-11_amd64.deb
 ca930281519a05eee006ca8595a9f09c01b3faabd0da5eb58446ff39b87585ec 2516324 
llvm-3.9-tools-dbgsym_3.9.1-11_amd64.deb
 dc88785714875accd9002ea149c0ba7826d3740bad88d9b1b883ce69e0fb512e 184688 
llvm-3.9-tools_3.9.1-11_amd64.deb
 35ca54ee527dd4fa9548008288254249ea9c09c937989c5215d50b6ab7a01822 2773892 
llvm-3.9_3.9.1-11_amd64.deb
 d8c302ab9670e83775629d23d78131a5c216415996d6c43cbca857b6485b04d7 19410 
llvm-toolchain-3.9_3.9.1-11_amd64.buildinfo
 f42a075b05abd031732d075e85f4345cca102633d3176ff0bd2816b6562430d6 45204 
python-clang-3.9_3.9.1-11_amd64.deb
 710a7689d9db0b49c8a43c663876f9b313ed80136bbf135f4c11d5fcea6d7e03 107454 
python-lldb-3.9_3.9.1-11_amd64.deb
Files:
 f1218baafbae45a613058def01638103 6588 devel optional 
llvm-toolchain-3.9_3.9.1-11.dsc
 8d48e993e6611179c8318d475aebfc69 77808 devel optional 
llvm-toolchain-3.9_3.9.1-11.debian.tar.xz
 6330838327c021bfb1d1c65e97ab070b 1322546486 debug extra 
clang-3.9-dbgsym_3.9.1-11_amd64.deb
 c627a227ab1d23b92ac62f16820a986c 685956 doc optional 
clang-3.9-doc_3.9.1-11_all.deb
 528925d6be1536f3054e4a66a1fa68cd 29864 doc optional 
clang-3.9-examples_3.9.1-11_amd64.deb
 bec099b21a8782fda3c1425ec6cda957 37263052 devel optional 
clang-3.9_3.9.1-11_amd64.deb
 eb9902d231c8952f364edc6e87864001 11072184 debug extra 
clang-format-3.9-dbgsym_3.9.1-11_amd64.deb
 2b8d1c86f1f9985189b1e0fb3859ce21 522254 devel optional 
clang-format-3.9_3.9.1-11_amd64.deb
 1ddd533c9dc1aa1f56ae960db8019c35 358875874 debug extra 
clang-tidy-3.9-dbgsym_3.9.1-11_amd64.deb
 3aedb5d12cd81dcdd529c44298957bf7 5644302 devel optional 
clang-tidy-3.9_3.9.1-11_amd64.deb
 beb4bcc0837fdc66d33a33de374a2a8a 46119950 libdevel optional 
libclang-3.9-dev_3.9.1-11_amd64.deb
 3208bd73f8e1e9366fa75342bb554563 10779258 debug extra 
libclang-common-3.9-dev-dbgsym_3.9.1-11_amd64.deb
 768a82b37c49112585e4e97e7501f50b 2586966 libdevel optional 
libclang-common-3.9-dev_3.9.1-11_amd64.deb
 719defc10164dc8810c898f0e8fdf5b6 387056012 debug extra 
libclang1-3.9-dbg_3.9.1-11_amd64.deb
 5c7e1bac38bda1c98eaf33f0f0c9fbfd 5895696 devel optional 
libclang1-3.9_3.9.1-11_amd64.deb
 9ca03d2e6a74b3281fc4171038160a91 85922 libdevel optional 
libfuzzer-3.9-dev_3.9.1-11_amd64.deb
 78ab532ddb1232e491fe3a148a69f5e8 556033250 debug extra 
liblldb-3.9-dbg_3.9.1-11_amd64.deb
 8735080e402c03b3ed09bd9ff6a60037 4573582 libdevel optional 
liblldb-3.9-dev_3.9.1-11_amd64.deb
 e602ae9ae5126ea009e17cd82fed7ba4 16517156 libs optional 
liblldb-3.9_3.9.1-11_amd64.deb
 a1157ad2c4167e4d2ce53dab57baa4ba 173708 ocaml optional 
libllvm-3.9-ocaml-dev_3.9.1-11_amd64.deb
 93bdb85fd7d7fa72e59cd2ef57820152 340538250 debug extra 
libllvm3.9-dbg_3.9.1-11_amd64.deb
 2e3a44d36d653bb948d3b687b3a18748 11405760 libs optional 
libllvm3.9_3.9.1-11_amd64.deb
 2440cbbf5aef1ee97c3808878be6730d 254389122 debug extra 
lldb-3.9-dbgsym_3.9.1-11_amd64.deb
 6c811ced65ab8e31acefa359c3caee6a 1472120 devel optional 
lldb-3.9_3.9.1-11_amd64.deb
 7044d67a87d1ce3c9a19770af14b9f96 62542684 debug extra 
llvm-3.9-dbgsym_3.9.1-11_amd64.deb
 9d6b7de8c459a7ae30ab1c09eaa69d06 16034386 debug extra 
llvm-3.9-dev-dbgsym_3.9.1-11_amd64.deb
 214de7580ca43ae56ed5c5bbaa6c10f9 21413864 devel optional 
llvm-3.9-dev_3.9.1-11_amd64.deb
 ff56d0ab7c763bfbf4ff298e08cf84be 1655816 doc optional 
llvm-3.9-doc_3.9.1-11_all.deb
 824ef116c7060e9a6e94a70878b68b6f 246660 doc optional 
llvm-3.9-examples_3.9.1-11_all.deb
 a5b613af1fc9f9f9b221fad827157fdf 20236726 debug extra 
llvm-3.9-runtime-dbgsym_3.9.1-11_amd64.deb
 36e68914ca7df18d927513431f6887eb 173298 devel optional 
llvm-3.9-runtime_3.9.1-11_amd64.deb
 acf36aa3b39516de8add446a740914ee 2516324 debug extra 
llvm-3.9-tools-dbgsym_3.9.1-11_amd64.deb
 1e3b37a8dba499e3964110ef557f002e 184688 devel optional 
llvm-3.9-tools_3.9.1-11_amd64.deb
 0fb0a6ccbfc063a7997c9363f90826fe 2773892 devel optional 
llvm-3.9_3.9.1-11_amd64.deb
 6cce780ea3062ef4b73e2d10b6dbabee 19410 devel optional 
llvm-toolchain-3.9_3.9.1-11_amd64.buildinfo
 72860ca8b5b0a7b97155277e969b0633 45204 python optional 
python-clang-3.9_3.9.1-11_amd64.deb
 55e5d71d46bc34c019f1206d4eb397ab 107454 python optional 
python-lldb-3.9_3.9.1-11_amd64.deb

-----BEGIN PGP SIGNATURE-----

iQIzBAEBCAAdFiEEtg21mU05vsTRqVzPfmUo2nUvG+EFAlmh8RMACgkQfmUo2nUv
G+G4Ag//cbQh+GGEeVPrmLqpYSlEtoVtnh9NrjURXCCi0/O2somKM5IKVY1/WdZ2
nGcQINnp9dhiJqrGj4nZwfrqu+raaHS5QciELG3Er4p1gPx8cNhYQIbKUAG1a3o1
GnUmi9khjbQlSrtjpEyZxsIE3k1KhJUTDxKkvh34h6f1TLgXqerm2bHF9OTrQWrt
xd/d+JBotAYPEa1whGsUp2BjxdvFyqbn6nbhBORpz8sjtkcOnCIBFkGCJE0LnXwe
s3UdOx7k+L5Dbch5eW2WIZdnDJUWhdo/8cxNsl8IleWo2xgKKQo5h6pELLqFoSGr
ODQ4ZA3N+q96440hmInDJJcsZY9F/g16Aies6BznWGfZXolP50+NLx8hXSBC7RG4
pjIMsVbN2Fwz29+SQ/6LjF/iY6732ubmrSX1HEBOdbeRiF1ceYesJxU4E2ssQfCF
jhn1HIsOjZoY2iW8zfHKtl8wn6sYJOqwg0im8NQWOcf2IUcSGh7ohydz5zcIUgv9
Dsr/qdWa0ZMfrM6YFfZdDdL6IF9AR5RILojU0U/0xhPCW2bQ4OwPnoftkcp79Uzr
98RftYlur6YapKhWiLZQs373/V2EeZx/UQRGCZotBIXYMZu5zSp/tC308mQ/qZ21
zTiyN3v4nOqnuV+7qATIyTN0r4cWIKIgydsW1dOSAQEAFOs8gKw=
=PeQA
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to