diff options
author | robot-contrib <robot-contrib@yandex-team.com> | 2024-11-09 19:14:48 +0300 |
---|---|---|
committer | robot-contrib <robot-contrib@yandex-team.com> | 2024-11-09 19:25:43 +0300 |
commit | 9ade466e8683a2e3b45dacf45f74fcf4a3c40cee (patch) | |
tree | 5386d43454d677cb1239ed7a889dfcf101e99136 /contrib/libs/liburing/.yandex_meta | |
parent | 1f59ab019232ff97a73c7c13736b254925fa8b0b (diff) | |
download | ydb-9ade466e8683a2e3b45dacf45f74fcf4a3c40cee.tar.gz |
Update contrib/libs/liburing to 2.8
commit_hash:761e2e80642a3d32073f0261b3f5b1992e54a74f
Diffstat (limited to 'contrib/libs/liburing/.yandex_meta')
-rw-r--r-- | contrib/libs/liburing/.yandex_meta/devtools.licenses.report | 16 | ||||
-rw-r--r-- | contrib/libs/liburing/.yandex_meta/override.nix | 4 |
2 files changed, 18 insertions, 2 deletions
diff --git a/contrib/libs/liburing/.yandex_meta/devtools.licenses.report b/contrib/libs/liburing/.yandex_meta/devtools.licenses.report index 94c6020f32..5677bdabba 100644 --- a/contrib/libs/liburing/.yandex_meta/devtools.licenses.report +++ b/contrib/libs/liburing/.yandex_meta/devtools.licenses.report @@ -87,6 +87,7 @@ BELONGS ya.make src/include/liburing/barrier.h [1:1] src/include/liburing/compat.h [1:1] src/include/liburing/io_uring_version.h [1:1] + src/include/liburing/sanitize.h [1:1] src/int_flags.h [1:1] src/lib.h [1:1] src/nolibc.c [2:2] @@ -118,6 +119,7 @@ BELONGS ya.make test/buf-ring-put.c [2:2] test/buf-ring.c [2:2] test/ce593a6c480a.c [2:2] + test/cmd-discard.c [2:2] test/connect-rep.c [2:2] test/connect.c [2:2] test/coredump.c [2:2] @@ -147,6 +149,8 @@ BELONGS ya.make test/fc2a85cb02ef.c [2:2] test/fd-install.c [2:2] test/fd-pass.c [2:2] + test/fdinfo.c [2:2] + test/fifo-nonblock-read.c [2:2] test/file-register.c [2:2] test/file-update.c [2:2] test/file-verify.c [2:2] @@ -173,18 +177,23 @@ BELONGS ya.make test/iopoll-leak.c [2:2] test/iopoll-overflow.c [2:2] test/iopoll.c [2:2] + test/kallsyms.c [2:2] test/lfs-openat-write.c [2:2] test/lfs-openat.c [2:2] test/link-timeout.c [2:2] test/link.c [2:2] test/link_drain.c [2:2] + test/linked-defer-close.c [2:2] test/madvise.c [2:2] + test/min-timeout-wait.c [2:2] + test/min-timeout.c [2:2] test/mkdir.c [2:2] test/msg-ring-fd.c [2:2] test/msg-ring-flags.c [2:2] test/msg-ring-overflow.c [2:2] test/msg-ring.c [2:2] test/multicqes_drain.c [2:2] + test/napi-test.c [2:2] test/no-mmap-inval.c [2:2] test/nolibc.c [2:2] test/nop-all-sizes.c [2:2] @@ -209,17 +218,21 @@ BELONGS ya.make test/poll-ring.c [2:2] test/poll-v-poll.c [2:2] test/poll.c [2:2] + test/pollfree.c [2:2] test/probe.c [2:2] test/read-before-exit.c [2:2] test/read-mshot-empty.c [2:2] + test/read-mshot-stdin.c [2:2] test/read-mshot.c [2:2] test/read-write.c [2:2] test/recv-msgall-stream.c [2:2] test/recv-msgall.c [2:2] + test/recvsend_bundle-inc.c [2:2] test/recvsend_bundle.c [2:2] test/reg-fd-only.c [2:2] test/reg-hint.c [2:2] test/reg-reg-ring.c [2:2] + test/regbuf-clone.c [2:2] test/regbuf-merge.c [2:2] test/register-restrictions.c [2:2] test/rename.c [2:2] @@ -256,6 +269,7 @@ BELONGS ya.make test/sqpoll-exec.c [2:2] test/sqpoll-exit-hang.c [2:2] test/sqpoll-sleep.c [2:2] + test/sqwait.c [2:2] test/stdout.c [2:2] test/submit-and-wait.c [2:2] test/submit-link-fail.c [2:2] @@ -270,7 +284,9 @@ BELONGS ya.make test/truncate.c [2:2] test/tty-write-dpoll.c [2:2] test/unlink.c [2:2] + test/uring_cmd_ublk.c [2:2] test/version.c [2:2] + test/wait-timeout.c [2:2] test/waitid.c [2:2] test/wakeup-hang.c [2:2] test/wq-aff.c [2:2] diff --git a/contrib/libs/liburing/.yandex_meta/override.nix b/contrib/libs/liburing/.yandex_meta/override.nix index afc13140e3..7118b3c759 100644 --- a/contrib/libs/liburing/.yandex_meta/override.nix +++ b/contrib/libs/liburing/.yandex_meta/override.nix @@ -1,12 +1,12 @@ pkgs: attrs: with pkgs; with attrs; rec { name = "liburing"; - version = "2.7"; + version = "2.8"; src = fetchFromGitHub { owner = "axboe"; repo = "liburing"; rev = "liburing-${version}"; - hash = "sha256-WhNlO2opPM7v4LOLWpmzPv31++zmn5Hmb6Su9IQBDH8="; + hash = "sha256-10zmoMDzO41oNRVXE/6FzDGPVRVJTJTARVUmc1b7f+o="; }; buildPhase = '' |