Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package include-what-you-use for
openSUSE:Factory checked in at 2021-12-13 20:44:28
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/include-what-you-use (Old)
and /work/SRC/openSUSE:Factory/.include-what-you-use.new.2520 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "include-what-you-use"
Mon Dec 13 20:44:28 2021 rev:13 rq:940114 version:0.17
Changes:
--------
---
/work/SRC/openSUSE:Factory/include-what-you-use/include-what-you-use.changes
2021-06-02 22:12:35.260101549 +0200
+++
/work/SRC/openSUSE:Factory/.include-what-you-use.new.2520/include-what-you-use.changes
2021-12-13 20:50:31.972640160 +0100
@@ -1,0 +2,13 @@
+Sun Dec 12 20:01:41 UTC 2021 - Aaron Puchert <[email protected]>
+
+- Update to version 0.17, update LLVM/Clang to version 13.
+ * Improve support for various C++ features (builtins, CTAD,
+ specializations, type aliases).
+ * Fix crash on invalid code.
+ * Remove hard dependency on x86 LLVM target.
+ * Improve mappings for GNU libc.
+ * More concise output for clang output format in iwyu_tool.
+- Rebase iwyu_include_picker.patch.
+- Drop obsolete remove-x86-specific-code.patch, fixed upstream.
+
+-------------------------------------------------------------------
Old:
----
include-what-you-use-0.16.src.tar.gz
remove-x86-specific-code.patch
New:
----
include-what-you-use-0.17.src.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ include-what-you-use.spec ++++++
--- /var/tmp/diff_new_pack.rHm944/_old 2021-12-13 20:50:32.416640444 +0100
+++ /var/tmp/diff_new_pack.rHm944/_new 2021-12-13 20:50:32.420640446 +0100
@@ -18,7 +18,7 @@
Name: include-what-you-use
-Version: 0.16
+Version: 0.17
Release: 0
Summary: A tool to analyze #includes in C and C++ source files
License: NCSA
@@ -27,12 +27,11 @@
Source0:
https://include-what-you-use.org/downloads/%{name}-%{version}.src.tar.gz
Patch1: fix-shebang.patch
Patch2: iwyu_include_picker.patch
-Patch3: remove-x86-specific-code.patch
BuildRequires: c++_compiler
-BuildRequires: clang12-devel
+BuildRequires: clang13-devel
BuildRequires: cmake
BuildRequires: libstdc++-devel
-BuildRequires: llvm12-devel
+BuildRequires: llvm13-devel
BuildRequires: python
BuildRoot: %{_tmppath}/%{name}-%{version}-build
@@ -63,7 +62,6 @@
%setup -q -n %{name}
%patch1 -p1
%patch2 -p1
-%patch3 -p1
sed -i s#lib/#lib\${LLVM_LIBDIR_SUFFIX}/#g CMakeLists.txt
%build
++++++ include-what-you-use-0.16.src.tar.gz ->
include-what-you-use-0.17.src.tar.gz ++++++
++++ 1966 lines of diff (skipped)
++++++ iwyu_include_picker.patch ++++++
--- /var/tmp/diff_new_pack.rHm944/_old 2021-12-13 20:50:32.640640587 +0100
+++ /var/tmp/diff_new_pack.rHm944/_new 2021-12-13 20:50:32.644640590 +0100
@@ -42,8 +42,8 @@
+ { "std::wfstream", kPrivate, "<fstream>", kPublic },
};
- // Private -> public include mappings for GNU libc
const IncludeMapEntry libc_include_map[] = {
+ // Private -> public include mappings for GNU libc
- // ( cd /usr/include && grep '^ *# *include' {sys/,net/,}* | perl -nle
'm/^([^:]+).*<([^>]+)>/ && print qq@ { "<$2>", kPrivate, "<$1>", kPublic
},@' | grep bits/ | sort )
+ // ( cd /usr/include && grep '^ *# *include' {sys/,net/,}* | perl -nle
'm/^([^:]+).*<([^>]+)>/ && print qq@ { "<$2>", kPrivate, "<$1>", kPublic },@'
| grep bits/ | sort )
// When I saw more than one mapping for these, I typically picked