diff options
author | Alexander Smirnov <alex@ydb.tech> | 2025-02-24 00:51:43 +0000 |
---|---|---|
committer | Alexander Smirnov <alex@ydb.tech> | 2025-02-24 00:51:43 +0000 |
commit | 3f6c8c838d59f5b4536ce3e724183e829c3525f6 (patch) | |
tree | 017120049090340bbace363a7de1690f429300b2 /contrib | |
parent | 20441f28beb799b0dfab7ba774d002a3d08da408 (diff) | |
parent | 98c12699e07321e2078c175d7d43fb765448ff2b (diff) | |
download | ydb-3f6c8c838d59f5b4536ce3e724183e829c3525f6.tar.gz |
Merge branch 'rightlib' into merge-libs-250224-0050
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/libs/double-conversion/.yandex_meta/override.nix | 4 | ||||
-rw-r--r-- | contrib/libs/double-conversion/README.md | 24 | ||||
-rw-r--r-- | contrib/libs/double-conversion/ya.make | 4 | ||||
-rw-r--r-- | contrib/python/types-protobuf/.dist-info/METADATA | 18 | ||||
-rw-r--r-- | contrib/python/types-protobuf/README.md | 4 | ||||
-rw-r--r-- | contrib/python/types-protobuf/google-stubs/protobuf/reflection.pyi | 1 | ||||
-rw-r--r-- | contrib/python/types-protobuf/ya.make | 2 |
7 files changed, 43 insertions, 14 deletions
diff --git a/contrib/libs/double-conversion/.yandex_meta/override.nix b/contrib/libs/double-conversion/.yandex_meta/override.nix index 16d50c54ad..10f1a2874d 100644 --- a/contrib/libs/double-conversion/.yandex_meta/override.nix +++ b/contrib/libs/double-conversion/.yandex_meta/override.nix @@ -1,11 +1,11 @@ pkgs: attrs: with pkgs; with attrs; rec { - version = "3.3.0"; + version = "3.3.1"; src = fetchFromGitHub { owner = "google"; repo = "double-conversion"; rev = "v${version}"; - hash = "sha256-DkMoHHoHwV4p40IINEqEPzKsCa0LHrJAFw2Yftw7zHo="; + hash = "sha256-M80H+azCzQYa4/gBLWv5GNNhEuHsH7LbJ/ajwmACnrM="; }; patches = []; diff --git a/contrib/libs/double-conversion/README.md b/contrib/libs/double-conversion/README.md index e5d9a4e682..db5386ce10 100644 --- a/contrib/libs/double-conversion/README.md +++ b/contrib/libs/double-conversion/README.md @@ -1,5 +1,9 @@ +Double Conversion +======== https://github.com/google/double-conversion +[](https://securityscorecards.dev/viewer/?uri=github.com/google/double-conversion) + This project (double-conversion) provides binary-decimal and decimal-binary routines for IEEE doubles. @@ -15,7 +19,7 @@ There is extensive documentation in `double-conversion/string-to-double.h` and Building ======== -This library can be built with [scons][0] or [cmake][1]. +This library can be built with [scons][0], [cmake][1] or [bazel][2]. The checked-in Makefile simply forwards to scons, and provides a shortcut to run all tests: @@ -51,5 +55,23 @@ Use `-DBUILD_TESTING=ON` to build the test executable. make test/cctest/cctest +Bazel +--- + +The simplest way to adopt this library is through the [Bazel Central Registry](https://registry.bazel.build/modules/double-conversion). + +To build the library from the latest repository, run: + +``` +bazel build //:double-conversion +``` + +To run the unit test, run: + +``` +bazel test //:cctest +``` + [0]: http://www.scons.org/ [1]: https://cmake.org/ +[2]: https://bazel.build/ diff --git a/contrib/libs/double-conversion/ya.make b/contrib/libs/double-conversion/ya.make index d6c916b9fd..1686487439 100644 --- a/contrib/libs/double-conversion/ya.make +++ b/contrib/libs/double-conversion/ya.make @@ -6,9 +6,9 @@ LICENSE(BSD-3-Clause) LICENSE_TEXTS(.yandex_meta/licenses.list.txt) -VERSION(3.3.0) +VERSION(3.3.1) -ORIGINAL_SOURCE(https://github.com/google/double-conversion/archive/v3.3.0.tar.gz) +ORIGINAL_SOURCE(https://github.com/google/double-conversion/archive/v3.3.1.tar.gz) ADDINCL( GLOBAL contrib/libs/double-conversion diff --git a/contrib/python/types-protobuf/.dist-info/METADATA b/contrib/python/types-protobuf/.dist-info/METADATA index 2d60622cee..d0b3a5d6eb 100644 --- a/contrib/python/types-protobuf/.dist-info/METADATA +++ b/contrib/python/types-protobuf/.dist-info/METADATA @@ -1,6 +1,6 @@ -Metadata-Version: 2.1 +Metadata-Version: 2.2 Name: types-protobuf -Version: 5.29.1.20241207 +Version: 5.29.1.20250208 Summary: Typing stubs for protobuf Home-page: https://github.com/python/typeshed License: Apache-2.0 @@ -11,9 +11,17 @@ Project-URL: Chat, https://gitter.im/python/typing Classifier: License :: OSI Approved :: Apache Software License Classifier: Programming Language :: Python :: 3 Classifier: Typing :: Stubs Only -Requires-Python: >=3.8 +Requires-Python: >=3.9 Description-Content-Type: text/markdown License-File: LICENSE +Dynamic: classifier +Dynamic: description +Dynamic: description-content-type +Dynamic: home-page +Dynamic: license +Dynamic: project-url +Dynamic: requires-python +Dynamic: summary ## Typing stubs for protobuf @@ -42,8 +50,8 @@ for more details. The source for this package can be found in the directory. This package was tested with -mypy 1.13.0, +mypy 1.15.0, pyright 1.1.389, and pytype 2024.10.11. It was generated from typeshed commit -[`0e9c9e1362959512a880abbf1275471b0d76924f`](https://github.com/python/typeshed/commit/0e9c9e1362959512a880abbf1275471b0d76924f). +[`73ebb9dfd7dfce93c5becde4dcdd51d5626853b8`](https://github.com/python/typeshed/commit/73ebb9dfd7dfce93c5becde4dcdd51d5626853b8). diff --git a/contrib/python/types-protobuf/README.md b/contrib/python/types-protobuf/README.md index ba94ec673a..6b33aeb727 100644 --- a/contrib/python/types-protobuf/README.md +++ b/contrib/python/types-protobuf/README.md @@ -25,8 +25,8 @@ for more details. The source for this package can be found in the directory. This package was tested with -mypy 1.13.0, +mypy 1.15.0, pyright 1.1.389, and pytype 2024.10.11. It was generated from typeshed commit -[`0e9c9e1362959512a880abbf1275471b0d76924f`](https://github.com/python/typeshed/commit/0e9c9e1362959512a880abbf1275471b0d76924f).
\ No newline at end of file +[`73ebb9dfd7dfce93c5becde4dcdd51d5626853b8`](https://github.com/python/typeshed/commit/73ebb9dfd7dfce93c5becde4dcdd51d5626853b8).
\ No newline at end of file diff --git a/contrib/python/types-protobuf/google-stubs/protobuf/reflection.pyi b/contrib/python/types-protobuf/google-stubs/protobuf/reflection.pyi index dae0fb93e6..5f7822363b 100644 --- a/contrib/python/types-protobuf/google-stubs/protobuf/reflection.pyi +++ b/contrib/python/types-protobuf/google-stubs/protobuf/reflection.pyi @@ -1,6 +1,5 @@ class GeneratedProtocolMessageType(type): def __new__(cls, name, bases, dictionary): ... - def __init__(self, /, name, bases, dictionary) -> None: ... def ParseMessage(descriptor, byte_str): ... def MakeClass(descriptor): ... diff --git a/contrib/python/types-protobuf/ya.make b/contrib/python/types-protobuf/ya.make index d583cb9a7c..1490183177 100644 --- a/contrib/python/types-protobuf/ya.make +++ b/contrib/python/types-protobuf/ya.make @@ -2,7 +2,7 @@ PY3_LIBRARY() -VERSION(5.29.1.20241207) +VERSION(5.29.1.20250208) LICENSE(Apache-2.0) |