aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/restricted/boost
diff options
context:
space:
mode:
authorbugaevskiy <bugaevskiy@yandex-team.com>2022-08-07 21:46:19 +0300
committerbugaevskiy <bugaevskiy@yandex-team.com>2022-08-07 21:46:19 +0300
commit8bfcfcb14c047bf26b7dab6ea2ffdd61c88675b8 (patch)
treeab914f6856c498497c73b1641db8c1f49fcdd181 /contrib/restricted/boost
parent21fd98e853721fe48c6673fddda3be2af0a1d44b (diff)
downloadydb-8bfcfcb14c047bf26b7dab6ea2ffdd61c88675b8.tar.gz
Reimport boost/format as a separate project
Diffstat (limited to 'contrib/restricted/boost')
-rw-r--r--contrib/restricted/boost/CMakeLists.txt1
-rw-r--r--contrib/restricted/boost/format/CMakeLists.txt24
-rw-r--r--contrib/restricted/boost/format/README.md37
-rw-r--r--contrib/restricted/boost/format/include/boost/format.hpp (renamed from contrib/restricted/boost/boost/format.hpp)0
-rw-r--r--contrib/restricted/boost/format/include/boost/format/alt_sstream.hpp (renamed from contrib/restricted/boost/boost/format/alt_sstream.hpp)0
-rw-r--r--contrib/restricted/boost/format/include/boost/format/alt_sstream_impl.hpp (renamed from contrib/restricted/boost/boost/format/alt_sstream_impl.hpp)0
-rw-r--r--contrib/restricted/boost/format/include/boost/format/detail/compat_workarounds.hpp (renamed from contrib/restricted/boost/boost/format/detail/compat_workarounds.hpp)0
-rw-r--r--contrib/restricted/boost/format/include/boost/format/detail/config_macros.hpp (renamed from contrib/restricted/boost/boost/format/detail/config_macros.hpp)0
-rw-r--r--contrib/restricted/boost/format/include/boost/format/detail/msvc_disambiguater.hpp (renamed from contrib/restricted/boost/boost/format/detail/msvc_disambiguater.hpp)0
-rw-r--r--contrib/restricted/boost/format/include/boost/format/detail/unset_macros.hpp (renamed from contrib/restricted/boost/boost/format/detail/unset_macros.hpp)0
-rw-r--r--contrib/restricted/boost/format/include/boost/format/detail/workarounds_gcc-2_95.hpp (renamed from contrib/restricted/boost/boost/format/detail/workarounds_gcc-2_95.hpp)0
-rw-r--r--contrib/restricted/boost/format/include/boost/format/detail/workarounds_stlport.hpp (renamed from contrib/restricted/boost/boost/format/detail/workarounds_stlport.hpp)0
-rw-r--r--contrib/restricted/boost/format/include/boost/format/exceptions.hpp (renamed from contrib/restricted/boost/boost/format/exceptions.hpp)0
-rw-r--r--contrib/restricted/boost/format/include/boost/format/feed_args.hpp (renamed from contrib/restricted/boost/boost/format/feed_args.hpp)0
-rw-r--r--contrib/restricted/boost/format/include/boost/format/format_class.hpp (renamed from contrib/restricted/boost/boost/format/format_class.hpp)0
-rw-r--r--contrib/restricted/boost/format/include/boost/format/format_fwd.hpp (renamed from contrib/restricted/boost/boost/format/format_fwd.hpp)0
-rw-r--r--contrib/restricted/boost/format/include/boost/format/format_implementation.hpp (renamed from contrib/restricted/boost/boost/format/format_implementation.hpp)0
-rw-r--r--contrib/restricted/boost/format/include/boost/format/free_funcs.hpp (renamed from contrib/restricted/boost/boost/format/free_funcs.hpp)0
-rw-r--r--contrib/restricted/boost/format/include/boost/format/group.hpp (renamed from contrib/restricted/boost/boost/format/group.hpp)0
-rw-r--r--contrib/restricted/boost/format/include/boost/format/internals.hpp (renamed from contrib/restricted/boost/boost/format/internals.hpp)0
-rw-r--r--contrib/restricted/boost/format/include/boost/format/internals_fwd.hpp (renamed from contrib/restricted/boost/boost/format/internals_fwd.hpp)0
-rw-r--r--contrib/restricted/boost/format/include/boost/format/parsing.hpp (renamed from contrib/restricted/boost/boost/format/parsing.hpp)0
22 files changed, 62 insertions, 0 deletions
diff --git a/contrib/restricted/boost/CMakeLists.txt b/contrib/restricted/boost/CMakeLists.txt
index 57d20e83c1..358b01f780 100644
--- a/contrib/restricted/boost/CMakeLists.txt
+++ b/contrib/restricted/boost/CMakeLists.txt
@@ -25,6 +25,7 @@ target_link_libraries(contrib-restricted-boost INTERFACE
restricted-boost-detail
restricted-boost-endian
restricted-boost-exception
+ restricted-boost-format
restricted-boost-function_types
restricted-boost-integer
restricted-boost-interval
diff --git a/contrib/restricted/boost/format/CMakeLists.txt b/contrib/restricted/boost/format/CMakeLists.txt
new file mode 100644
index 0000000000..fc92ec1e9e
--- /dev/null
+++ b/contrib/restricted/boost/format/CMakeLists.txt
@@ -0,0 +1,24 @@
+
+# This file was gererated by the build system used internally in the Yandex monorepo.
+# Only simple modifications are allowed (adding source-files to targets, adding simple properties
+# like target_include_directories). These modifications will be ported to original
+# ya.make files by maintainers. Any complex modifications which can't be ported back to the
+# original buildsystem will not be accepted.
+
+
+
+add_library(restricted-boost-format INTERFACE)
+target_include_directories(restricted-boost-format INTERFACE
+ ${CMAKE_SOURCE_DIR}/contrib/restricted/boost/format/include
+)
+target_link_libraries(restricted-boost-format INTERFACE
+ contrib-libs-cxxsupp
+ yutil
+ restricted-boost-assert
+ restricted-boost-config
+ restricted-boost-core
+ restricted-boost-optional
+ restricted-boost-smart_ptr
+ restricted-boost-throw_exception
+ restricted-boost-utility
+)
diff --git a/contrib/restricted/boost/format/README.md b/contrib/restricted/boost/format/README.md
new file mode 100644
index 0000000000..64a61e9fa2
--- /dev/null
+++ b/contrib/restricted/boost/format/README.md
@@ -0,0 +1,37 @@
+Format, part of the collection of [Boost C++ Libraries](http://github.com/boostorg), provides a type-safe mechanism for formatting arguments according to a printf-like format-string. User-defined types are supported by providing a `std::ostream operator <<` implementation for them.
+
+### License
+
+Distributed under the [Boost Software License, Version 1.0](http://www.boost.org/LICENSE_1_0.txt).
+
+### Properties
+
+* C++03
+* Header-only
+
+### Build Status
+
+Branch | Travis | Appveyor | Coverity Scan | codecov.io | Deps | Docs | Tests |
+:-------------: | ------ | -------- | ------------- | ---------- | ---- | ---- | ----- |
+[`master`](https://github.com/boostorg/format/tree/master) | [![Build Status](https://travis-ci.org/boostorg/format.svg?branch=master)](https://travis-ci.org/boostorg/format) | [![Build status](https://ci.appveyor.com/api/projects/status/tkcumf8nu6tb697d/branch/master?svg=true)](https://ci.appveyor.com/project/jeking3/format-bhjc4/branch/master) | [![Coverity Scan Build Status](https://scan.coverity.com/projects/14007/badge.svg)](https://scan.coverity.com/projects/boostorg-format) | [![codecov](https://codecov.io/gh/boostorg/format/branch/master/graph/badge.svg)](https://codecov.io/gh/boostorg/format/branch/master) | [![Deps](https://img.shields.io/badge/deps-master-brightgreen.svg)](https://pdimov.github.io/boostdep-report/master/format.html) | [![Documentation](https://img.shields.io/badge/docs-master-brightgreen.svg)](http://www.boost.org/doc/libs/master/doc/html/format.html) | [![Enter the Matrix](https://img.shields.io/badge/matrix-master-brightgreen.svg)](http://www.boost.org/development/tests/master/developer/format.html)
+[`develop`](https://github.com/boostorg/format/tree/develop) | [![Build Status](https://travis-ci.org/boostorg/format.svg?branch=develop)](https://travis-ci.org/boostorg/format) | [![Build status](https://ci.appveyor.com/api/projects/status/tkcumf8nu6tb697d/branch/develop?svg=true)](https://ci.appveyor.com/project/jeking3/format-bhjc4/branch/develop) | [![Coverity Scan Build Status](https://scan.coverity.com/projects/14007/badge.svg)](https://scan.coverity.com/projects/boostorg-format) | [![codecov](https://codecov.io/gh/boostorg/format/branch/develop/graph/badge.svg)](https://codecov.io/gh/boostorg/format/branch/develop) | [![Deps](https://img.shields.io/badge/deps-develop-brightgreen.svg)](https://pdimov.github.io/boostdep-report/develop/format.html) | [![Documentation](https://img.shields.io/badge/docs-develop-brightgreen.svg)](http://www.boost.org/doc/libs/develop/doc/html/format.html) | [![Enter the Matrix](https://img.shields.io/badge/matrix-develop-brightgreen.svg)](http://www.boost.org/development/tests/develop/developer/format.html)
+
+### Directories
+
+| Name | Purpose |
+| ----------- | ------------------------------ |
+| `benchmark` | benchmark tool |
+| `ci` | continuous integration scripts |
+| `doc` | documentation |
+| `examples` | use case examples |
+| `include` | headers |
+| `test` | unit tests |
+| `tools` | development tools |
+
+### More information
+
+* [Ask questions](http://stackoverflow.com/questions/ask?tags=c%2B%2B,boost,boost-format): Be sure to read the documentation first as Boost.Format, like any other string formatting library, has its own rules.
+* [Report bugs](https://github.com/boostorg/format/issues): Be sure to mention Boost version, platform and compiler you're using. A small compilable code sample to reproduce the problem is always good as well.
+* [Submit Pull Requests](https://github.com/boostorg/format/pulls) against the **develop** branch. Note that by submitting patches you agree to license your modifications under the [Boost Software License, Version 1.0](http://www.boost.org/LICENSE_1_0.txt). Be sure to include tests proving your changes work properly.
+* Discussions about the library are held on the [Boost developers mailing list](http://www.boost.org/community/groups.html#main). Be sure to read the [discussion policy](http://www.boost.org/community/policy.html) before posting and add the `[format]` tag at the beginning of the subject line.
+
diff --git a/contrib/restricted/boost/boost/format.hpp b/contrib/restricted/boost/format/include/boost/format.hpp
index 73464a819f..73464a819f 100644
--- a/contrib/restricted/boost/boost/format.hpp
+++ b/contrib/restricted/boost/format/include/boost/format.hpp
diff --git a/contrib/restricted/boost/boost/format/alt_sstream.hpp b/contrib/restricted/boost/format/include/boost/format/alt_sstream.hpp
index 138e175738..138e175738 100644
--- a/contrib/restricted/boost/boost/format/alt_sstream.hpp
+++ b/contrib/restricted/boost/format/include/boost/format/alt_sstream.hpp
diff --git a/contrib/restricted/boost/boost/format/alt_sstream_impl.hpp b/contrib/restricted/boost/format/include/boost/format/alt_sstream_impl.hpp
index 41e6c5ca8e..41e6c5ca8e 100644
--- a/contrib/restricted/boost/boost/format/alt_sstream_impl.hpp
+++ b/contrib/restricted/boost/format/include/boost/format/alt_sstream_impl.hpp
diff --git a/contrib/restricted/boost/boost/format/detail/compat_workarounds.hpp b/contrib/restricted/boost/format/include/boost/format/detail/compat_workarounds.hpp
index 8e51514f3e..8e51514f3e 100644
--- a/contrib/restricted/boost/boost/format/detail/compat_workarounds.hpp
+++ b/contrib/restricted/boost/format/include/boost/format/detail/compat_workarounds.hpp
diff --git a/contrib/restricted/boost/boost/format/detail/config_macros.hpp b/contrib/restricted/boost/format/include/boost/format/detail/config_macros.hpp
index 44d1e86c63..44d1e86c63 100644
--- a/contrib/restricted/boost/boost/format/detail/config_macros.hpp
+++ b/contrib/restricted/boost/format/include/boost/format/detail/config_macros.hpp
diff --git a/contrib/restricted/boost/boost/format/detail/msvc_disambiguater.hpp b/contrib/restricted/boost/format/include/boost/format/detail/msvc_disambiguater.hpp
index c2692c4435..c2692c4435 100644
--- a/contrib/restricted/boost/boost/format/detail/msvc_disambiguater.hpp
+++ b/contrib/restricted/boost/format/include/boost/format/detail/msvc_disambiguater.hpp
diff --git a/contrib/restricted/boost/boost/format/detail/unset_macros.hpp b/contrib/restricted/boost/format/include/boost/format/detail/unset_macros.hpp
index b3ac47b42b..b3ac47b42b 100644
--- a/contrib/restricted/boost/boost/format/detail/unset_macros.hpp
+++ b/contrib/restricted/boost/format/include/boost/format/detail/unset_macros.hpp
diff --git a/contrib/restricted/boost/boost/format/detail/workarounds_gcc-2_95.hpp b/contrib/restricted/boost/format/include/boost/format/detail/workarounds_gcc-2_95.hpp
index 8c49d42d02..8c49d42d02 100644
--- a/contrib/restricted/boost/boost/format/detail/workarounds_gcc-2_95.hpp
+++ b/contrib/restricted/boost/format/include/boost/format/detail/workarounds_gcc-2_95.hpp
diff --git a/contrib/restricted/boost/boost/format/detail/workarounds_stlport.hpp b/contrib/restricted/boost/format/include/boost/format/detail/workarounds_stlport.hpp
index 5d435b98a0..5d435b98a0 100644
--- a/contrib/restricted/boost/boost/format/detail/workarounds_stlport.hpp
+++ b/contrib/restricted/boost/format/include/boost/format/detail/workarounds_stlport.hpp
diff --git a/contrib/restricted/boost/boost/format/exceptions.hpp b/contrib/restricted/boost/format/include/boost/format/exceptions.hpp
index 5402977f76..5402977f76 100644
--- a/contrib/restricted/boost/boost/format/exceptions.hpp
+++ b/contrib/restricted/boost/format/include/boost/format/exceptions.hpp
diff --git a/contrib/restricted/boost/boost/format/feed_args.hpp b/contrib/restricted/boost/format/include/boost/format/feed_args.hpp
index b0e520e54a..b0e520e54a 100644
--- a/contrib/restricted/boost/boost/format/feed_args.hpp
+++ b/contrib/restricted/boost/format/include/boost/format/feed_args.hpp
diff --git a/contrib/restricted/boost/boost/format/format_class.hpp b/contrib/restricted/boost/format/include/boost/format/format_class.hpp
index ae98be4d75..ae98be4d75 100644
--- a/contrib/restricted/boost/boost/format/format_class.hpp
+++ b/contrib/restricted/boost/format/include/boost/format/format_class.hpp
diff --git a/contrib/restricted/boost/boost/format/format_fwd.hpp b/contrib/restricted/boost/format/include/boost/format/format_fwd.hpp
index 16b8565468..16b8565468 100644
--- a/contrib/restricted/boost/boost/format/format_fwd.hpp
+++ b/contrib/restricted/boost/format/include/boost/format/format_fwd.hpp
diff --git a/contrib/restricted/boost/boost/format/format_implementation.hpp b/contrib/restricted/boost/format/include/boost/format/format_implementation.hpp
index 2abb5c4b03..2abb5c4b03 100644
--- a/contrib/restricted/boost/boost/format/format_implementation.hpp
+++ b/contrib/restricted/boost/format/include/boost/format/format_implementation.hpp
diff --git a/contrib/restricted/boost/boost/format/free_funcs.hpp b/contrib/restricted/boost/format/include/boost/format/free_funcs.hpp
index 3a51545526..3a51545526 100644
--- a/contrib/restricted/boost/boost/format/free_funcs.hpp
+++ b/contrib/restricted/boost/format/include/boost/format/free_funcs.hpp
diff --git a/contrib/restricted/boost/boost/format/group.hpp b/contrib/restricted/boost/format/include/boost/format/group.hpp
index c586b2a617..c586b2a617 100644
--- a/contrib/restricted/boost/boost/format/group.hpp
+++ b/contrib/restricted/boost/format/include/boost/format/group.hpp
diff --git a/contrib/restricted/boost/boost/format/internals.hpp b/contrib/restricted/boost/format/include/boost/format/internals.hpp
index cd5fc540d3..cd5fc540d3 100644
--- a/contrib/restricted/boost/boost/format/internals.hpp
+++ b/contrib/restricted/boost/format/include/boost/format/internals.hpp
diff --git a/contrib/restricted/boost/boost/format/internals_fwd.hpp b/contrib/restricted/boost/format/include/boost/format/internals_fwd.hpp
index 18cf122412..18cf122412 100644
--- a/contrib/restricted/boost/boost/format/internals_fwd.hpp
+++ b/contrib/restricted/boost/format/include/boost/format/internals_fwd.hpp
diff --git a/contrib/restricted/boost/boost/format/parsing.hpp b/contrib/restricted/boost/format/include/boost/format/parsing.hpp
index 00074925c9..00074925c9 100644
--- a/contrib/restricted/boost/boost/format/parsing.hpp
+++ b/contrib/restricted/boost/format/include/boost/format/parsing.hpp