From owner-svn-ports-head@freebsd.org Sun Dec 29 17:31:34 2019 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 367401E4712; Sun, 29 Dec 2019 17:31:34 +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) 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 47m7060htmz3L6X; Sun, 29 Dec 2019 17:31:34 +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 070CB1CDC6; Sun, 29 Dec 2019 17:31:34 +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 xBTHVXkF072891; Sun, 29 Dec 2019 17:31:33 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xBTHVXo1072887; Sun, 29 Dec 2019 17:31:33 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201912291731.xBTHVXo1072887@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 29 Dec 2019 17:31:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r521370 - in head/textproc: . py-tomlkit X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/textproc: . py-tomlkit X-SVN-Commit-Revision: 521370 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.29 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: Sun, 29 Dec 2019 17:31:34 -0000 Author: sunpoet Date: Sun Dec 29 17:31:32 2019 New Revision: 521370 URL: https://svnweb.freebsd.org/changeset/ports/521370 Log: Add py-tomlkit 0.5.8 TOML Kit is a 0.5.0-compliant TOML library. It includes a parser that preserves all comments, indentations, whitespace and internal element ordering, and makes them accessible and editable via an intuitive API. You can also create new TOML documents from scratch using the provided helpers. WWW: https://github.com/sdispater/tomlkit Added: head/textproc/py-tomlkit/ head/textproc/py-tomlkit/Makefile (contents, props changed) head/textproc/py-tomlkit/distinfo (contents, props changed) head/textproc/py-tomlkit/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Sun Dec 29 17:31:27 2019 (r521369) +++ head/textproc/Makefile Sun Dec 29 17:31:32 2019 (r521370) @@ -1394,6 +1394,7 @@ SUBDIR += py-tinycss SUBDIR += py-tinycss2 SUBDIR += py-toml + SUBDIR += py-tomlkit SUBDIR += py-toronado SUBDIR += py-towncrier SUBDIR += py-trans Added: head/textproc/py-tomlkit/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-tomlkit/Makefile Sun Dec 29 17:31:32 2019 (r521370) @@ -0,0 +1,30 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= tomlkit +PORTVERSION= 0.5.8 +CATEGORIES= textproc python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Style-preserving TOML library + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PY_ENUM34} \ + ${PY_TYPING} + +USES= python +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +.include + +.if ${PYTHON_REL} < 3000 +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}functools32>=3.2.3<4.0.0:devel/py-functools32@${PY_FLAVOR} +.endif + +.include Added: head/textproc/py-tomlkit/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-tomlkit/distinfo Sun Dec 29 17:31:32 2019 (r521370) @@ -0,0 +1,3 @@ +TIMESTAMP = 1577626025 +SHA256 (tomlkit-0.5.8.tar.gz) = 32c10cc16ded7e4101c79f269910658cc2a0be5913f1252121c3cd603051c269 +SIZE (tomlkit-0.5.8.tar.gz) = 66567 Added: head/textproc/py-tomlkit/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-tomlkit/pkg-descr Sun Dec 29 17:31:32 2019 (r521370) @@ -0,0 +1,9 @@ +TOML Kit is a 0.5.0-compliant TOML library. + +It includes a parser that preserves all comments, indentations, whitespace and +internal element ordering, and makes them accessible and editable via an +intuitive API. + +You can also create new TOML documents from scratch using the provided helpers. + +WWW: https://github.com/sdispater/tomlkit