diff options
author | robot-contrib <[email protected]> | 2025-08-27 00:58:26 +0300 |
---|---|---|
committer | robot-contrib <[email protected]> | 2025-08-27 01:27:08 +0300 |
commit | fbf8a6fbab2f88d0661f28bbcdde54e560ce1130 (patch) | |
tree | e253cd9d21c4ee8a58c4e47c6819fc3d065130a3 | |
parent | 710eac95f835d057463b6549072fe3beecfe2cd0 (diff) |
Update contrib/restricted/boost/locale to 1.89.0
commit_hash:67d31262ff67a12c7789e5c850bf053eda0c25f1
-rw-r--r-- | contrib/restricted/boost/locale/.yandex_meta/default.nix | 4 | ||||
-rw-r--r-- | contrib/restricted/boost/locale/src/shared/mo_hash.hpp | 5 | ||||
-rw-r--r-- | contrib/restricted/boost/locale/ya.make | 4 |
3 files changed, 9 insertions, 4 deletions
diff --git a/contrib/restricted/boost/locale/.yandex_meta/default.nix b/contrib/restricted/boost/locale/.yandex_meta/default.nix index 9c73e061e2b..fc67e2c3201 100644 --- a/contrib/restricted/boost/locale/.yandex_meta/default.nix +++ b/contrib/restricted/boost/locale/.yandex_meta/default.nix @@ -1,13 +1,13 @@ self: super: with self; { boost_locale = stdenv.mkDerivation rec { pname = "boost_locale"; - version = "1.88.0"; + version = "1.89.0"; src = fetchFromGitHub { owner = "boostorg"; repo = "locale"; rev = "boost-${version}"; - hash = "sha256-2GL7iq6xpJDYbHk6B85CKTyV1E7873phb9MERw4Z2Cc="; + hash = "sha256-zAMYVfR1CL5mCgTYV9ujW0Fl+8tVndX/OK/ZVJImdQo="; }; }; } diff --git a/contrib/restricted/boost/locale/src/shared/mo_hash.hpp b/contrib/restricted/boost/locale/src/shared/mo_hash.hpp index 702ea7aece6..279b078a5ac 100644 --- a/contrib/restricted/boost/locale/src/shared/mo_hash.hpp +++ b/contrib/restricted/boost/locale/src/shared/mo_hash.hpp @@ -4,6 +4,9 @@ // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt +#ifndef BOOST_SRC_LOCALE_MO_HASH_HPP +#define BOOST_SRC_LOCALE_MO_HASH_HPP + #include <cstdint> namespace boost { namespace locale { namespace gnu_gettext { @@ -49,3 +52,5 @@ namespace boost { namespace locale { namespace gnu_gettext { return state; } }}} // namespace boost::locale::gnu_gettext + +#endif
\ No newline at end of file diff --git a/contrib/restricted/boost/locale/ya.make b/contrib/restricted/boost/locale/ya.make index f2b80c5b7af..8c6b3476aaa 100644 --- a/contrib/restricted/boost/locale/ya.make +++ b/contrib/restricted/boost/locale/ya.make @@ -6,9 +6,9 @@ LICENSE(BSL-1.0) LICENSE_TEXTS(.yandex_meta/licenses.list.txt) -VERSION(1.88.0) +VERSION(1.89.0) -ORIGINAL_SOURCE(https://github.com/boostorg/locale/archive/boost-1.88.0.tar.gz) +ORIGINAL_SOURCE(https://github.com/boostorg/locale/archive/boost-1.89.0.tar.gz) PEERDIR( contrib/libs/icu |