f3276d3ea8
What's Changed - Update color-moved-support.md by @hangtwenty in #1082 - Tweak some words improved representation by @ydah in #1078 - Only trigger git show handler if a file extension was parsed by @dandavison in #1106 - Fix commit hyperlink formatting by @dandavison in #1110 - Avoid lockup when running without arguments and stdin is connected to a tty by @dotdash in #1112 - Fix whole-file changes being attributed to the wrong commit in "git log" output by @dotdash in #1111 - Update README.md to include git 2.37.0 workaround by @cwlbraa in #1116 - Don't attempt to process ANSI sequences in non-UTF8 input by @dandavison in #1117 - Update clap by @dandavison in #1119 - Recreate highlighter on each line of git show $commit:$path output by @dandavison in #1127 - Fix git-grep match-highlighting at line-start by @jdpopkin in #1057 - Update to chameleon theme by @AirOnSkin in #1138 - Fix typos by @kianmeng in #1151 - Support configurable timestamps in git blame output (#1157) by @mliszcz in #1158 - Added auto completions for fish shell by @exploide in #1165
23 lines
548 B
Makefile
23 lines
548 B
Makefile
# $NetBSD: Makefile,v 1.8 2022/09/02 11:47:29 pin Exp $
|
|
|
|
DISTNAME= delta-0.14.0
|
|
PKGNAME= git-delta-0.14.0
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=dandavison/}
|
|
GITHUB_PROJECT= delta
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://github.com/dandavison/delta/
|
|
COMMENT= Viewer for git and diff output
|
|
LICENSE= mit
|
|
|
|
.include "cargo-depends.mk"
|
|
|
|
INSTALLATION_DIRS= bin
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/target/release/delta \
|
|
${DESTDIR}${PREFIX}/bin
|
|
|
|
.include "../../lang/rust/cargo.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|