Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
curl -O https://dist.apache.org/repos/dist/dev/couchdb/source/VERSION/CANDIDATE/apache-couchdb-VERSION.tar.gz
curl -O https://dist.apache.org/repos/dist/dev/couchdb/source/VERSION/CANDIDATE/apache-couchdb-VERSION.tar.gz.asc
curl -O https://dist.apache.org/repos/dist/dev/couchdb/source/VERSION/CANDIDATE/apache-couchdb-VERSION.tar.gz.sha256
curl -O https://dist.apache.org/repos/dist/dev/couchdb/source/VERSION/CANDIDATE/apache-couchdb-VERSION.tar.gz.sha512

The appropriate commands should be in the email for you to copy and paste.  

...

Info
titlemacOS

If you're using macOS and you don't have sha256sum installed, you can install it with Homebrew, like so:

Code Block
brew install coreutils

Afterwards, you may need to also do this:

Code Block
sudo ln -s /usr/local/bin/gsha256sum /usr/local/bin/sha256sum
sudo ln -s /usr/local/bin/gsha512sum /usr/local/bin/sha512sum

You must then check the SHA512 checksum of the release:  

code
sha512sum --check apache-couchdb-*.tar.gz.sha512

...


 

Checking the Candidate

Skip this section if you don't know anything about the build system.  

...