Compare commits
2 commits
d22ed6a03d
...
e9b3072a39
Author | SHA1 | Date | |
---|---|---|---|
e9b3072a39 | |||
24dd849b21 |
3 changed files with 22 additions and 12 deletions
2
Makefile
2
Makefile
|
@ -5,7 +5,7 @@ LIBEXECDIR = $(PREFIX)/libexec/sourcezap
|
||||||
SHAREDIR = $(PREFIX)/share/sourcezap
|
SHAREDIR = $(PREFIX)/share/sourcezap
|
||||||
|
|
||||||
install:
|
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 bin/ libexec/ -type f -exec install -v -m 0755 "{}" $(PREFIX)/"{}" \;
|
||||||
@find share/ man/ -type f -exec install -v -m 0644 "{}" $(PREFIX)/"{}" \;
|
@find share/ man/ -type f -exec install -v -m 0644 "{}" $(PREFIX)/"{}" \;
|
||||||
|
|
||||||
|
|
|
@ -1,19 +1,29 @@
|
||||||
v0.2.0
|
= v0.2.1
|
||||||
|
|
||||||
* Set "diff.renameLimit" to unlimited
|
* Fix Makefile
|
||||||
After this change, sourcezap always forwards "-l0" to "git diff"
|
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
|
= v0.2.0
|
||||||
After this change, we talk to git via utils/git/run
|
|
||||||
|
|
||||||
* 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
|
A dedicated directory for git-related scripts
|
||||||
|
|
||||||
* Remove "set -x"
|
- Remove "set -x"
|
||||||
After this change, sourcezap emits less output
|
After this change, sourcezap emits less output
|
||||||
|
|
||||||
* Remove scripts
|
- Remove scripts
|
||||||
Remove "utils/printok", "utils/printerr", "utils/git-rev"
|
Remove "utils/printok", "utils/printerr",
|
||||||
|
"utils/git-rev"
|
||||||
|
|
||||||
* Add documentation
|
- Add documentation
|
||||||
Covers README.md and sourcezap.8
|
Covers README.md and sourcezap.8
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
v0.2.0
|
v0.2.1
|
||||||
|
|
Loading…
Reference in a new issue