Skip to content

Commit

Permalink
Merge branch 'v4.7.0-gitian-bump' into 'master'
Browse files Browse the repository at this point in the history
update for v4.7.0

See merge request zcash-docs/zcash-docs!290
  • Loading branch information
mdr0id committed Apr 15, 2022
2 parents ccf3b21 + b0c4367 commit 148aff7
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion source/rtd_pages/Debian-Ubuntu-build.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ There are multiple ways to download dependencies and build Zcashd & Zcash-cli. W
```
git clone https://github.com/zcash/zcash.git
cd zcash/
git checkout v4.6.0-2
git checkout v4.7.0
./zcutil/fetch-params.sh
```

Expand Down
2 changes: 1 addition & 1 deletion source/rtd_pages/Linux-misc-build.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Currently, the only way to install Zcashd & Zcash-cli on Linux is to build from
```
git clone https://github.com/zcash/zcash.git
cd zcash/
git checkout v4.6.0-2
git checkout v4.7.0
./zcutil/fetch-params.sh
```
<!--The message printed by ``git checkout`` about a "detached head" is normal and does not indicate a problem. -->
Expand Down
18 changes: 9 additions & 9 deletions source/rtd_pages/install_binary_tarball.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,41 +7,41 @@ Binary Tarball Download & Setup

The Electric Coin Company provides a binary tarball for download.

As of v4.6.0-2, we are no longer supporting Debian 9(Stretch) packages in apt.
As of v4.7.0, we are no longer supporting Debian 9(Stretch) packages in apt.

`Download Tarball for Debian Buster v4.6.0-2 <https://z.cash/downloads/zcash-4.6.0-2-linux64-debian-buster.tar.gz>`_
`Download Tarball for Debian Buster v4.7.0 <https://z.cash/downloads/zcash-4.7.0-linux64-debian-buster.tar.gz>`_

After downloading but before extracting, verify that the checksum of the tarball matches the hash below for the version of the binary you downloaded:

Debian Buster:

.. code-block:: bash
sha256sum zcash-4.6.0-2-linux64-debian-buster.tar.gz
sha256sum zcash-4.7.0-linux64-debian-buster.tar.gz
Result: ``9e18ded3b25cbc38f8189a7d276d2fefbeb122f1ac4d578404bbdf960c1b16e2``
Result: ``d27064e75ca21a807e4a47693f313c612ebfc9a03abc08f0e02f9d6105d15831``

`Download Tarball for Debian Bullseye v4.6.0-2 <https://z.cash/downloads/zcash-4.6.0-2-linux64-debian-bullseye.tar.gz>`_
`Download Tarball for Debian Bullseye v4.7.0 <https://z.cash/downloads/zcash-4.7.0-linux64-debian-bullseye.tar.gz>`_

After downloading but before extracting, verify that the checksum of the tarball matches the hash below for the version of the binary you downloaded:

Debian Bullseye:

.. code-block:: bash
sha256sum zcash-4.6.0-2-linux64-debian-bullseye.tar.gz
sha256sum zcash-4.7.0-linux64-debian-bullseye.tar.gz
Result: ``b959c35dee15a3623347222bd8646d56cda4d88153b6764b3e4dfc01daefa0e5``
Result: ``95ab70cd6d7d3d6f89c834468dc7d8daf6549ef361aa506a14bc2d4e2275d0b0``

This checksum was generated from our gitian deterministic build process. `View all gitian signatures <https://github.com/zcash/gitian.sigs/tree/master>`_.

Once you've verified that it matches, extract the Buster or Bullseye files and move the binaries into your executables $PATH:

.. code-block:: bash
tar -xvf zcash-4.6.0-2-linux64-debian-buster.tar.gz
tar -xvf zcash-4.7.0-linux64-debian-buster.tar.gz
mv -t /usr/local/bin/ zcash-4.6.0-2/bin/*
mv -t /usr/local/bin/ zcash-4.7.0/bin/*
Now that Zcash is installed, run this command to download the parameters used to create and verify shielded transactions:

Expand Down
2 changes: 1 addition & 1 deletion source/rtd_pages/macOS-build.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Currently, the only way to install Zcashd & Zcash-cli on macOS is to build from
```
git clone https://github.com/zcash/zcash.git
cd zcash/
git checkout v4.6.0-2
git checkout v4.7.0
./zcutil/fetch-params.sh
```
<!--The message printed by ``git checkout`` about a "detached head" is normal and does not indicate a problem. -->
Expand Down
2 changes: 1 addition & 1 deletion source/rtd_pages/raspi-build.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ The first step is to prepare the prequisite software for the zcashd compile.
```
git clone https://github.com/zcash/zcash.git
cd zcash/
git checkout v4.6.0-2
git checkout v4.7.0
./zcutil/fetch-params.sh
```

Expand Down
4 changes: 2 additions & 2 deletions source/rtd_pages/zcashd.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,9 @@ To upgrade Zcashd & Zcash-cli, fetch the latest updates:
```

Helpful tips:
* Upgrading to v4.6.0-2 requires a build; try the following:
* Upgrading to v4.7.0 requires a build; try the following:
```
git checkout v4.6.0-2
git checkout v4.7.0
./zcutil/clean.sh
./zcutil/build.sh -j$(nproc)
```
Expand Down

0 comments on commit 148aff7

Please sign in to comment.