Diff curl-8.20.0 with a curl-9999
| /usr/portage/net-misc/curl/curl-9999.ebuild 2026-06-30 20:03:05.916008460 +0300 | ||
|---|---|---|
| 279 | 279 |
$(use_enable httpsrr) |
| 280 | 280 |
$(use_with http2 nghttp2) |
| 281 | 281 |
$(use_with http3 nghttp3) |
| 282 |
# TODO: --enable-proxy-http3? |
|
| 283 |
--disable-proxy-http3 |
|
| 282 | 284 |
) |
| 283 | 285 | |
| 284 | 286 |
# --enable/disable options |
| ... | ... | |
| 337 | 339 |
--without-test-caddy |
| 338 | 340 |
--without-test-httpd |
| 339 | 341 |
--without-test-nghttpx |
| 342 |
--without-test-h2o |
|
| 340 | 343 |
) |
| 341 | 344 | |
| 342 | 345 |
if use debug; then |
| ... | ... | |
| 390 | 393 |
# -n: no valgrind (unreliable in sandbox and doesn't work correctly on all arches) |
| 391 | 394 |
# -v: verbose |
| 392 | 395 |
# -a: keep going on failure (so we see everything that breaks, not just 1st test) |
| 393 |
# -k: keep test files after completion |
|
| 394 | 396 |
# -am: automake style TAP output |
| 395 | 397 |
# -p: print logs if test fails |
| 396 | 398 |
# --retry: retry any failing tests up to 3 times; this is a band-aid for timing-dependent flakiness. |
| ... | ... | |
| 401 | 403 |
# this ends up breaking when nproc is huge (like -j80). |
| 402 | 404 |
# The network sandbox causes tests 241 and 1083 to fail; these are typically skipped |
| 403 | 405 |
# as most gentoo users don't have an 'ip6-localhost' |
| 404 |
multilib_is_native_abi && emake test TFLAGS="-n -v -a -k -am -p -j$((2*$(get_makeopts_jobs))) --retry=3 !241 !1083" |
|
| 406 |
multilib_is_native_abi && emake test TFLAGS="-n -v -a -am -p -j$((2*$(get_makeopts_jobs))) --retry=3 !241 !1083" |
|
| 405 | 407 |
# TODO: enable python tests (make pytest). |
| 406 | 408 |
} |
| 407 | 409 | |