Skip to content

Commit

Permalink
build: switch source archive to xz compression
Browse files Browse the repository at this point in the history
Mention gerrit in the README

Change-Id: I468cedde1a15f760aef00ac2995dd5f73728b89e
  • Loading branch information
Pesa committed Feb 20, 2023
1 parent 8560103 commit 2ff1056
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ To build ChronoSync from source:
./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

Expand All @@ -49,8 +49,8 @@ Please submit any bug reports or feature requests to the

## 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.

Expand Down
3 changes: 2 additions & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,5 @@ License

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.
2 changes: 2 additions & 0 deletions wscript
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,9 @@ def version(ctx):
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)

0 comments on commit 2ff1056

Please sign in to comment.