File tree Expand file tree Collapse file tree 3 files changed +27
-5
lines changed
contrib/libs/double-conversion Expand file tree Collapse file tree 3 files changed +27
-5
lines changed Original file line number Diff line number Diff line change 1
1
pkgs : attrs : with pkgs ; with attrs ; rec {
2
- version = "3.3.0 " ;
2
+ version = "3.3.1 " ;
3
3
4
4
src = fetchFromGitHub {
5
5
owner = "google" ;
6
6
repo = "double-conversion" ;
7
7
rev = "v${ version } " ;
8
- hash = "sha256-DkMoHHoHwV4p40IINEqEPzKsCa0LHrJAFw2Yftw7zHo =" ;
8
+ hash = "sha256-M80H+azCzQYa4/gBLWv5GNNhEuHsH7LbJ/ajwmACnrM =" ;
9
9
} ;
10
10
11
11
patches = [ ] ;
Original file line number Diff line number Diff line change
1
+ Double Conversion
2
+ ========
1
3
https://github.com/google/double-conversion
2
4
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
+
3
7
This project (double-conversion) provides binary-decimal and decimal-binary
4
8
routines for IEEE doubles.
5
9
@@ -15,7 +19,7 @@ There is extensive documentation in `double-conversion/string-to-double.h` and
15
19
Building
16
20
========
17
21
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 ] .
19
23
The checked-in Makefile simply forwards to scons, and provides a
20
24
shortcut to run all tests:
21
25
@@ -51,5 +55,23 @@ Use `-DBUILD_TESTING=ON` to build the test executable.
51
55
make
52
56
test/cctest/cctest
53
57
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
+
54
75
[ 0 ] : http://www.scons.org/
55
76
[ 1 ] : https://cmake.org/
77
+ [ 2 ] : https://bazel.build/
Original file line number Diff line number Diff line change @@ -6,9 +6,9 @@ LICENSE(BSD-3-Clause)
6
6
7
7
LICENSE_TEXTS(.yandex_meta/licenses.list.txt)
8
8
9
- VERSION(3.3.0 )
9
+ VERSION(3.3.1 )
10
10
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)
12
12
13
13
ADDINCL(
14
14
GLOBAL contrib/libs/double-conversion
You can’t perform that action at this time.
0 commit comments