Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 29 Dec 2019 17:31:33 +0000 (UTC)
From:      Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r521370 - in head/textproc: . py-tomlkit
Message-ID:  <201912291731.xBTHVXo1072887@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <sunpoet@FreeBSD.org>
+# $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 <bsd.port.pre.mk>
+
+.if ${PYTHON_REL} < 3000
+RUN_DEPENDS+=	${PYTHON_PKGNAMEPREFIX}functools32>=3.2.3<4.0.0:devel/py-functools32@${PY_FLAVOR}
+.endif
+
+.include <bsd.port.post.mk>

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



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