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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3FBF9158099 for ; Tue, 21 Nov 2023 19:05:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CB7FB2BC044; Tue, 21 Nov 2023 19:05:09 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 908A72BC043 for ; Tue, 21 Nov 2023 19:05:09 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D6415335D91 for ; Tue, 21 Nov 2023 19:05:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5144213B9 for ; Tue, 21 Nov 2023 19:05:05 +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: <1700593498.c81f6e3182a3aa1bdaac2331c639f77262ee929f.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/expandvars/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/expandvars/Manifest dev-python/expandvars/expandvars-0.11.0.ebuild dev-python/expandvars/metadata.xml X-VCS-Directories: dev-python/expandvars/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: c81f6e3182a3aa1bdaac2331c639f77262ee929f X-VCS-Branch: master Date: Tue, 21 Nov 2023 19:05:05 +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: 46dccdfd-0740-46aa-8395-29693b8837cf X-Archives-Hash: eec43d8589996670240f9f3ca11c9a01 commit: c81f6e3182a3aa1bdaac2331c639f77262ee929f Author: Michał Górny gentoo org> AuthorDate: Tue Nov 21 16:56:56 2023 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Nov 21 19:04:58 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c81f6e31 dev-python/expandvars: New package, v0.11.0 New build-time dependency of homemade build backend in dev-python/yarl. Signed-off-by: Michał Górny gentoo.org> dev-python/expandvars/Manifest | 1 + dev-python/expandvars/expandvars-0.11.0.ebuild | 41 ++++++++++++++++++++++++++ dev-python/expandvars/metadata.xml | 12 ++++++++ 3 files changed, 54 insertions(+) diff --git a/dev-python/expandvars/Manifest b/dev-python/expandvars/Manifest new file mode 100644 index 000000000000..daa32f23ac2c --- /dev/null +++ b/dev-python/expandvars/Manifest @@ -0,0 +1 @@ +DIST expandvars-0.11.0.gh.tar.gz 10663 BLAKE2B cfbcb8bedc61cc8b1e88d4774784518e15846f7ea5ddbf58bd016ea2043dd5b1c9e55af117f6482e05e9ae4ba07e01d0fb471a72719f38191f1a29a9f66387a9 SHA512 e8de6544f2d369728e35c8b862662f348f46673f836f8b14dbdcfdc3dbcb7efda80deb55f8bcd597037ac974752e2463d429ddda3b8502fe19c402c253babf7f diff --git a/dev-python/expandvars/expandvars-0.11.0.ebuild b/dev-python/expandvars/expandvars-0.11.0.ebuild new file mode 100644 index 000000000000..6936e00222b6 --- /dev/null +++ b/dev-python/expandvars/expandvars-0.11.0.ebuild @@ -0,0 +1,41 @@ +# Copyright 2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=poetry +PYTHON_COMPAT=( pypy3 python3_{10..12} ) + +inherit distutils-r1 + +DESCRIPTION="Expand system variables Unix style" +HOMEPAGE=" + https://github.com/sayanarijit/expandvars/ + https://pypi.org/project/expandvars/ +" +SRC_URI=" + https://github.com/sayanarijit/expandvars/archive/v${PV}.tar.gz + -> ${P}.gh.tar.gz +" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +distutils_enable_tests pytest + +EPYTEST_DESELECT=( + # requires toml, useless + tests/test_expandvars.py::test_version +) + +src_prepare() { + # sigh + cat >> pyproject.toml <<-EOF || die + [build-system] + requires = ["poetry-core"] + build-backend = "poetry.core.masonry.api" + EOF + + distutils-r1_src_prepare +} diff --git a/dev-python/expandvars/metadata.xml b/dev-python/expandvars/metadata.xml new file mode 100644 index 000000000000..d66a900919de --- /dev/null +++ b/dev-python/expandvars/metadata.xml @@ -0,0 +1,12 @@ + + + + + python@gentoo.org + + + + sayanarijit/expandvars + expandvars + +