From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1512743-garchives=archives.gentoo.org@lists.gentoo.org> 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 AB14515ACFC for <garchives@archives.gentoo.org>; Sat, 29 Apr 2023 06:44:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E96F5E089C; Sat, 29 Apr 2023 06:44:53 +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 D397BE089C for <gentoo-commits@lists.gentoo.org>; Sat, 29 Apr 2023 06:44:53 +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 17B8A34102F for <gentoo-commits@lists.gentoo.org>; Sat, 29 Apr 2023 06:44:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 648D9A5C for <gentoo-commits@lists.gentoo.org>; Sat, 29 Apr 2023 06:44:50 +0000 (UTC) From: "Sam James" <sam@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" <sam@gentoo.org> Message-ID: <1682750654.5badbe4ce1805a718a226902f0f3e4ccc4611a3a.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/immutabledict/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/immutabledict/Manifest dev-python/immutabledict/immutabledict-2.2.4.ebuild dev-python/immutabledict/metadata.xml X-VCS-Directories: dev-python/immutabledict/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 5badbe4ce1805a718a226902f0f3e4ccc4611a3a X-VCS-Branch: master Date: Sat, 29 Apr 2023 06:44:50 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 0683c8de-b5ec-4490-8427-684ebd166201 X-Archives-Hash: 6ff7f5e3660e40ec5272a693824798c4 commit: 5badbe4ce1805a718a226902f0f3e4ccc4611a3a Author: Petr Vaněk <arkamar <AT> atlas <DOT> cz> AuthorDate: Tue Mar 28 13:42:54 2023 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Sat Apr 29 06:44:14 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5badbe4c dev-python/immutabledict: new package, add 2.2.4 Signed-off-by: Petr Vaněk <arkamar <AT> atlas.cz> Signed-off-by: Sam James <sam <AT> gentoo.org> dev-python/immutabledict/Manifest | 1 + dev-python/immutabledict/immutabledict-2.2.4.ebuild | 20 ++++++++++++++++++++ dev-python/immutabledict/metadata.xml | 17 +++++++++++++++++ 3 files changed, 38 insertions(+) diff --git a/dev-python/immutabledict/Manifest b/dev-python/immutabledict/Manifest new file mode 100644 index 000000000000..ba6b5b55470e --- /dev/null +++ b/dev-python/immutabledict/Manifest @@ -0,0 +1 @@ +DIST immutabledict-2.2.4.tar.gz 4314 BLAKE2B fb971bd1a7f2e577131cd19d97e6eae840ad8ea4a3eda96ff54e20235202b791029e2f76b19980c54ab2679ad7147ef420e3ba237e01f5da303efa8108f218cd SHA512 436e39ac98ea9e8ad262113ef6d8ad629800adf29eda5c064e679167d57515d90165ec4a14e572281711f1a26ae0ea3f2164b6487024b20c31895f966fc0050a diff --git a/dev-python/immutabledict/immutabledict-2.2.4.ebuild b/dev-python/immutabledict/immutabledict-2.2.4.ebuild new file mode 100644 index 000000000000..e21f2f2b7c13 --- /dev/null +++ b/dev-python/immutabledict/immutabledict-2.2.4.ebuild @@ -0,0 +1,20 @@ +# Copyright 2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=poetry +PYTHON_COMPAT=( python3_{9..11} ) +inherit distutils-r1 pypi + +DESCRIPTION="An immutable wrapper around dictionaries" +HOMEPAGE=" + https://github.com/corenting/immutabledict/ + https://pypi.org/project/immutabledict/ +" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +distutils_enable_tests pytest diff --git a/dev-python/immutabledict/metadata.xml b/dev-python/immutabledict/metadata.xml new file mode 100644 index 000000000000..277f4c5adc7f --- /dev/null +++ b/dev-python/immutabledict/metadata.xml @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person" proxied="yes"> + <email>arkamar@atlas.cz</email> + <name>Petr Vaněk</name> + </maintainer> + <maintainer type="project" proxied="proxy"> + <email>proxy-maint@gentoo.org</email> + <name>Proxy Maintainers</name> + </maintainer> + <stabilize-allarches/> + <upstream> + <remote-id type="github">corenting/immutabledict</remote-id> + <remote-id type="pypi">immutabledict</remote-id> + </upstream> +</pkgmetadata>