From feae70ce5d0e51e1b31d342592dae3aa4b14a73b Mon Sep 17 00:00:00 2001 From: Matt Jolly Date: Tue, 3 Jun 2025 11:52:20 +1000 Subject: dev-lang/rust: drop build `x.py` verbosity After discussion with upstream, reduce the number of `v`s passed to of our `x.py` invocations. There is no documentation on why `-vvv` was added but it's suspected to be development troubleshooting shrapnel. `-vv` is retained for tests where the extra verbosity may actually be useful, however for most cases `-v` is suitable as it includes the invocation along with any warnings or errors; we probably don't need thousands of backtraces or diagnostic messages. Signed-off-by: Matt Jolly --- dev-lang/rust/rust-1.84.0-r2.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'dev-lang/rust/rust-1.84.0-r2.ebuild') diff --git a/dev-lang/rust/rust-1.84.0-r2.ebuild b/dev-lang/rust/rust-1.84.0-r2.ebuild index 2b23b59e2c5c..2aea6941c1a5 100644 --- a/dev-lang/rust/rust-1.84.0-r2.ebuild +++ b/dev-lang/rust/rust-1.84.0-r2.ebuild @@ -554,7 +554,7 @@ src_configure() { } src_compile() { - RUST_BACKTRACE=1 "${EPYTHON}" ./x.py build -vvv --config="${S}"/config.toml -j$(makeopts_jobs) || die + RUST_BACKTRACE=1 "${EPYTHON}" ./x.py build -v --config="${S}"/config.toml -j$(makeopts_jobs) || die } src_test() { @@ -610,7 +610,7 @@ src_test() { } src_install() { - DESTDIR="${D}" "${EPYTHON}" ./x.py install -vv --config="${S}"/config.toml -j$(makeopts_jobs) || die + DESTDIR="${D}" "${EPYTHON}" ./x.py install -v --config="${S}"/config.toml -j$(makeopts_jobs) || die docompress /usr/lib/${PN}/${PV}/share/man/ @@ -698,7 +698,7 @@ src_install() { doins "${T}/provider-${P}" if use dist; then - "${EPYTHON}" ./x.py dist -vv --config="${S}"/config.toml -j$(makeopts_jobs) || die + "${EPYTHON}" ./x.py dist -v --config="${S}"/config.toml -j$(makeopts_jobs) || die insinto "/usr/lib/${PN}/${PV}/dist" doins -r "${S}/build/dist/." fi -- cgit v1.2.3