tar-diff
v2019.3.23
Published
compare two tar archives
Downloads
3
Readme
compare two tar archives
Installation
$ [sudo] pip install tar-diff
Features
file/url arguments supported
CLI
usage: tar-diff archive1 archive2
Examples
$ diff="$(tar-diff archive1.tar.gz archive2.tar.gz)"
complicated example. bump python project version
$ dist_dir="$(mktemp -d)"
$ python setup.py sdist --dist-dir="$dist_dir" &> /dev/null
$ sdist="$(find "$dist_dir" -type f)"
$ url="$(python -m pypi_get.urls <name> | grep tar.gz)"
$ diff="$(tar-diff "$sdist" "$url")"
$ [[ -n "$diff" ]] && bumpversion