Skip to content

Commit 7e4c832

Browse files
committed
Add git-crawl: Crawl through git commits
git-crawl is a shell script that extends the git api allowing one to 'crawl' through their commits.
1 parent 0297c8d commit 7e4c832

File tree

4 files changed

+37
-0
lines changed

4 files changed

+37
-0
lines changed

devel/git-crawl/DESCR

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
git-crawl is a shell script that extends the git api allowing one to
2+
'crawl' through their commits.

devel/git-crawl/Makefile

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# $NetBSD: Makefile,v 1.1 2023/11/17 21:20:50 schmonz Exp $
2+
3+
DISTNAME= ${GITHUB_PROJECT}-${GITHUB_TAG}
4+
PKGNAME= git-crawl-0.0.20161010
5+
CATEGORIES= devel
6+
MASTER_SITES= ${MASTER_SITE_GITHUB:=magnusstahre/}
7+
GITHUB_PROJECT= git-stuff
8+
GITHUB_TAG= efb9c5106c218d7fabf98c45788670c15b5f1386
9+
10+
MAINTAINER= schmonz@NetBSD.org
11+
HOMEPAGE= https://github.com/magnusstahre/git-stuff/
12+
COMMENT= Crawl through git commits
13+
14+
USE_LANGUAGES= # none
15+
16+
REPLACE_SH= git-crawl
17+
18+
NO_BUILD= yes
19+
20+
INSTALLATION_DIRS= bin share/doc/${PKGBASE}
21+
22+
do-install:
23+
cd ${WRKSRC}; \
24+
${INSTALL_SCRIPT} git-crawl ${DESTDIR}${PREFIX}/bin/; \
25+
${INSTALL_DATA} README.md ${DESTDIR}${PREFIX}/share/doc/${PKGBASE}/
26+
27+
.include "../../mk/bsd.pkg.mk"

devel/git-crawl/PLIST

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
@comment $NetBSD: PLIST,v 1.1 2023/11/17 21:20:50 schmonz Exp $
2+
bin/git-crawl
3+
share/doc/git-crawl/README.md

devel/git-crawl/distinfo

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
$NetBSD: distinfo,v 1.1 2023/11/17 21:20:50 schmonz Exp $
2+
3+
BLAKE2s (git-stuff-efb9c5106c218d7fabf98c45788670c15b5f1386-efb9c5106c218d7fabf98c45788670c15b5f1386.tar.gz) = 8d918120e02890ce6b0303cf8e441701b6c5996559576d10fe6db74fe16cbcec
4+
SHA512 (git-stuff-efb9c5106c218d7fabf98c45788670c15b5f1386-efb9c5106c218d7fabf98c45788670c15b5f1386.tar.gz) = 258f93f20e7358614d87f312db084150a502568cbadb7be442ac06f9f9898195097900bfc22a4879cb4b2349731adfec314e5625648164120a974ac63efa6429
5+
Size (git-stuff-efb9c5106c218d7fabf98c45788670c15b5f1386-efb9c5106c218d7fabf98c45788670c15b5f1386.tar.gz) = 744 bytes

0 commit comments

Comments
 (0)