Skip to content

Commit 4c004a1

Browse files
robot-pigletblinkov
authored andcommitted
Intermediate changes
commit_hash:f53fe2f4dc9bd145aafbd80b16163b15a3aaad11
1 parent 1afe069 commit 4c004a1

File tree

3 files changed

+27
-5
lines changed

3 files changed

+27
-5
lines changed

contrib/libs/double-conversion/.yandex_meta/override.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
pkgs: attrs: with pkgs; with attrs; rec {
2-
version = "3.3.0";
2+
version = "3.3.1";
33

44
src = fetchFromGitHub {
55
owner = "google";
66
repo = "double-conversion";
77
rev = "v${version}";
8-
hash = "sha256-DkMoHHoHwV4p40IINEqEPzKsCa0LHrJAFw2Yftw7zHo=";
8+
hash = "sha256-M80H+azCzQYa4/gBLWv5GNNhEuHsH7LbJ/ajwmACnrM=";
99
};
1010

1111
patches = [];

contrib/libs/double-conversion/README.md

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
1+
Double Conversion
2+
========
13
https://github.com/google/double-conversion
24

5+
[![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/google/double-conversion/badge)](https://securityscorecards.dev/viewer/?uri=github.com/google/double-conversion)
6+
37
This project (double-conversion) provides binary-decimal and decimal-binary
48
routines for IEEE doubles.
59

@@ -15,7 +19,7 @@ There is extensive documentation in `double-conversion/string-to-double.h` and
1519
Building
1620
========
1721

18-
This library can be built with [scons][0] or [cmake][1].
22+
This library can be built with [scons][0], [cmake][1] or [bazel][2].
1923
The checked-in Makefile simply forwards to scons, and provides a
2024
shortcut to run all tests:
2125

@@ -51,5 +55,23 @@ Use `-DBUILD_TESTING=ON` to build the test executable.
5155
make
5256
test/cctest/cctest
5357

58+
Bazel
59+
---
60+
61+
The simplest way to adopt this library is through the [Bazel Central Registry](https://registry.bazel.build/modules/double-conversion).
62+
63+
To build the library from the latest repository, run:
64+
65+
```
66+
bazel build //:double-conversion
67+
```
68+
69+
To run the unit test, run:
70+
71+
```
72+
bazel test //:cctest
73+
```
74+
5475
[0]: http://www.scons.org/
5576
[1]: https://cmake.org/
77+
[2]: https://bazel.build/

contrib/libs/double-conversion/ya.make

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ LICENSE(BSD-3-Clause)
66

77
LICENSE_TEXTS(.yandex_meta/licenses.list.txt)
88

9-
VERSION(3.3.0)
9+
VERSION(3.3.1)
1010

11-
ORIGINAL_SOURCE(https://github.com/google/double-conversion/archive/v3.3.0.tar.gz)
11+
ORIGINAL_SOURCE(https://github.com/google/double-conversion/archive/v3.3.1.tar.gz)
1212

1313
ADDINCL(
1414
GLOBAL contrib/libs/double-conversion

0 commit comments

Comments
 (0)