From owner-svn-ports-head@freebsd.org Tue May 19 05:10:43 2020 Return-Path: Delivered-To: svn-ports-head@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 CF6D92FB0C2; Tue, 19 May 2020 05:10:43 +0000 (UTC) (envelope-from sunpoet@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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 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 49R3ql55zwz3g6X; Tue, 19 May 2020 05:10:43 +0000 (UTC) (envelope-from sunpoet@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 AA7D62D757; Tue, 19 May 2020 05:10:43 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 04J5AhcI093757; Tue, 19 May 2020 05:10:43 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 04J5AgTP093752; Tue, 19 May 2020 05:10:42 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <202005190510.04J5AgTP093752@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Tue, 19 May 2020 05:10:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r535807 - in head/devel: . py-copier py-copier/files X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/devel: . py-copier py-copier/files X-SVN-Commit-Revision: 535807 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 May 2020 05:10:43 -0000 Author: sunpoet Date: Tue May 19 05:10:42 2020 New Revision: 535807 URL: https://svnweb.freebsd.org/changeset/ports/535807 Log: Add py-copier 3.1.0 Copier is a library for rendering project templates. - Works with local paths and git URLs. - Your project can include any file and Copier can dynamically replace values in any kind of text file. - It generates a beautiful output and takes care of not overwrite existing files unless instructed to do so. WWW: https://github.com/pykong/copier Added: head/devel/py-copier/ head/devel/py-copier/Makefile (contents, props changed) head/devel/py-copier/distinfo (contents, props changed) head/devel/py-copier/files/ head/devel/py-copier/files/patch-setup.py (contents, props changed) head/devel/py-copier/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue May 19 04:59:26 2020 (r535806) +++ head/devel/Makefile Tue May 19 05:10:42 2020 (r535807) @@ -4278,6 +4278,7 @@ SUBDIR += py-contextlib2 SUBDIR += py-convertdate SUBDIR += py-cookiecutter + SUBDIR += py-copier SUBDIR += py-coreapi SUBDIR += py-coreschema SUBDIR += py-country Added: head/devel/py-copier/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-copier/Makefile Tue May 19 05:10:42 2020 (r535807) @@ -0,0 +1,32 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= copier +PORTVERSION= 3.1.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Library for rendering project templates + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}colorama>=0.4.0<1.0.0:devel/py-colorama@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}Jinja2>=2.10.0<3.0.0:devel/py-Jinja2@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}packaging>=20.1<21.0:devel/py-packaging@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pathspec>=0.7.0<0.9.0:devel/py-pathspec@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}plumbum>=1.6.0<2.0.0:sysutils/py-plumbum@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pydantic>=1.0:devel/py-pydantic@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}yaml>=5.3<6.0:devel/py-yaml@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pyyaml-include>=1.2<2.0:devel/py-pyyaml-include@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}regex>=2020.2.20<2021.0.0:textproc/py-regex@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}semver>=2.10.0<3.0.0:devel/py-semver@${PY_FLAVOR} + +USES= python:3.6+ +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +.include Added: head/devel/py-copier/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-copier/distinfo Tue May 19 05:10:42 2020 (r535807) @@ -0,0 +1,3 @@ +TIMESTAMP = 1589819001 +SHA256 (copier-3.1.0.tar.gz) = 5ccee68ea6510c617c207a64354737a3c7726fbca1de950aab3bbf87cde7b4f6 +SIZE (copier-3.1.0.tar.gz) = 33630 Added: head/devel/py-copier/files/patch-setup.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-copier/files/patch-setup.py Tue May 19 05:10:42 2020 (r535807) @@ -0,0 +1,11 @@ +--- setup.py.orig 2020-05-11 07:54:59 UTC ++++ setup.py +@@ -11,7 +11,7 @@ install_requires = \ + ['colorama>=0.4.0,<1.0.0', + 'jinja2>=2.10.0,<3.0.0', + 'packaging>=20.1,<21.0', +- 'pathspec>=0.7.0,<0.8.0', ++ 'pathspec>=0.7.0,<0.9.0', + 'plumbum>=1.6.0,<2.0.0', + 'pydantic>=1.0b1', + 'pyyaml-include>=1.2,<2.0', Added: head/devel/py-copier/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-copier/pkg-descr Tue May 19 05:10:42 2020 (r535807) @@ -0,0 +1,8 @@ +Copier is a library for rendering project templates. +- Works with local paths and git URLs. +- Your project can include any file and Copier can dynamically replace values in + any kind of text file. +- It generates a beautiful output and takes care of not overwrite existing files + unless instructed to do so. + +WWW: https://github.com/pykong/copier