From owner-svn-ports-all@freebsd.org Fri Sep 20 10:28:33 2019 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 76AC1F97DD; Fri, 20 Sep 2019 10:28:33 +0000 (UTC) (envelope-from nivit@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 46ZVL92by8z415x; Fri, 20 Sep 2019 10:28:33 +0000 (UTC) (envelope-from nivit@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3846524342; Fri, 20 Sep 2019 10:28:33 +0000 (UTC) (envelope-from nivit@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x8KASWAt016691; Fri, 20 Sep 2019 10:28:32 GMT (envelope-from nivit@FreeBSD.org) Received: (from nivit@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x8KASWdw016685; Fri, 20 Sep 2019 10:28:32 GMT (envelope-from nivit@FreeBSD.org) Message-Id: <201909201028.x8KASWdw016685@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: nivit set sender to nivit@FreeBSD.org using -f From: Nicola Vitale Date: Fri, 20 Sep 2019 10:28:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r512402 - in head/textproc: . py-towncrier X-SVN-Group: ports-head X-SVN-Commit-Author: nivit X-SVN-Commit-Paths: in head/textproc: . py-towncrier X-SVN-Commit-Revision: 512402 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Sep 2019 10:28:33 -0000 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 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