Do you often modify a package, check that it builds in travis, and then FORGET TO UPLOAD IT!
Then this tool is for you! Its raison d'etre is to see if you have changes in your local directory which are not on hackage.
hackage-whatsnew depends on the following executables:
-
cabal
-
tar
-
GNU diff (or any
diffwhich supports the-r,-u, and-Noptions)
These binaries need to be in the current search path. Assuming
everything is installed, to use hackage-whatsnew you simply need to:
-
run
cabal update -
cd into the same directory as the
.cabalfile -
run
hackage-whatsnew
If no changes are detected, then nothing is printed and the exit code is 0.
If changes are detected a recursive diff is displayed and the exit code is 1.
This tool works as follows:
-
read the local
.cabalfile and figure out the package name -
use
cabal fetchto get the latest version of the package from hackage -
use
cabal sdistto generate the.tar.gzfor the local working directory -
untar both
.tar.gzbundles into temporary directories -
use
diff -ruNto check for differences -
exit with 0 if no differences found
-
exit with 1 if differences with found
-
exit with 2 if other errors encountered
Q: Why is it called hackage-whatsnew instead of hackage-diff?
A: Because hackage-diff was already taken. The whatsnew term is inspired by darcs whatsnew.
Q: Would it by great if the tool did XYZ?
A: Yes! Please submit a pull request.