Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package bazel3.7 for openSUSE:Factory checked in at 2021-05-08 22:07:16 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/bazel3.7 (Old) and /work/SRC/openSUSE:Factory/.bazel3.7.new.2988 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "bazel3.7" Sat May 8 22:07:16 2021 rev:2 rq:891016 version:3.7.2 Changes: -------- --- /work/SRC/openSUSE:Factory/bazel3.7/bazel3.7.changes 2021-03-30 21:05:44.817070374 +0200 +++ /work/SRC/openSUSE:Factory/.bazel3.7.new.2988/bazel3.7.changes 2021-05-08 22:07:18.189772320 +0200 @@ -1,0 +2,6 @@ +Thu May 6 12:34:48 UTC 2021 - Richard Biener <rguent...@suse.com> + +- Add bazel-3.4.1-gcc11.patch to add #include that are no longer + pulled implicitely by GCC 11 standard library. [boo#1181864] + +------------------------------------------------------------------- New: ---- bazel-3.4.1-gcc11.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ bazel3.7.spec ++++++ --- /var/tmp/diff_new_pack.wVeEzN/_old 2021-05-08 22:07:19.613766153 +0200 +++ /var/tmp/diff_new_pack.wVeEzN/_new 2021-05-08 22:07:19.617766136 +0200 @@ -1,7 +1,7 @@ # # spec file for package bazel3.7 # -# Copyright (c) 2020 SUSE LLC +# Copyright (c) 2021 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -41,6 +41,7 @@ Source0: https://github.com/bazelbuild/bazel/releases/download/%{version}/%{shortname}-%{version}-dist.zip Source1: https://github.com/bazelbuild/bazel/releases/download/%{version}/%{shortname}-%{version}-dist.zip.sig Patch0: 0001-python-Always-use-python3.patch +Patch1: bazel-3.4.1-gcc11.patch BuildRequires: gcc-c++ BuildRequires: java-1_8_0-openjdk-devel BuildRequires: pkgconfig @@ -63,6 +64,7 @@ %prep %setup -q -c %patch0 -p1 +%patch1 # Remove executable permissions chmod 0644 AUTHORS CHANGELOG.md CONTRIBUTORS LICENSE # Use Python 3 ++++++ bazel-3.4.1-gcc11.patch ++++++ --- third_party/ijar/zlib_client.h.orig 2021-05-06 14:14:59.479849964 +0200 +++ third_party/ijar/zlib_client.h 2021-05-06 14:20:15.235724889 +0200 @@ -15,6 +15,7 @@ #ifndef THIRD_PARTY_IJAR_ZLIB_CLIENT_H_ #define THIRD_PARTY_IJAR_ZLIB_CLIENT_H_ +#include <limits> #include <limits.h> #include "third_party/ijar/common.h" --- ./third_party/ijar/mapped_file_unix.cc.orig 2021-05-06 14:24:39.106939003 +0200 +++ ./third_party/ijar/mapped_file_unix.cc 2021-05-06 14:24:46.599029982 +0200 @@ -19,6 +19,7 @@ #include <sys/mman.h> #include <algorithm> +#include <limits> #include "third_party/ijar/mapped_file.h"