2019.3.23 • Published 5 years ago

tar-diff v2019.3.23

Weekly downloads
-
License
Unlicense
Repository
-
Last release
5 years ago

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