From nobody Wed Oct 13 19:20:19 2021 X-Original-To: dev-commits-ports-all@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4F9A317F1F76; Wed, 13 Oct 2021 19:20:20 +0000 (UTC) (envelope-from git@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 "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4HV2Rm08Krz4qBX; Wed, 13 Oct 2021 19:20:19 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (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 did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 763F72D53D; Wed, 13 Oct 2021 19:20:19 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 19DJKJ3n069383; Wed, 13 Oct 2021 19:20:19 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 19DJKJeH069377; Wed, 13 Oct 2021 19:20:19 GMT (envelope-from git) Date: Wed, 13 Oct 2021 19:20:19 GMT Message-Id: <202110131920.19DJKJeH069377@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Po-Chuan Hsieh Subject: git: 00ba12d36998 - main - textproc/py-tomli_w: Add py-tomli_w 0.3.0 List-Id: Commit messages for all branches of the ports repository List-Archive: https://lists.freebsd.org/archives/dev-commits-ports-all List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-dev-commits-ports-all@freebsd.org X-BeenThere: dev-commits-ports-all@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: sunpoet X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 00ba12d36998edb20bb06861fe835fcdf32dbe51 Auto-Submitted: auto-generated X-ThisMailContainsUnwantedMimeParts: N The branch main has been updated by sunpoet: URL: https://cgit.FreeBSD.org/ports/commit/?id=00ba12d36998edb20bb06861fe835fcdf32dbe51 commit 00ba12d36998edb20bb06861fe835fcdf32dbe51 Author: Po-Chuan Hsieh AuthorDate: 2021-10-13 19:10:23 +0000 Commit: Po-Chuan Hsieh CommitDate: 2021-10-13 19:10:23 +0000 textproc/py-tomli_w: Add py-tomli_w 0.3.0 Tomli-W is a Python library for writing TOML. It is a write-only counterpart to Tomli, which is a read-only TOML parser. Tomli-W is fully compatible with TOML v1.0.0. WWW: https://github.com/hukkin/tomli-w --- textproc/Makefile | 1 + textproc/py-tomli_w/Makefile | 20 ++++++++++++++++++++ textproc/py-tomli_w/distinfo | 3 +++ textproc/py-tomli_w/pkg-descr | 5 +++++ 4 files changed, 29 insertions(+) diff --git a/textproc/Makefile b/textproc/Makefile index 38e926616b46..91e1825b467b 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -1486,6 +1486,7 @@ SUBDIR += py-tinycss2 SUBDIR += py-toml SUBDIR += py-tomli + SUBDIR += py-tomli_w SUBDIR += py-tomlkit SUBDIR += py-toronado SUBDIR += py-towncrier diff --git a/textproc/py-tomli_w/Makefile b/textproc/py-tomli_w/Makefile new file mode 100644 index 000000000000..3d1eb21090db --- /dev/null +++ b/textproc/py-tomli_w/Makefile @@ -0,0 +1,20 @@ +# Created by: Po-Chuan Hsieh + +PORTNAME= tomli_w +PORTVERSION= 0.3.0 +CATEGORIES= textproc python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Lil' TOML writer + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= python:3.6+ +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +.include diff --git a/textproc/py-tomli_w/distinfo b/textproc/py-tomli_w/distinfo new file mode 100644 index 000000000000..ad78f1d47504 --- /dev/null +++ b/textproc/py-tomli_w/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1634111638 +SHA256 (tomli_w-0.3.0.tar.gz) = 207c5f05803aec5a9a578c6aca5c1bbbba9783ad88461f3e180eb8c3c3c48a4b +SIZE (tomli_w-0.3.0.tar.gz) = 5466 diff --git a/textproc/py-tomli_w/pkg-descr b/textproc/py-tomli_w/pkg-descr new file mode 100644 index 000000000000..7e556bfa01e2 --- /dev/null +++ b/textproc/py-tomli_w/pkg-descr @@ -0,0 +1,5 @@ +Tomli-W is a Python library for writing TOML. It is a write-only counterpart to +Tomli, which is a read-only TOML parser. Tomli-W is fully compatible with TOML +v1.0.0. + +WWW: https://github.com/hukkin/tomli-w