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 9C568158087 for ; Sat, 29 Jan 2022 12:35:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7F6DB2BC00B; Sat, 29 Jan 2022 12:35:25 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 564112BC00C for ; Sat, 29 Jan 2022 12:35:25 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2D356342DFC for ; Sat, 29 Jan 2022 12:35:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6879F2AF for ; Sat, 29 Jan 2022 12:35:22 +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: <1643459709.2ef08fa78e9d8eca4eb022b0b9a22cde7f6a7bd1.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/dicttoxml/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/dicttoxml/dicttoxml-1.7.4-r3.ebuild X-VCS-Directories: dev-python/dicttoxml/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 2ef08fa78e9d8eca4eb022b0b9a22cde7f6a7bd1 X-VCS-Branch: master Date: Sat, 29 Jan 2022 12:35:22 +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: 9334fa3f-01f8-4c9f-b557-3eab47abf9b4 X-Archives-Hash: f7af0e960d6d13bf7c236d5cbd47cec6 commit: 2ef08fa78e9d8eca4eb022b0b9a22cde7f6a7bd1 Author: Michał Górny gentoo org> AuthorDate: Sat Jan 29 12:34:05 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Jan 29 12:35:09 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ef08fa7 dev-python/dicttoxml: Switch to PEP 517 build Signed-off-by: Michał Górny gentoo.org> dev-python/dicttoxml/dicttoxml-1.7.4-r3.ebuild | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/dev-python/dicttoxml/dicttoxml-1.7.4-r3.ebuild b/dev-python/dicttoxml/dicttoxml-1.7.4-r3.ebuild new file mode 100644 index 000000000000..5f65f5b39908 --- /dev/null +++ b/dev-python/dicttoxml/dicttoxml-1.7.4-r3.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( pypy3 python3_{8..10} ) + +inherit distutils-r1 + +DESCRIPTION="Converts a Python dictionary or other data type to a valid XML string" +HOMEPAGE="https://github.com/quandyfactory/dicttoxml https://pypi.org/project/dicttoxml/" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" + +PATCHES=( + # https://github.com/quandyfactory/dicttoxml/pull/73/files + "${FILESDIR}/${P}-py3.10.patch" +)