From owner-dev-commits-ports-main@freebsd.org Wed Jul 21 18:13:19 2021 Return-Path: Delivered-To: dev-commits-ports-main@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 C5813668F58; Wed, 21 Jul 2021 18:13:19 +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 4GVNxC5HKGz4R83; Wed, 21 Jul 2021 18:13: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 9EE5F22D87; Wed, 21 Jul 2021 18:13: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 16LIDJm5042886; Wed, 21 Jul 2021 18:13:19 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 16LIDJB5042885; Wed, 21 Jul 2021 18:13:19 GMT (envelope-from git) Date: Wed, 21 Jul 2021 18:13:19 GMT Message-Id: <202107211813.16LIDJB5042885@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: 9e294e3c808a - main - textproc/py-tomli: Add py-tomli 1.0.4 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: 9e294e3c808a5ca331d9bee55f5d4f588c84a8ba Auto-Submitted: auto-generated X-BeenThere: dev-commits-ports-main@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commits to the main branch of the FreeBSD ports repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jul 2021 18:13:19 -0000 The branch main has been updated by sunpoet: URL: https://cgit.FreeBSD.org/ports/commit/?id=9e294e3c808a5ca331d9bee55f5d4f588c84a8ba commit 9e294e3c808a5ca331d9bee55f5d4f588c84a8ba Author: Po-Chuan Hsieh AuthorDate: 2021-07-21 17:11:52 +0000 Commit: Po-Chuan Hsieh CommitDate: 2021-07-21 18:11:51 +0000 textproc/py-tomli: Add py-tomli 1.0.4 Tomli is a Python library for parsing TOML. Tomli is fully compatible with TOML v1.0.0. WWW: https://github.com/hukkin/tomli --- textproc/Makefile | 1 + textproc/py-tomli/Makefile | 20 ++++++++++++++++++++ textproc/py-tomli/distinfo | 3 +++ textproc/py-tomli/pkg-descr | 4 ++++ 4 files changed, 28 insertions(+) diff --git a/textproc/Makefile b/textproc/Makefile index f5bd81e1096a..8a40efcec192 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -1466,6 +1466,7 @@ SUBDIR += py-tinycss SUBDIR += py-tinycss2 SUBDIR += py-toml + SUBDIR += py-tomli SUBDIR += py-tomlkit SUBDIR += py-toronado SUBDIR += py-towncrier diff --git a/textproc/py-tomli/Makefile b/textproc/py-tomli/Makefile new file mode 100644 index 000000000000..cadf1018a89a --- /dev/null +++ b/textproc/py-tomli/Makefile @@ -0,0 +1,20 @@ +# Created by: Po-Chuan Hsieh + +PORTNAME= tomli +PORTVERSION= 1.0.4 +CATEGORIES= textproc python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Lil' TOML parser + +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/distinfo b/textproc/py-tomli/distinfo new file mode 100644 index 000000000000..035594857117 --- /dev/null +++ b/textproc/py-tomli/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1626714600 +SHA256 (tomli-1.0.4.tar.gz) = be670d0d8d7570fd0ea0113bd7bb1ba3ac6706b4de062cc4c952769355c9c268 +SIZE (tomli-1.0.4.tar.gz) = 11684 diff --git a/textproc/py-tomli/pkg-descr b/textproc/py-tomli/pkg-descr new file mode 100644 index 000000000000..2b19dcefcb30 --- /dev/null +++ b/textproc/py-tomli/pkg-descr @@ -0,0 +1,4 @@ +Tomli is a Python library for parsing TOML. Tomli is fully compatible with TOML +v1.0.0. + +WWW: https://github.com/hukkin/tomli