Сравнение curl-8.20.0 с curl-8.21.0
| /usr/portage/net-misc/curl/curl-8.21.0.ebuild 2026-08-03 20:03:05.100968272 +0300 | ||
|---|---|---|
| 22 | 22 |
S="${WORKDIR}/${P//_/-}"
|
| 23 | 23 |
else |
| 24 | 24 |
CURL_URI="https://curl.se/download/" |
| 25 |
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~arm64-macos ~x64-macos ~x64-solaris" |
|
| 25 |
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~arm64-macos ~x64-macos ~x64-solaris" |
|
| 26 | 26 |
fi |
| 27 | 27 |
SRC_URI=" |
| 28 | 28 |
${CURL_URI}${P//_/-}.tar.xz
|
| ... | ... | |
| 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 | |