From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1E47A139345 for ; Sat, 17 Jul 2021 07:03:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6663FE0D6B; Sat, 17 Jul 2021 07:03:52 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4E0E3E0D6B for ; Sat, 17 Jul 2021 07:03:52 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5EFBE342BE3 for ; Sat, 17 Jul 2021 07:03:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8C50B7DA for ; Sat, 17 Jul 2021 07:03:48 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1626505424.4932df62ec2ab9fac59ff2627e734be0ea36636d.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/tomli/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/tomli/Manifest dev-python/tomli/metadata.xml dev-python/tomli/tomli-1.0.4.ebuild X-VCS-Directories: dev-python/tomli/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 4932df62ec2ab9fac59ff2627e734be0ea36636d X-VCS-Branch: master Date: Sat, 17 Jul 2021 07:03:48 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: a3245ab3-8fcc-426f-978a-6578839ffdbf X-Archives-Hash: bcf4f7ebaf4b47eec65125ae777c2f0b commit: 4932df62ec2ab9fac59ff2627e734be0ea36636d Author: Michał Górny gentoo org> AuthorDate: Sat Jul 17 06:51:59 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Jul 17 07:03:44 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4932df62 dev-python/tomli: New NIH toml parser for dev-python/black Signed-off-by: Michał Górny gentoo.org> dev-python/tomli/Manifest | 1 + dev-python/tomli/metadata.xml | 11 +++++++++++ dev-python/tomli/tomli-1.0.4.ebuild | 25 +++++++++++++++++++++++++ 3 files changed, 37 insertions(+) diff --git a/dev-python/tomli/Manifest b/dev-python/tomli/Manifest new file mode 100644 index 00000000000..76649fa27b6 --- /dev/null +++ b/dev-python/tomli/Manifest @@ -0,0 +1 @@ +DIST tomli-1.0.4.gh.tar.gz 120508 BLAKE2B bd75568315b405598578b395ec0e20b7f37e9ceee58f145cda8adaf58a3fa549cd35902650f5b2aa84b764ab32eac8a21d3ffd94c0c4c43eab3c3a0b49203a71 SHA512 e30e06ea805c94359596c3d6db82464ccafcdde0172cae12d62c889c70986159b3198cf465183854bef1b048c21e487c2b0dad2825e2477d363885e749b238ee diff --git a/dev-python/tomli/metadata.xml b/dev-python/tomli/metadata.xml new file mode 100644 index 00000000000..8a278aa4b56 --- /dev/null +++ b/dev-python/tomli/metadata.xml @@ -0,0 +1,11 @@ + + + + + python@gentoo.org + + + hukkin/tomli + tomli + + diff --git a/dev-python/tomli/tomli-1.0.4.ebuild b/dev-python/tomli/tomli-1.0.4.ebuild new file mode 100644 index 00000000000..770d80a88e1 --- /dev/null +++ b/dev-python/tomli/tomli-1.0.4.ebuild @@ -0,0 +1,25 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_SETUPTOOLS=pyproject.toml +PYTHON_COMPAT=( python3_{8..10} pypy3 ) +inherit distutils-r1 + +DESCRIPTION="A lil' TOML parser" +HOMEPAGE=" + https://pypi.org/project/tomli/ + https://github.com/hukkin/tomli/" +SRC_URI=" + https://github.com/hukkin/tomli/archive/${PV}.tar.gz + -> ${P}.gh.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +BDEPEND=" + test? ( dev-python/python-dateutil[${PYTHON_USEDEP}] )" + +distutils_enable_tests pytest