Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 20 Sep 2019 10:28:32 +0000 (UTC)
From:      Nicola Vitale <nivit@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r512402 - in head/textproc: . py-towncrier
Message-ID:  <201909201028.x8KASWdw016685@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: nivit
Date: Fri Sep 20 10:28:32 2019
New Revision: 512402
URL: https://svnweb.freebsd.org/changeset/ports/512402

Log:
  towncrier is a utility to produce useful, summarised news files
  for your project. Rather than reading the Git history as some
  newer tools to produce it, or having one single file which
  developers all write to, towncrier reads "news fragments"
  which contain information useful to end users.
  
  WWW: https://github.com/hawkowl/towncrier

Added:
  head/textproc/py-towncrier/
  head/textproc/py-towncrier/Makefile   (contents, props changed)
  head/textproc/py-towncrier/distinfo   (contents, props changed)
  head/textproc/py-towncrier/pkg-descr   (contents, props changed)
Modified:
  head/textproc/Makefile

Modified: head/textproc/Makefile
==============================================================================
--- head/textproc/Makefile	Fri Sep 20 10:20:45 2019	(r512401)
+++ head/textproc/Makefile	Fri Sep 20 10:28:32 2019	(r512402)
@@ -1404,6 +1404,7 @@
     SUBDIR += py-tinycss
     SUBDIR += py-toml
     SUBDIR += py-toronado
+    SUBDIR += py-towncrier
     SUBDIR += py-trans
     SUBDIR += py-transifex-client
     SUBDIR += py-translationstring

Added: head/textproc/py-towncrier/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/py-towncrier/Makefile	Fri Sep 20 10:28:32 2019	(r512402)
@@ -0,0 +1,27 @@
+# $FreeBSD$
+
+PORTNAME=	towncrier
+PORTVERSION=	19.2.0
+CATEGORIES=	textproc
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	nivit@FreeBSD.org
+COMMENT=	Building newsfiles for your project
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}Jinja2>=0:devel/py-Jinja2@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}click>=0:devel/py-click@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}incremental>=0:devel/py-incremental@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}toml>=0:textproc/py-toml@${PY_FLAVOR}
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}Jinja2>=0:devel/py-Jinja2@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}click>=0:devel/py-click@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}incremental>=0:devel/py-incremental@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}toml>=0:textproc/py-toml@${PY_FLAVOR}
+
+USES=		python
+USE_PYTHON=	distutils autoplist
+
+.include <bsd.port.mk>

Added: head/textproc/py-towncrier/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/py-towncrier/distinfo	Fri Sep 20 10:28:32 2019	(r512402)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1568909526
+SHA256 (towncrier-19.2.0.tar.gz) = 48251a1ae66d2cf7e6fa5552016386831b3e12bb3b2d08eb70374508c17a8196
+SIZE (towncrier-19.2.0.tar.gz) = 20250

Added: head/textproc/py-towncrier/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/py-towncrier/pkg-descr	Fri Sep 20 10:28:32 2019	(r512402)
@@ -0,0 +1,7 @@
+towncrier is a utility to produce useful, summarised news files
+for your project. Rather than reading the Git history as some
+newer tools to produce it, or having one single file which
+developers all write to, towncrier reads "news fragments"
+which contain information useful to end users.
+
+WWW: https://github.com/hawkowl/towncrier



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201909201028.x8KASWdw016685>