7fd991b5a5
Unlike `git blame`, which can tell you who wrote a line of code, git-who tells you the people responsible for entire components or subsystems in a codebase. You can think of git-who sort of like `git blame` but for file trees rather than individual files. WWW: https://github.com/sinclairtarget/git-who PR: 286146 Reported by: Yusuf Yaman <nxjoseph@protonmail.com> (new maintainer)
29 lines
864 B
Makefile
29 lines
864 B
Makefile
PORTNAME= git-who
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 1.1
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= nxjoseph@protonmail.com
|
|
COMMENT= Git blame for file trees
|
|
WWW= https://github.com/sinclairtarget/git-who
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USES= go:1.23,modules
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= sinclairtarget
|
|
GH_TUPLE= bmatcuk:doublestar:v4.8.1:bmatcuk_doublestar_v4/vendor/github.com/bmatcuk/doublestar/v4 \
|
|
golang:sys:v0.29.0:golang_sys/vendor/golang.org/x/sys \
|
|
golang:term:v0.28.0:golang_term/vendor/golang.org/x/term \
|
|
google:go-cmp:v0.6.0:google_go_cmp/vendor/github.com/google/go-cmp \
|
|
mattn:go-runewidth:v0.0.16:mattn_go_runewidth/vendor/github.com/mattn/go-runewidth \
|
|
rivo:uniseg:v0.2.0:rivo_uniseg/vendor/github.com/rivo/uniseg
|
|
|
|
PLIST_FILES= bin/${PORTNAME}
|
|
|
|
post-extract:
|
|
@${CP} ${FILESDIR}/modules.txt ${WRKSRC}/vendor
|
|
|
|
.include <bsd.port.mk>
|