Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id 297331A9239 for ; Tue, 11 Jan 2022 19:17:25 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 5E03184EAC; Tue, 11 Jan 2022 19:17:24 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 98A2084EA7 for ; Tue, 11 Jan 2022 19:17:23 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id HiJHaPY_7B8g for ; Tue, 11 Jan 2022 19:17:22 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id BCEC684CFC for ; Tue, 11 Jan 2022 19:17:22 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id B083EFB24; Tue, 11 Jan 2022 19:17:22 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1641928642237790" MIME-Version: 1.0 Date: Tue, 11 Jan 2022 19:17:22 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/textproc To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20220111191722.B083EFB24@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1641928642237790 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Tue Jan 11 19:17:22 UTC 2022 Modified Files: pkgsrc/textproc: Makefile Added Files: pkgsrc/textproc/py-tomlkit: DESCR Makefile PLIST distinfo Log Message: py-tomlkit: added version 0.8.0 TOML Kit is a 1.0.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. To generate a diff of this commit: cvs rdiff -u -r1.1267 -r1.1268 pkgsrc/textproc/Makefile cvs rdiff -u -r0 -r1.1 pkgsrc/textproc/py-tomlkit/DESCR \ pkgsrc/textproc/py-tomlkit/Makefile pkgsrc/textproc/py-tomlkit/PLIST \ pkgsrc/textproc/py-tomlkit/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1641928642237790 Content-Disposition: inline Content-Length: 4298 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/textproc/Makefile diff -u pkgsrc/textproc/Makefile:1.1267 pkgsrc/textproc/Makefile:1.1268 --- pkgsrc/textproc/Makefile:1.1267 Tue Jan 11 19:09:24 2022 +++ pkgsrc/textproc/Makefile Tue Jan 11 19:17:22 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1267 2022/01/11 19:09:24 adam Exp $ +# $NetBSD: Makefile,v 1.1268 2022/01/11 19:17:22 adam Exp $ # COMMENT= Text processing utilities (does not include desktop publishing) @@ -1107,6 +1107,7 @@ SUBDIR+= py-tinycss2 SUBDIR+= py-toml SUBDIR+= py-tomli SUBDIR+= py-tomli_w +SUBDIR+= py-tomlkit SUBDIR+= py-ujson SUBDIR+= py-uritemplate SUBDIR+= py-validators Added files: Index: pkgsrc/textproc/py-tomlkit/DESCR diff -u /dev/null pkgsrc/textproc/py-tomlkit/DESCR:1.1 --- /dev/null Tue Jan 11 19:17:22 2022 +++ pkgsrc/textproc/py-tomlkit/DESCR Tue Jan 11 19:17:22 2022 @@ -0,0 +1,4 @@ +TOML Kit is a 1.0.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. Index: pkgsrc/textproc/py-tomlkit/Makefile diff -u /dev/null pkgsrc/textproc/py-tomlkit/Makefile:1.1 --- /dev/null Tue Jan 11 19:17:22 2022 +++ pkgsrc/textproc/py-tomlkit/Makefile Tue Jan 11 19:17:22 2022 @@ -0,0 +1,23 @@ +# $NetBSD: Makefile,v 1.1 2022/01/11 19:17:22 adam Exp $ + +DISTNAME= tomlkit-0.8.0 +PKGNAME= ${PYPKGPREFIX}-${DISTNAME} +CATEGORIES= textproc python +MASTER_SITES= ${MASTER_SITE_PYPI:=t/tomlkit/} + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= https://github.com/sdispater/tomlkit +COMMENT= Style preserving TOML library +LICENSE= mit + +TEST_DEPENDS+= ${PYPKGPREFIX}-test>=6.0:../../devel/py-test + +USE_LANGUAGES= # none + +PYTHON_VERSIONS_INCOMPATIBLE= 27 + +do-test: + cd ${WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYVERSSUFFIX} tests + +.include "../../lang/python/egg.mk" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/textproc/py-tomlkit/PLIST diff -u /dev/null pkgsrc/textproc/py-tomlkit/PLIST:1.1 --- /dev/null Tue Jan 11 19:17:22 2022 +++ pkgsrc/textproc/py-tomlkit/PLIST Tue Jan 11 19:17:22 2022 @@ -0,0 +1,42 @@ +@comment $NetBSD: PLIST,v 1.1 2022/01/11 19:17:22 adam Exp $ +${PYSITELIB}/${EGG_INFODIR}/PKG-INFO +${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt +${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt +${PYSITELIB}/${EGG_INFODIR}/top_level.txt +${PYSITELIB}/tomlkit/__init__.py +${PYSITELIB}/tomlkit/__init__.pyc +${PYSITELIB}/tomlkit/__init__.pyo +${PYSITELIB}/tomlkit/_compat.py +${PYSITELIB}/tomlkit/_compat.pyc +${PYSITELIB}/tomlkit/_compat.pyo +${PYSITELIB}/tomlkit/_utils.py +${PYSITELIB}/tomlkit/_utils.pyc +${PYSITELIB}/tomlkit/_utils.pyo +${PYSITELIB}/tomlkit/api.py +${PYSITELIB}/tomlkit/api.pyc +${PYSITELIB}/tomlkit/api.pyo +${PYSITELIB}/tomlkit/container.py +${PYSITELIB}/tomlkit/container.pyc +${PYSITELIB}/tomlkit/container.pyo +${PYSITELIB}/tomlkit/exceptions.py +${PYSITELIB}/tomlkit/exceptions.pyc +${PYSITELIB}/tomlkit/exceptions.pyo +${PYSITELIB}/tomlkit/items.py +${PYSITELIB}/tomlkit/items.pyc +${PYSITELIB}/tomlkit/items.pyo +${PYSITELIB}/tomlkit/parser.py +${PYSITELIB}/tomlkit/parser.pyc +${PYSITELIB}/tomlkit/parser.pyo +${PYSITELIB}/tomlkit/py.typed +${PYSITELIB}/tomlkit/source.py +${PYSITELIB}/tomlkit/source.pyc +${PYSITELIB}/tomlkit/source.pyo +${PYSITELIB}/tomlkit/toml_char.py +${PYSITELIB}/tomlkit/toml_char.pyc +${PYSITELIB}/tomlkit/toml_char.pyo +${PYSITELIB}/tomlkit/toml_document.py +${PYSITELIB}/tomlkit/toml_document.pyc +${PYSITELIB}/tomlkit/toml_document.pyo +${PYSITELIB}/tomlkit/toml_file.py +${PYSITELIB}/tomlkit/toml_file.pyc +${PYSITELIB}/tomlkit/toml_file.pyo Index: pkgsrc/textproc/py-tomlkit/distinfo diff -u /dev/null pkgsrc/textproc/py-tomlkit/distinfo:1.1 --- /dev/null Tue Jan 11 19:17:22 2022 +++ pkgsrc/textproc/py-tomlkit/distinfo Tue Jan 11 19:17:22 2022 @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1 2022/01/11 19:17:22 adam Exp $ + +BLAKE2s (tomlkit-0.8.0.tar.gz) = 0d8c9dd5f649b7266e1ff76c19d2e3733417508b69eb1a3bdc4b94a6bbf9269d +SHA512 (tomlkit-0.8.0.tar.gz) = 77b267201021e740d8134d0d5edfbef2cf077adac0b320d80887fdedda3f63f74df1957e8230976f16c80fcc58fd4cfabb195cccf0eda7d6cd29f5f65d362147 +Size (tomlkit-0.8.0.tar.gz) = 179067 bytes --_----------=_1641928642237790--