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 52E33139336 for ; Sun, 27 Jun 2021 23:25:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 408ADE0921; Sun, 27 Jun 2021 23:25:47 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 26182E0921 for ; Sun, 27 Jun 2021 23:25:47 +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 1C9A8335D29 for ; Sun, 27 Jun 2021 23:25:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 242D27BE for ; Sun, 27 Jun 2021 23:25:43 +0000 (UTC) From: "Alessandro Barbieri" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alessandro Barbieri" Message-ID: <1624835358.867eeadb324626609ae066965cc3122af0c34a86.Alessandro-Barbieri@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/cattrs/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/cattrs/Manifest dev-python/cattrs/cattrs-1.7.0.ebuild X-VCS-Directories: dev-python/cattrs/ X-VCS-Committer: Alessandro-Barbieri X-VCS-Committer-Name: Alessandro Barbieri X-VCS-Revision: 867eeadb324626609ae066965cc3122af0c34a86 X-VCS-Branch: dev Date: Sun, 27 Jun 2021 23:25:43 +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: 64e60c4f-f0c6-4663-9a7e-0b4cc689ad64 X-Archives-Hash: f90c2c58fd71a2a305dcd50a76d65859 commit: 867eeadb324626609ae066965cc3122af0c34a86 Author: Alessandro Barbieri gmail com> AuthorDate: Sun Jun 27 23:09:18 2021 +0000 Commit: Alessandro Barbieri gmail com> CommitDate: Sun Jun 27 23:09:18 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=867eeadb dev-python/cattrs: add 1.7.0 Signed-off-by: Alessandro Barbieri gmail.com> dev-python/cattrs/Manifest | 1 + dev-python/cattrs/cattrs-1.7.0.ebuild | 24 ++++++++++++++++++++++++ 2 files changed, 25 insertions(+) diff --git a/dev-python/cattrs/Manifest b/dev-python/cattrs/Manifest index 4b1af41a7..9deea383b 100644 --- a/dev-python/cattrs/Manifest +++ b/dev-python/cattrs/Manifest @@ -1 +1,2 @@ DIST cattrs-1.2.0.tar.gz 46656 BLAKE2B 40cc1351c910fc1026f06afc0170be93d07ec6488550e78b4334e22cf0a6e5d68031d4533ffdf8f076af53fd06c8eff71e0918095e375db3cee3713cd7ec1294 SHA512 9ab39447f9c476cc70d1be8e4827dab679e8144405cad4581da9bb723145574fe7e17fc7ef7977815f6fbb3fa4c5373b8fa33c292777ab6734efb41d6a60de80 +DIST cattrs-1.7.0.tar.gz 85690 BLAKE2B 708295907124fc2ed9c3095fb99ef3ae0ec4d80e495f1b0964185d615fbcd59c7d7f090f400d49e0c92b2e3bc952929c3feb3c35804ff600b088b8df43762a13 SHA512 a87381a65a3c14652fc04cb7f409272f3705965cb05472b849c3bb9096362eafc7fdc445ab4b51cdf5b62d049e4f00951c992f1562a8c20eef1abbfb5b8d2958 diff --git a/dev-python/cattrs/cattrs-1.7.0.ebuild b/dev-python/cattrs/cattrs-1.7.0.ebuild new file mode 100644 index 000000000..a6a19fc29 --- /dev/null +++ b/dev-python/cattrs/cattrs-1.7.0.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..9} pypy3 ) + +inherit distutils-r1 + +SRC_URI="https://github.com/Tinche/cattrs/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" +KEYWORDS="~amd64 ~x86" +DESCRIPTION="Complex custom class converters for attrs" +HOMEPAGE="https://github.com/Tinche/cattrs" +LICENSE="MIT" +SLOT="0" + +RDEPEND="dev-python/attrs[${PYTHON_USEDEP}]" +DEPEND=" + ${RDEPEND} + test? ( dev-python/hypothesis[${PYTHON_USEDEP}] ) +" + +distutils_enable_tests pytest +distutils_enable_sphinx docs