svn commit: r536071 - in head/textproc: . git-chglog
Hiroki Tagato
tagattie at FreeBSD.org
Thu May 21 05:33:01 UTC 2020
Author: tagattie
Date: Thu May 21 05:33:00 2020
New Revision: 536071
URL: https://svnweb.freebsd.org/changeset/ports/536071
Log:
Easily generate CHANGELOGs for Git repositories with high flexibility
and customizability to your likings.
WWW: https://github.com/git-chglog/git-chglog
PR: 244639
Submitted by: Lewis Cook <vulcan at wired.sh>
Approved by: ehaupt (mentor)
Added:
head/textproc/git-chglog/
head/textproc/git-chglog/Makefile (contents, props changed)
head/textproc/git-chglog/distinfo (contents, props changed)
head/textproc/git-chglog/pkg-descr (contents, props changed)
Modified:
head/textproc/Makefile
Modified: head/textproc/Makefile
==============================================================================
--- head/textproc/Makefile Thu May 21 05:21:25 2020 (r536070)
+++ head/textproc/Makefile Thu May 21 05:33:00 2020 (r536071)
@@ -213,6 +213,7 @@
SUBDIR += gastex
SUBDIR += gd-aspell
SUBDIR += gdome2
+ SUBDIR += git-chglog
SUBDIR += gitlab-elasticsearch-indexer
SUBDIR += gl-aspell
SUBDIR += gladtex
Added: head/textproc/git-chglog/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/textproc/git-chglog/Makefile Thu May 21 05:33:00 2020 (r536071)
@@ -0,0 +1,39 @@
+# $FreeBSD$
+
+PORTNAME= git-chglog
+DISTVERSION= 0.9.1
+CATEGORIES= textproc
+
+MAINTAINER= vulcan at wired.sh
+COMMENT= CHANGELOG generator implemented in Go
+
+LICENSE= MIT
+LICENSE_FILE= ${WRKSRC}/LICENSE
+
+RUN_DEPENDS= git:devel/git
+
+USES= go
+USE_GITHUB= yes
+GH_ACCOUNT= ${PORTNAME}
+
+GO_PKGNAME= github.com/${GH_ACCOUNT}/${GH_PROJECT}
+GO_TARGET= ./cmd/${PORTNAME}
+
+PLIST_FILES= bin/${PORTNAME}
+PORTDOCS= CHANGELOG.md CONTRIBUTING.md README.md
+PORTEXAMPLES= ${EXAMPLES:T}
+
+OPTIONS_DEFINE= DOCS EXAMPLES
+EXAMPLES_DESC= Install example template format and configuration
+
+EXAMPLES= .chglog/CHANGELOG.tpl.md .chglog/config.yml
+
+post-install-DOCS-on:
+ @${MKDIR} ${STAGEDIR}${DOCSDIR}
+ ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
+
+post-install-EXAMPLES-on:
+ @${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
+ cd ${WRKSRC} && ${INSTALL_DATA} ${EXAMPLES} ${STAGEDIR}${EXAMPLESDIR}
+
+.include <bsd.port.mk>
Added: head/textproc/git-chglog/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/textproc/git-chglog/distinfo Thu May 21 05:33:00 2020 (r536071)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1583515472
+SHA256 (git-chglog-git-chglog-0.9.1_GH0.tar.gz) = b8da488783d6c75aaf8c649996a1dc21756688d4aa131323330d062391c24042
+SIZE (git-chglog-git-chglog-0.9.1_GH0.tar.gz) = 1370499
Added: head/textproc/git-chglog/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/textproc/git-chglog/pkg-descr Thu May 21 05:33:00 2020 (r536071)
@@ -0,0 +1,4 @@
+Easily generate CHANGELOGs for Git repositories with high flexibility
+and customizability to your likings.
+
+WWW: https://github.com/git-chglog/git-chglog
More information about the svn-ports-all
mailing list