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 B72C1158086 for ; Mon, 11 Oct 2021 07:57:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 82FF6E0891; Mon, 11 Oct 2021 07:57:04 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6A4A4E0891 for ; Mon, 11 Oct 2021 07:57:04 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 425EE343472 for ; Mon, 11 Oct 2021 07:57:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6050A162 for ; Mon, 11 Oct 2021 07:56:59 +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: <1633939013.a45b5416a5c819c7943bfee7726a0cd311eb6769.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/tomli-w/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/tomli-w/Manifest dev-python/tomli-w/metadata.xml dev-python/tomli-w/tomli-w-0.3.0.ebuild X-VCS-Directories: dev-python/tomli-w/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: a45b5416a5c819c7943bfee7726a0cd311eb6769 X-VCS-Branch: master Date: Mon, 11 Oct 2021 07:56:59 +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: 24375395-e356-4d10-8eaa-a98712aadc6c X-Archives-Hash: fa21526a40717e2e534203ebc881ecde commit: a45b5416a5c819c7943bfee7726a0cd311eb6769 Author: Michał Górny gentoo org> AuthorDate: Mon Oct 11 07:08:59 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Oct 11 07:56:53 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a45b5416 dev-python/tomli-w: New package, dep of dev-python/flit Signed-off-by: Michał Górny gentoo.org> dev-python/tomli-w/Manifest | 1 + dev-python/tomli-w/metadata.xml | 12 ++++++++++++ dev-python/tomli-w/tomli-w-0.3.0.ebuild | 26 ++++++++++++++++++++++++++ 3 files changed, 39 insertions(+) diff --git a/dev-python/tomli-w/Manifest b/dev-python/tomli-w/Manifest new file mode 100644 index 00000000000..d51775295d7 --- /dev/null +++ b/dev-python/tomli-w/Manifest @@ -0,0 +1 @@ +DIST tomli-w-0.3.0.gh.tar.gz 61366 BLAKE2B 1ca3d50237d41fb22e8d506d2d8af3c5d9f690161a44439d3a79038bda7a67a6af9ad62b077169b5c2bdaee2110a3be5e3eec652aa8866a20c5841662f18a7e1 SHA512 618b93f2d98eee4fafe502e25f8770dc58558b25d9ec548fa5d0a6bdd8914e487fb1d16b68d138e0f8a48a6e5713c23e4d1a6daf70c8eafa27630fee05dfe8df diff --git a/dev-python/tomli-w/metadata.xml b/dev-python/tomli-w/metadata.xml new file mode 100644 index 00000000000..499f307591c --- /dev/null +++ b/dev-python/tomli-w/metadata.xml @@ -0,0 +1,12 @@ + + + + + python@gentoo.org + + + + hukkin/tomli-w + tomli_w + + diff --git a/dev-python/tomli-w/tomli-w-0.3.0.ebuild b/dev-python/tomli-w/tomli-w-0.3.0.ebuild new file mode 100644 index 00000000000..48aa3a6e56e --- /dev/null +++ b/dev-python/tomli-w/tomli-w-0.3.0.ebuild @@ -0,0 +1,26 @@ +# 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 writer" +HOMEPAGE=" + https://pypi.org/project/tomli_w/ + https://github.com/hukkin/tomli-w/" +SRC_URI=" + https://github.com/hukkin/tomli-w/archive/${PV}.tar.gz + -> ${P}.gh.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +BDEPEND=" + test? ( dev-python/tomli[${PYTHON_USEDEP}] )" + +distutils_enable_tests pytest