summaryrefslogtreecommitdiffstats
path: root/contrib/restricted/boost/asio/.yandex_meta/__init__.py
blob: ba446d765d6db5dc137eebdca2fb579a884a9a9d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
from devtools.yamaker import boost
from devtools.yamaker.project import NixSourceProject


def post_install(self):
    self.yamakes["."] = boost.make_library(
        self,
        PEERDIR=[
            "contrib/libs/openssl",
        ],
    )


boost_asio = NixSourceProject(
    nixattr="boost_asio",
    arcdir=boost.make_arcdir("asio"),
    owners=["g:cpp-contrib"],
    copy_sources=[
        "include/boost/",
    ],
    disable_includes=[
        "atomic.h",
        "liburing.h",
        "experimental/coroutine",
        "experimental/source_location",
        "experimental/string_view",
        "BOOST_ASIO_CUSTOM_HANDLER_TRACKING",
        "wolfssl/",
    ],
    post_install=post_install,
)