Compare commits

...

2 commits

Author SHA1 Message Date
e9b3072a39 v0.2.1
Some checks are pending
sourcezap / shellcheck (push) Waiting to run
2024-07-20 01:43:20 -03:00
24dd849b21 Fix Makefile 2024-07-20 01:43:11 -03:00
3 changed files with 22 additions and 12 deletions

View file

@ -5,7 +5,7 @@ LIBEXECDIR = $(PREFIX)/libexec/sourcezap
SHAREDIR = $(PREFIX)/share/sourcezap
install:
@find bin/ libexec/ share/ -type d -exec install -v -d $(PREFIX)/"{}" \;
@find bin/ libexec/ share/ man/ -type d -exec install -v -d $(PREFIX)/"{}" \;
@find bin/ libexec/ -type f -exec install -v -m 0755 "{}" $(PREFIX)/"{}" \;
@find share/ man/ -type f -exec install -v -m 0644 "{}" $(PREFIX)/"{}" \;

View file

@ -1,19 +1,29 @@
v0.2.0
= v0.2.1
* Set "diff.renameLimit" to unlimited
After this change, sourcezap always forwards "-l0" to "git diff"
* Fix Makefile
The mandoc directory wasn't created properly.
it became obvious when building the port
into a temporary staging directory
* Replace utils/gitexec with utils/git/run
After this change, we talk to git via utils/git/run
= v0.2.0
* Add utils/git/
- Set "diff.renameLimit" to unlimited
After this change, sourcezap always
forwards "-l0" to "git diff"
- Replace utils/gitexec with utils/git/run
After this change, we talk to git via
utils/git/run
- Add utils/git/
A dedicated directory for git-related scripts
* Remove "set -x"
- Remove "set -x"
After this change, sourcezap emits less output
* Remove scripts
Remove "utils/printok", "utils/printerr", "utils/git-rev"
- Remove scripts
Remove "utils/printok", "utils/printerr",
"utils/git-rev"
* Add documentation
- Add documentation
Covers README.md and sourcezap.8

View file

@ -1 +1 @@
v0.2.0
v0.2.1