fix(docs): correct Flutter version, Rust toolchains, Ubuntu 24.04 meson install, add rsync#1400
Open
xrviv wants to merge 1 commit into
Open
fix(docs): correct Flutter version, Rust toolchains, Ubuntu 24.04 meson install, add rsync#1400xrviv wants to merge 1 commit into
xrviv wants to merge 1 commit into
Conversation
77ad505 to
d0fa549
Compare
…l, add rsync - Flutter: 3.38.5 → 3.38.1 (all platforms; confirmed by libflutter.so identity match during reproducible build verification) - Rust: add 1.71.0 to all rustup install lines; required by crypto_plugins/frostdart/scripts/linux/build_all.sh which hardcodes cargo +1.71.0 - Ubuntu 24.04 meson: replace pipx with python3-venv approach; pipx cannot install library-only packages (markupsafe, jinja2, etc.) and will fail; setuptools added because Python 3.12 removed distutils which meson needs for GObject introspection - Linux desktop deps: add rsync; required by crypto_plugins/flutter_libmwc/scripts/linux/build_all.sh Fixes found during WalletScrutiny reproducible build verification (issue cypherstack#1399). Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
d0fa549 to
b8f7e4c
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Corrections to
docs/building.mdfound during WalletScrutiny reproducible build verification of Stack Wallet v2.4.4 (see issue #1399).3.38.5→3.38.1on all platforms (Linux, macOS, Windows). Confirmed bylibflutter.soidentity match against the official v2.4.4 binary.rustup installlines.crypto_plugins/frostdart/scripts/linux/build_all.shhardcodescargo +1.71.0; without it, frostdart fails to compile on all platforms.pipxwith apython3-venvapproach.pipxcannot install library-only packages (markupsafe,jinja2, etc.) and will exit with an error on Ubuntu 24.04.setuptoolsis added because Python 3.12 removeddistutils, which meson requires for the libsecret GObject introspection step.rsync: Added to Linux desktop deps.crypto_plugins/flutter_libmwc/scripts/linux/build_all.shusesrsyncto copy source into the build directory before runningcargo; without it the build fails immediately.Test plan
flutter --versionreports3.38.1after following updated Flutter install stepcargo +1.71.0 --versionworks after following updated rustup install stepmeson --versionreports0.64.1after following updated Ubuntu 24.04 meson install stepscripts/linux/build_app.sh -p linuxcompletes without rsync error🤖 Generated with Claude Code