build: switch source archive to xz compression

Mention gerrit in the README

Change-Id: I468cedde1a15f760aef00ac2995dd5f73728b89e
diff --git a/README.md b/README.md
index e8074fb..006dbe2 100644
--- a/README.md
+++ b/README.md
@@ -36,11 +36,11 @@
     ./waf
     sudo ./waf install
 
-To build on memory constrained platform, please use `./waf -j1` instead of `./waf`. The
-command will disable parallel compilation.
+To build on memory constrained systems, please use `./waf -j1` instead of `./waf`. This
+will disable parallel compilation.
 
 If configured with tests (`./waf configure --with-tests`), the above commands will also
-generate unit tests that can be run with `./build/unit-tests`.
+build a suite of unit tests that can be run with `./build/unit-tests`.
 
 ## Reporting bugs
 
@@ -49,8 +49,8 @@
 
 ## Contributing
 
-We greatly appreciate contributions to the ChronoSync code base, provided that they are
-licensed under the GNU GPL version 3 or a compatible license.
+Contributions to ChronoSync are greatly appreciated and can be made through our
+[Gerrit code review site](https://gerrit.named-data.net/).
 If you are new to the NDN software community, please read our [Contributor's Guide](
 https://github.com/named-data/.github/blob/main/CONTRIBUTING.md) to get started.
 
diff --git a/docs/index.rst b/docs/index.rst
index 2f5689d..691707b 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -23,4 +23,5 @@
 
 ChronoSync is free software: you can redistribute it and/or modify it under the terms
 of the GNU General Public License as published by the Free Software Foundation, either
-version 3 of the License, or (at your option) any later version.
+version 3 of the License, or (at your option) any later version. See `COPYING.md
+<https://github.com/named-data/ChronoSync/blob/master/COPYING.md>`__ for details.
diff --git a/wscript b/wscript
index fd0320f..8d46c71 100644
--- a/wscript
+++ b/wscript
@@ -177,7 +177,9 @@
         Logs.warn('%s is not writable (%s)' % (versionFile, e.strerror))
 
 def dist(ctx):
+    ctx.algo = 'tar.xz'
     version(ctx)
 
 def distcheck(ctx):
+    ctx.algo = 'tar.xz'
     version(ctx)