iwyu 8.0-3 source package in Ubuntu

Changelog

iwyu (8.0-3) unstable; urgency=medium

  [ Debian Janitor ]
  * Trim trailing whitespace.
  * Use secure copyright file specification URI.
  * Use secure URI in Homepage field.
  * Bump debhelper from old 10 to 12.
  * Set debhelper-compat version in Build-Depends.
  * Set upstream metadata fields: Repository, Repository-Browse.
  * Rely on pre-initialized dpkg-architecture variables.

  [ Sylvestre Ledru ]
  * Move to llvm/clang 9 (instead of 8)
  * Move dep to python 3 (Closes: #945688)

 -- Sylvestre Ledru <email address hidden>  Wed, 01 Jan 2020 13:51:01 +0100

Upload details

Uploaded by:
LLVM Packaging Team
Uploaded to:
Sid
Original maintainer:
LLVM Packaging Team
Architectures:
any
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Downloads

File Size SHA-256 Checksum
iwyu_8.0-3.dsc 1.9 KiB 10f7efdd090be90590dfd105eba922dff2d0e2a5d8453fafb6292fe081533a79
iwyu_8.0.orig.tar.gz 533.0 KiB 2df080a3e657ebf40386c94a327d1aeeb9ff8d4569bfb860df398629b7f0fdb6
iwyu_8.0-3.debian.tar.xz 6.7 KiB b924db3a4a6d509ceaf64ed3e23ee383ba430419664c93b3fc7cab23d52fef85

Available diffs

No changes file available.

Binary packages built by this source

iwyu: Analyze #includes in C and C++ source files

 "Include what you use" means this: for every symbol (type, function variable,
 or macro) that you use in foo.cc, either foo.cc or foo.h should #include a .h
 file that exports the declaration of that symbol. The include-what-you-use
 tool is a program that can be built with the clang libraries in order to
 analyze #includes of source files to find include-what-you-use violations,
 and suggest fixes for them.
 .
 The main goal of include-what-you-use is to remove superfluous #includes.
 It does this both by figuring out what #includes are not actually needed for
 this file (for both .cc and .h files), and replacing #includes with
 forward-declares when possible.

iwyu-dbgsym: debug symbols for iwyu