Codebase list bazel-bootstrap / 906985a
Add include for <stdexcept> in ijar Should resolve failed autopkgtests on non-amd64 systems Olek Wojnar 1 year, 7 months ago
3 changed file(s) with 16 addition(s) and 6 deletion(s). Raw diff Collapse all Expand all
0 bazel-bootstrap (4.1.0+ds-1) UNRELEASED; urgency=medium
0 bazel-bootstrap (4.1.0+ds-1) unstable; urgency=medium
11
2 [ Jesse Chan ]
23 * New upstream release
34 - Update patches for new version
45 * Patch to use debian "reactive_streams" and "rxjava3"
67 * Patch to remove not useful dependency on "bazel_skylib"
78 - Only used to support darwin-arm64 host platform
89 - It is not useful for us to have this dependency
10 [ Olek Wojnar ]
11 * Modify add_include_for_limits.patch to also include <stdexcept> in ijar
12 - Should resolve failed autopkgtests on non-amd64 systems
13 * Note that bazel_skylib *will* be needed for the full bazel package
14 - It is being removed at this time to prevent a build failure. The bazel
15 package build-depends on the bazel-skylib package, avoiding the problem.
916
10 -- Jesse Chan <jc@linux.com> Sun, 30 May 2021 03:46:47 +0000
17 -- Olek Wojnar <olek@debian.org> Tue, 27 Sep 2022 19:50:13 -0400
1118
1219 bazel-bootstrap (4.0.0+ds-1) unstable; urgency=medium
1320
00 Description: Add include for <limits> to allow correct build of ijar binaries
1 Also add include for <stdexcept> to allow proper builds on non-amd64 systems:
2 https://github.com/bazelbuild/bazel/pull/13575
13 Author: Olek Wojnar <olek@debian.org>
24 Forwarded: not-needed
3 Last-Update: 2022-09-09
5 Last-Update: 2022-09-27
46
57 --- a/third_party/ijar/common.h
68 +++ b/third_party/ijar/common.h
7 @@ -21,6 +21,7 @@
9 @@ -21,6 +21,8 @@
810 #include <stddef.h>
911 #include <stdint.h>
1012 #include <string.h>
1113 +#include <limits>
14 +#include <stdexcept>
1215
1316 #ifdef _WIN32
1417 #define PATH_MAX 4096
88
99 --- a/CHANGELOG.md
1010 +++ b/CHANGELOG.md
11 @@ -2653,7 +2653,19 @@
11 @@ -3317,7 +3317,19 @@
1212 is
1313 now a symlink to the latest log.
1414
3131
3232 --- a/site/docs/build-javascript.md
3333 +++ b/site/docs/build-javascript.md
34 @@ -155,7 +155,12 @@
34 @@ -140,7 +140,12 @@
3535
3636 ```json
3737 "scripts": {