Diff liburing-2.7-r1 with a liburing-9999
| /usr/portage/sys-libs/liburing/liburing-9999.ebuild 2025-10-08 18:21:10.795456274 +0300 | ||
|---|---|---|
| 9 | 9 |
HOMEPAGE="https://github.com/axboe/liburing" |
| 10 | 10 |
if [[ "${PV}" == *9999 ]] ; then
|
| 11 | 11 |
inherit git-r3 |
| 12 |
EGIT_REPO_URI="https://github.com/axboe/liburing.git" |
|
| 12 |
EGIT_REPO_URI=" |
|
| 13 |
https://git.kernel.org/pub/scm/linux/kernel/git/axboe/liburing.git |
|
| 14 |
https://github.com/axboe/liburing.git |
|
| 15 |
" |
|
| 16 |
S="${WORKDIR}"/liburing-${PV}
|
|
| 13 | 17 |
else |
| 14 |
SRC_URI="https://github.com/axboe/liburing/archive/refs/tags/${P}.tar.gz -> ${P}.gh.tar.gz"
|
|
| 15 |
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 ~sparc x86" |
|
| 18 |
SRC_URI=" |
|
| 19 |
https://github.com/axboe/liburing/archive/refs/tags/${P}.tar.gz
|
|
| 20 |
" |
|
| 21 |
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" |
|
| 16 | 22 |
QA_PKGCONFIG_VERSION=${PV}
|
| 17 | ||
| 18 | 23 |
S="${WORKDIR}"/liburing-${P}
|
| 19 | 24 |
fi |
| 20 | 25 | |
| ... | ... | |
| 71 | 76 |
multilib_src_test() {
|
| 72 | 77 |
local disabled_tests=( |
| 73 | 78 |
accept.c |
| 79 |
conn-unreach.t |
|
| 74 | 80 |
fpos.c |
| 75 | 81 |
io_uring_register.c |
| 76 | 82 |
link-timeout.c |
| 77 | 83 |
read-before-exit.c |
| 78 | 84 |
recv-msgall-stream.c |
| 85 |
msg-ring.c |
|
| 86 |
wait-timeout.t |
|
| 79 | 87 |
) |
| 80 | 88 |
local disabled_test |
| 81 | 89 |
for disabled_test in "${disabled_tests[@]}"; do
|