Your message dated Sat, 21 Oct 2017 18:35:33 +0000
with message-id <e1e5ycp-00095m...@fasolo.debian.org>
and subject line Bug#877567: fixed in llvm-toolchain-3.8 1:3.8.1-25
has caused the Debian Bug report #877567,
regarding llvm-toolchain-3.9 FTBFS on mipsel
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.)


-- 
877567: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=877567
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: llvm-toolchain-3.9
Version: 1:3.9.1-17
Severity: serious

https://buildd.debian.org/status/logs.php?pkg=llvm-toolchain-3.9&arch=mipsel

...
/usr/bin/ld: BFD (GNU Binutils for Debian) 2.29.1 internal error, aborting at 
../../bfd/merge.c:910 in _bfd_merged_section_offset

/usr/bin/ld: Please report this bug.

collect2: error: ld returned 1 exit status
tools/llvm-shlib/CMakeFiles/LLVM.dir/build.make:274: recipe for target 
'lib/libLLVM-3.9.so.1' failed
make[4]: *** [lib/libLLVM-3.9.so.1] Error 1


In #874674 it was discovered that this is just a bad
error handling for "out of memory" in ld.


llvm-toolchain-3.9 (1:3.9.1-16) unstable; urgency=medium
...
  [ Matthias Klose ]
...
  * On amd64, s390x, arm64 and ppc64el, build with -g1 instead of -g.
...
 -- Sylvestre Ledru <sylves...@debian.org>  Fri, 08 Sep 2017 11:57:07 +0200

This is also what debian/rules does, and it is pretty weird:

ifneq (,$(filter $(DEB_HOST_ARCH),amd64 arm64 ppc64el s390x))
  opt_flags += -g1
else
  opt_flags += -g
endif

-g is equal to -g2, so this change reduces the amount of debug
information generated on some 64bit architectures - these are
architectures where -g is supposed to not cause any problems.


mipsel being the only failing release architecture makes sense
considering that -g is used on 32bit, and mipsel is missing in
the list of gsplit dwarf architectures.


There are three alternative approaches, either would make sense
and should fix the mipsel build (untested):

1. go back to -g everywhere and remove ENABLE_SPLIT_DWARF_ARCHS,
   that's then actually required on all 32bit architectures:

ifeq ($(DEB_HOST_ARCH_BITS),32)
  CXXFLAGS_EXTRA += -gsplit-dwarf
endif

2. remove all gsplit dwarf usage and reverse the -g1 handling
   so that it makes sense:

ifeq ($(DEB_HOST_ARCH_BITS),32)
  opt_flags += -g1
else
  opt_flags += -g
endif


3. remove all gsplit dwarf usage and use -g1 on all architectures:

opt_flags += -g1

--- End Message ---
--- Begin Message ---
Source: llvm-toolchain-3.8
Source-Version: 1:3.8.1-25

We believe that the bug you reported is fixed in the latest version of
llvm-toolchain-3.8, 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 877...@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.8 
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, 21 Oct 2017 13:43:31 +0200
Source: llvm-toolchain-3.8
Binary: clang-3.8 clang-format-3.8 clang-tidy-3.8 clang-3.8-doc libclang1-3.8 
libclang1-3.8-dbg libclang-3.8-dev libclang-common-3.8-dev libfuzzer-3.8-dev 
python-clang-3.8 clang-3.8-examples libllvm3.8 libllvm3.8-dbg llvm-3.8 
llvm-3.8-runtime llvm-3.8-dev llvm-3.8-tools llvm-3.8-doc llvm-3.8-examples 
lldb-3.8 liblldb-3.8 liblldb-3.8-dbg python-lldb-3.8 liblldb-3.8-dev 
lldb-3.8-dev
Architecture: source amd64 all
Version: 1:3.8.1-25
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.8  - C, C++ and Objective-C compiler (LLVM based)
 clang-3.8-doc - C, C++ and Objective-C compiler (LLVM based) - Documentation
 clang-3.8-examples - Clang examples
 clang-format-3.8 - Tool to format C/C++/Obj-C code
 clang-tidy-3.8 - clang-based C++ linter tool
 libclang-3.8-dev - clang library - Development package
 libclang-common-3.8-dev - clang library - Common development package
 libclang1-3.8 - C interface to the clang library
 libclang1-3.8-dbg - clang library
 libfuzzer-3.8-dev - Library for coverage-guided fuzz testing
 liblldb-3.8 - Next generation, high-performance debugger, library
 liblldb-3.8-dbg - Next generation, high-performance debugger, debugging 
libraries
 liblldb-3.8-dev - Next generation, high-performance debugger - Header files
 libllvm3.8 - Modular compiler and toolchain technologies, runtime library
 libllvm3.8-dbg - Modular compiler and toolchain technologies, debugging 
libraries
 lldb-3.8   - Next generation, high-performance debugger
 lldb-3.8-dev - transitional dummy package to liblldb-3.8-dev
 llvm-3.8   - Modular compiler and toolchain technologies
 llvm-3.8-dev - Modular compiler and toolchain technologies, libraries and 
header
 llvm-3.8-doc - Modular compiler and toolchain technologies, documentation
 llvm-3.8-examples - Modular compiler and toolchain technologies, examples
 llvm-3.8-runtime - Modular compiler and toolchain technologies, IR interpreter
 llvm-3.8-tools - Modular compiler and toolchain technologies, tools
 python-clang-3.8 - Clang Python Bindings
 python-lldb-3.8 - Next generation, high-performance debugger, python lib
Closes: 853523 868779 877567
Changes:
 llvm-toolchain-3.8 (1:3.8.1-25) unstable; urgency=medium
 .
   * Fix the detection of gcc (Closes: #853523)
   * Force the deactivation of ocaml until the transition is done
   * Standards-Version: 4.1.0
   * Backport the gsplit dwarf fix (Closes: #853523)
   * Try to fix the mipsel FTBFS (Closes: #877567)
     I am trying the first option from the bug:
     - gsplit-dward on 32 bits archs
     - -g everywhere
     Many thanks to Adrian Bunk for that
   * clang was producing unusable binaries on armv5tel (Closes: #868779)
     Thanks to Adrian Bunk for the patch
   * Backport the patch for bind (ftfbs-gcc.diff)
 .
   [ Gianfranco Costamagna, John Paul Adrian Glaubitz ]
   * Add powerpcspe to latomic archs
 .
   [ Gianfranco Costamagna ]
   * use -g1 where Debug symbols have a 1GB size
Checksums-Sha1:
 e6374433a2bb1a28768c6ba2ba92fa6def3bd0fb 6060 llvm-toolchain-3.8_3.8.1-25.dsc
 01036b45b4bb65ae1400a2bd82e7d04e6d660e56 67684 
llvm-toolchain-3.8_3.8.1-25.debian.tar.xz
 e2b951f752aced298727d73dc0ed6f548b526277 133588942 
clang-3.8-dbgsym_3.8.1-25_amd64.deb
 c8eb2058e68305cd3266b904af7f1c7977f26a99 583188 clang-3.8-doc_3.8.1-25_all.deb
 7c03321393e40435002f267b2cfa7e21584db649 28056 
clang-3.8-examples_3.8.1-25_amd64.deb
 f74a56ce1a7621e6bee21cdaee27006dcdaa8e0c 23166244 clang-3.8_3.8.1-25_amd64.deb
 837d4f8533cd2d9adc31cabda6bd7785d45b27aa 1650396 
clang-format-3.8-dbgsym_3.8.1-25_amd64.deb
 47247dd0758c7c8f9a9b510f132507aa0e83f53b 487350 
clang-format-3.8_3.8.1-25_amd64.deb
 c2e98f5679c0240787f32cbca8fc71ab58cf8bb0 42202104 
clang-tidy-3.8-dbgsym_3.8.1-25_amd64.deb
 a5e66575eec4c1a633d4ef08ef9d50601076c738 5242864 
clang-tidy-3.8_3.8.1-25_amd64.deb
 d6763496a53f1b11b71b9d9e7fe98c794cd977ca 12769940 
libclang-3.8-dev_3.8.1-25_amd64.deb
 1ad6d63a7b15aa0780a97d012fef3aee56805f9f 2389678 
libclang-common-3.8-dev-dbgsym_3.8.1-25_amd64.deb
 0594ead98a4f4a6245c815d894b245693852ca98 2212748 
libclang-common-3.8-dev_3.8.1-25_amd64.deb
 69576d1f2cb40b8efa2201ed171f9244d4b4540f 26988414 
libclang1-3.8-dbg_3.8.1-25_amd64.deb
 fe8591240eb86d117c45d89d0c658e597d630dea 4196538 
libclang1-3.8_3.8.1-25_amd64.deb
 7899ae8bd13ba61cf4ae0be76df0a657925057ec 72466 
libfuzzer-3.8-dev_3.8.1-25_amd64.deb
 d4786a3a692d039d1faa2d158973cc475c8b0954 75783454 
liblldb-3.8-dbg_3.8.1-25_amd64.deb
 5d85a27a0a8fc467bcd78d07185e65240bb24546 4116674 
liblldb-3.8-dev_3.8.1-25_amd64.deb
 b24b40183b549ebce075dc2e18cd3af9cd262c08 15492124 
liblldb-3.8_3.8.1-25_amd64.deb
 5f7a5cec30fd5a27b08135cfbb47d2a5bd29d3ba 48363660 
libllvm3.8-dbg_3.8.1-25_amd64.deb
 abfa9b5eb6e5c5cdc28fbcda99653652b6fd7bf9 10448510 libllvm3.8_3.8.1-25_amd64.deb
 f3d0f1bdff9bf98ec6b4a2974de930261d251b7c 35522520 
lldb-3.8-dbgsym_3.8.1-25_amd64.deb
 66b4895516f403e5244f562d5733b868fe03d1e0 20722 lldb-3.8-dev_3.8.1-25_all.deb
 d727878542c6105af1e9a03edd73ceecedb02ae1 6253632 lldb-3.8_3.8.1-25_amd64.deb
 ee757257301d291075553978d691a08074a18046 5187254 
llvm-3.8-dbgsym_3.8.1-25_amd64.deb
 277955d2b8a66d3dac06df6a2295ef46d415a91d 4109082 
llvm-3.8-dev-dbgsym_3.8.1-25_amd64.deb
 d0cc6a26078affc8f884b82bfa4117c28b1e24d6 16206112 
llvm-3.8-dev_3.8.1-25_amd64.deb
 71dad7d17b738d19558208834549164748e754ed 1522874 llvm-3.8-doc_3.8.1-25_all.deb
 edf66654cbb19fee3992e7af57858ac1405da797 231970 
llvm-3.8-examples_3.8.1-25_all.deb
 e6c6ad41ac009d70278c20d99935a4cb09854d6f 296770 
llvm-3.8-runtime-dbgsym_3.8.1-25_amd64.deb
 c9f778f95f583ca13f6000bdd051f9792d318be2 89894 
llvm-3.8-runtime_3.8.1-25_amd64.deb
 f6c7d639af24e5c86624a7e0d41b2c49bfbdfd6c 538782 
llvm-3.8-tools-dbgsym_3.8.1-25_amd64.deb
 e8fdbc618480db681b68126f5159ae1a36454dd4 179022 
llvm-3.8-tools_3.8.1-25_amd64.deb
 6dfec5a8af6f7e808523350136c70580a03f5017 1566264 llvm-3.8_3.8.1-25_amd64.deb
 28bb8e0071e4c533bade8e1becc4152e87eea230 19080 
llvm-toolchain-3.8_3.8.1-25_amd64.buildinfo
 8865e8309403e00f75768d09f30f38d7dccaa764 43440 
python-clang-3.8_3.8.1-25_amd64.deb
 a59924337cc5f95fb9f924932b7ffebca07d6504 104510 
python-lldb-3.8_3.8.1-25_amd64.deb
Checksums-Sha256:
 c3b20f6ff7d41c5d79e9cf21170350c241c770f90a088a7063448ccf13b693c9 6060 
llvm-toolchain-3.8_3.8.1-25.dsc
 70e3508d0b7b8abcb2cb6ee1a04dee28dc48fbe77a9e09d2da0d60a505199e4e 67684 
llvm-toolchain-3.8_3.8.1-25.debian.tar.xz
 ed4d91bf0a2396e5903e773b46ca9c99e75d9ec4981b29c115aa5d668bfdefe0 133588942 
clang-3.8-dbgsym_3.8.1-25_amd64.deb
 73e327d980f3194e61dfe0e4c3e275b6db70df39559590815542b03d6a228b5b 583188 
clang-3.8-doc_3.8.1-25_all.deb
 59c6586b7039dafe3e7642267013a0e3b6e95be45014b5d9e65f51ac18591a81 28056 
clang-3.8-examples_3.8.1-25_amd64.deb
 c03c130d3c7625328f2ad1eb400582a2e569513e393a3f946c641c7c0d8623b5 23166244 
clang-3.8_3.8.1-25_amd64.deb
 f58ca222f77481ad08fa223dbb75acb07cf6e4005f73f88163b971c121d95494 1650396 
clang-format-3.8-dbgsym_3.8.1-25_amd64.deb
 76171d4edcc43a922952417ccc6e8d8922f1b3054cb153f1a09a08d260f49460 487350 
clang-format-3.8_3.8.1-25_amd64.deb
 f477f1f815c82f27e657362b021b4cebabbfd135db42eac53aae4529acb55822 42202104 
clang-tidy-3.8-dbgsym_3.8.1-25_amd64.deb
 d2da0cbe1ffc44ab395e7b4180607e65da4fb2430f199b507990a003ff59507a 5242864 
clang-tidy-3.8_3.8.1-25_amd64.deb
 06c4aebcb7360a5a9617be9e6801566bca9e5ca51d2ce21f745fdc3035db23e2 12769940 
libclang-3.8-dev_3.8.1-25_amd64.deb
 4a43da1db329188894e3734d01c9c368acc835630e16dcf01258f122e462e808 2389678 
libclang-common-3.8-dev-dbgsym_3.8.1-25_amd64.deb
 fb317b68d441256a5cec519939c6b584eccbdccf103e8efb2f490388644bdd04 2212748 
libclang-common-3.8-dev_3.8.1-25_amd64.deb
 31f9570eae8c96675f4975e8684f26f1d8130cffc592a12a653df36ba747b773 26988414 
libclang1-3.8-dbg_3.8.1-25_amd64.deb
 e439ccea785be873ca3b0c062fb36514ff6e817124486cdd674c785bdf58f8b4 4196538 
libclang1-3.8_3.8.1-25_amd64.deb
 8f16d3fac8c9059504d30903f519a0f7610f3871a60e8f83a32e3d618ac7c685 72466 
libfuzzer-3.8-dev_3.8.1-25_amd64.deb
 a4e4926a1e0b6fdd7d9f33f77c21e1b9246e09f21c0cae48da7fe4d4ad29ae81 75783454 
liblldb-3.8-dbg_3.8.1-25_amd64.deb
 1b5199364ed8ee756413e82e0b41e9162b7a8e584b1c67116a766a2558b28e42 4116674 
liblldb-3.8-dev_3.8.1-25_amd64.deb
 9b1064f4eae425f87b9cfbf59993b10d665aebf7f57ffcdba90a5e0cac688dce 15492124 
liblldb-3.8_3.8.1-25_amd64.deb
 7b45e54bfc41397135f86f5ee847507e90b8699752f2b49d27915c43a66dfa61 48363660 
libllvm3.8-dbg_3.8.1-25_amd64.deb
 0317021ca8fad5415f4381c6273a16dcdba825637cd44ab3c943da36de897936 10448510 
libllvm3.8_3.8.1-25_amd64.deb
 9410b40f332504566c5da9d4341b14eee0f853c5eae36f379ed3af11f9126861 35522520 
lldb-3.8-dbgsym_3.8.1-25_amd64.deb
 136d8e6a674654770659022a036d0295b93b7a0a12e940eeada97dbb64c9f1ff 20722 
lldb-3.8-dev_3.8.1-25_all.deb
 6b4a6b822bea9cc99cd484ac2f7b08d49259e3b59df853c6ad7c58bf8501cc5a 6253632 
lldb-3.8_3.8.1-25_amd64.deb
 0cea7c9528cb153fdde3b13f224c6017c31ff2171c4c9cd37f5aff128ebf5abb 5187254 
llvm-3.8-dbgsym_3.8.1-25_amd64.deb
 7c8232308f83b67c6635ecb755fb2198cfe973e051036f097e66e09772b0ea39 4109082 
llvm-3.8-dev-dbgsym_3.8.1-25_amd64.deb
 c11a08c93e4109f92b899149eedad9ecccd6d80cbbece132b833f457e62ac2c3 16206112 
llvm-3.8-dev_3.8.1-25_amd64.deb
 e7977f7a54c92d19414d1470bbe75f8bb2e53f5102a6777a938943a81cc7e45c 1522874 
llvm-3.8-doc_3.8.1-25_all.deb
 d2d25883593a7618418613c30f72a8e41835ea8a539c6fd7b06fa3a8ce6f5d8e 231970 
llvm-3.8-examples_3.8.1-25_all.deb
 80ad640c8f95e3492d7c2fc8e9ac75b512a669ffe2a1ac67f86764931893901b 296770 
llvm-3.8-runtime-dbgsym_3.8.1-25_amd64.deb
 567587d2bb25de214507d92698cd584c9d7624dc8a7b402c3e16ddf5a89099d6 89894 
llvm-3.8-runtime_3.8.1-25_amd64.deb
 30afbcf8ee67a08f99bc2a32c3c1d1b3d9ca48a1bc205ee3ba4b64795deec292 538782 
llvm-3.8-tools-dbgsym_3.8.1-25_amd64.deb
 42ede9b496c7e03797ced1f081350fada034296f265d9f38ae9e762c35769cc9 179022 
llvm-3.8-tools_3.8.1-25_amd64.deb
 ca03b78c68908cd67bd798d7d359a753730cece894d07923a478a9d17e0107a3 1566264 
llvm-3.8_3.8.1-25_amd64.deb
 22d86c11955cc10e597d3d6c05232c6d9f3a9fee57566ec4bcf9f8d03dac39f5 19080 
llvm-toolchain-3.8_3.8.1-25_amd64.buildinfo
 da5abf871c944d0b587246f6f064de3608b190d028832ccc436e5baccb326103 43440 
python-clang-3.8_3.8.1-25_amd64.deb
 79413c584782b6c1cfc58c696c2bac4b718395e63639a49467aa12fa681b8433 104510 
python-lldb-3.8_3.8.1-25_amd64.deb
Files:
 f6b5a67d3975f15bdfd321c6c83be2ca 6060 devel optional 
llvm-toolchain-3.8_3.8.1-25.dsc
 3cb4f7ed3b48b9d6fb0ef80e05adc745 67684 devel optional 
llvm-toolchain-3.8_3.8.1-25.debian.tar.xz
 b4df03ad8c8dd59c065ac8d806b31d61 133588942 debug optional 
clang-3.8-dbgsym_3.8.1-25_amd64.deb
 4887066771d42ca6184645348cc34498 583188 doc optional 
clang-3.8-doc_3.8.1-25_all.deb
 2ecf0395277373de552a755b526c1a03 28056 doc optional 
clang-3.8-examples_3.8.1-25_amd64.deb
 702f0cad0538e717cefc78c6bd7d9c1b 23166244 devel optional 
clang-3.8_3.8.1-25_amd64.deb
 b2c5931291b8897ac36cd734468d4aab 1650396 debug optional 
clang-format-3.8-dbgsym_3.8.1-25_amd64.deb
 6a99966224df3593011ea1e33f3382c5 487350 devel optional 
clang-format-3.8_3.8.1-25_amd64.deb
 e3ae115371db60a474e55e27db004c9a 42202104 debug optional 
clang-tidy-3.8-dbgsym_3.8.1-25_amd64.deb
 8c1789cba4ce27310daf6914b9301eaf 5242864 devel optional 
clang-tidy-3.8_3.8.1-25_amd64.deb
 669b536f0a36c19a7ad10094aa1a8912 12769940 libdevel optional 
libclang-3.8-dev_3.8.1-25_amd64.deb
 f05cfca4c624932a8ede596488e97077 2389678 debug optional 
libclang-common-3.8-dev-dbgsym_3.8.1-25_amd64.deb
 acdbb2bc6110233d35ff3b6f876505e8 2212748 libdevel optional 
libclang-common-3.8-dev_3.8.1-25_amd64.deb
 9499eeba53fe0c55767c9e09d9dfd308 26988414 debug extra 
libclang1-3.8-dbg_3.8.1-25_amd64.deb
 c5f1b6d8b987b249bbc05999d3b5950e 4196538 devel optional 
libclang1-3.8_3.8.1-25_amd64.deb
 0f74c0679aacb789ff441f514ebb3728 72466 libdevel optional 
libfuzzer-3.8-dev_3.8.1-25_amd64.deb
 c0e351306a37a87d7ab61ff1fad188d2 75783454 debug extra 
liblldb-3.8-dbg_3.8.1-25_amd64.deb
 b238797d66357153f3bad425ff6090ae 4116674 libdevel optional 
liblldb-3.8-dev_3.8.1-25_amd64.deb
 f3044cf2ab7e51869873079563e95567 15492124 libs optional 
liblldb-3.8_3.8.1-25_amd64.deb
 eae8a07e8238df323748a54bc906605d 48363660 debug extra 
libllvm3.8-dbg_3.8.1-25_amd64.deb
 549bb425302d8358c26ba839dbb9a5b5 10448510 libs optional 
libllvm3.8_3.8.1-25_amd64.deb
 3986e5d6b7996d2a2ef4540f1bb04995 35522520 debug optional 
lldb-3.8-dbgsym_3.8.1-25_amd64.deb
 c27c4e0608553ea898bf7f1fd1a901fb 20722 oldlibs optional 
lldb-3.8-dev_3.8.1-25_all.deb
 242aae15d9995fe118b5f7d3ef56de61 6253632 devel optional 
lldb-3.8_3.8.1-25_amd64.deb
 012124e5613afcb0d785b652da4a176b 5187254 debug optional 
llvm-3.8-dbgsym_3.8.1-25_amd64.deb
 703bf409d5dd41d158fed5201b315c68 4109082 debug optional 
llvm-3.8-dev-dbgsym_3.8.1-25_amd64.deb
 1b421cad0f492fe8bac307bfbe02c545 16206112 devel optional 
llvm-3.8-dev_3.8.1-25_amd64.deb
 f9c8ee69df768f7be744a065b1f7f2eb 1522874 doc optional 
llvm-3.8-doc_3.8.1-25_all.deb
 3b96a887cb1d298fbc3960cded7097db 231970 doc optional 
llvm-3.8-examples_3.8.1-25_all.deb
 244817013996f850fa1f37f615dc7a7c 296770 debug optional 
llvm-3.8-runtime-dbgsym_3.8.1-25_amd64.deb
 1509ea7f9ce38c1162a80395deac8e89 89894 devel optional 
llvm-3.8-runtime_3.8.1-25_amd64.deb
 4e36968a5bcf1039eeabedf909f49dba 538782 debug optional 
llvm-3.8-tools-dbgsym_3.8.1-25_amd64.deb
 50258ab92320f722736e4704d114d6e7 179022 devel optional 
llvm-3.8-tools_3.8.1-25_amd64.deb
 3684ffb4eb9c982740bb9a7248b13e7d 1566264 devel optional 
llvm-3.8_3.8.1-25_amd64.deb
 198f929313c4c3a9fe9c84faa9e7e5ed 19080 devel optional 
llvm-toolchain-3.8_3.8.1-25_amd64.buildinfo
 7dd7aefbf9f69ad1032a642e4cfe66f6 43440 python optional 
python-clang-3.8_3.8.1-25_amd64.deb
 d65a29ddc13bd187b998b194b594ba64 104510 python optional 
python-lldb-3.8_3.8.1-25_amd64.deb

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

iQIzBAEBCAAdFiEEtg21mU05vsTRqVzPfmUo2nUvG+EFAlnrjfQACgkQfmUo2nUv
G+FIlw/9GmZbOjSVoj/0hzSme7lart+iCtGkP4fQB1dhQjNJsoUgfEqbqsec1+co
I/9XCmAniaPdeGQ+CGGzn2v/fXhUh1/HkEvAacRXSlVb/DcZCZ1RHag/LvPig6At
yyBGfnfy1jwb0q4hhF9Z8Mre6o/q6iQ5/qRRS6DLqcYvimd/2FLiIGdRb+zPX9Pm
T9DwZrKC7E5YF7IjqgByVM1ceyQbWy38TV8xVtwggidnlfJHPdCrM2eMQnp0KlxJ
csVEq6Y3XF1xdOPeYtFa2uFmT18mEs9z+fbx24Setb+sYuZBbleRO8aEqGQlDkWk
2b5CiRNwaFAWgqIFi3KotpHVB/OHtoSsE6veii1/yhJDVHX/UE4J58agVUV3gqVU
4I0ippJEF3jbx3MXPl8snfHR9plrqNIsZhRnvoFJtbML4ckUEG8PJ0BowjClIeGA
Fgf+oHyHnmjxObaTTMFXxjsjo4aUiePviPJDnVMuUnD0dGrXUK98HVvsVFC4Al8H
3S6ubE9gKBCePsUZwFgS8vDxIXBqeAxCCeK+6ATdusQ8bbyz18wkE/PKjuDELug8
+FZU71/Jiwe8nHyOgLT8m0MNWWvwlPvfJltTCpYSaLl0qMEKrA0B4M6CV593lbHk
Q06zanzfMOymqzYNSJ8uBy3TYzoMipv5bGlb5tDRHsPw6589WVA=
=p0Yp
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to