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 B87E5158092 for ; Wed, 8 Jun 2022 05:14:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 28F48E0895; Wed, 8 Jun 2022 05:14:23 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id F2FA8E0895 for ; Wed, 8 Jun 2022 05:14:22 +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 885D3340FBC for ; Wed, 8 Jun 2022 05:14:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CE13250C for ; Wed, 8 Jun 2022 05:14:14 +0000 (UTC) From: "Theo Anderson" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Theo Anderson" Message-ID: <1654665225.0c96f959f505ca1336bd8c8d50e01ed13cb1e060.telans@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/dataclasses_json/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/dataclasses_json/Manifest dev-python/dataclasses_json/dataclasses_json-0.5.7.ebuild dev-python/dataclasses_json/metadata.xml X-VCS-Directories: dev-python/dataclasses_json/ X-VCS-Committer: telans X-VCS-Committer-Name: Theo Anderson X-VCS-Revision: 0c96f959f505ca1336bd8c8d50e01ed13cb1e060 X-VCS-Branch: dev Date: Wed, 8 Jun 2022 05:14:14 +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: 2439feb4-6d0f-4653-9c20-49fcd8231bf8 X-Archives-Hash: 80a0f75b89a8351eb1b51db9b570e937 commit: 0c96f959f505ca1336bd8c8d50e01ed13cb1e060 Author: James Beddek posteo de> AuthorDate: Wed Jun 8 05:06:48 2022 +0000 Commit: Theo Anderson posteo de> CommitDate: Wed Jun 8 05:13:45 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0c96f959 dev-python/dataclasses_json: new package, add 0.5.7 Signed-off-by: James Beddek posteo.de> dev-python/dataclasses_json/Manifest | 1 + .../dataclasses_json/dataclasses_json-0.5.7.ebuild | 40 ++++++++++++++++++++++ dev-python/dataclasses_json/metadata.xml | 8 +++++ 3 files changed, 49 insertions(+) diff --git a/dev-python/dataclasses_json/Manifest b/dev-python/dataclasses_json/Manifest new file mode 100644 index 000000000..88c0c1793 --- /dev/null +++ b/dev-python/dataclasses_json/Manifest @@ -0,0 +1 @@ +DIST dataclasses_json-0.5.7.tar.gz 39291 BLAKE2B eded21a6da89e1a8785c38cd7facc3e273154a31f34daf99dc0681891bf44cc0f34fc7ab69021cf04052e82a5bd66058b826609ca3ebfc1d75f40720b0b9ce6b SHA512 2dad73f55e0f33d1f9557e1ed3d41cf237204631c044027c41d37cd2e968da003f77e80c9a06db651e689413cbfd7f85eec1b70b02acf0a32f8337c4abb75f7b diff --git a/dev-python/dataclasses_json/dataclasses_json-0.5.7.ebuild b/dev-python/dataclasses_json/dataclasses_json-0.5.7.ebuild new file mode 100644 index 000000000..7e025332c --- /dev/null +++ b/dev-python/dataclasses_json/dataclasses_json-0.5.7.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..10} ) + +inherit distutils-r1 + +DESCRIPTION="Easily serialize Data Classes to and from JSON" +HOMEPAGE="https://github.com/lidatong/dataclasses-json" +SRC_URI="https://github.com/lidatong/dataclasses-json/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${P/_/-}" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + >=dev-python/marshmallow-3.3.0[${PYTHON_USEDEP}] + >=dev-python/marshmallow_enum-1.5.1[${PYTHON_USEDEP}] + >=dev-python/typing_inspect-0.4.0[${PYTHON_USEDEP}] +" +DEPEND=" + ${RDEPEND} + test? ( + dev-python/hypothesis[${PYTHON_USEDEP}] + >=dev-python/mypy-0.710[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest + +src_prepare() { + sed -i '/scripts/d' setup.py || die + distutils-r1_src_prepare +} diff --git a/dev-python/dataclasses_json/metadata.xml b/dev-python/dataclasses_json/metadata.xml new file mode 100644 index 000000000..2924f0387 --- /dev/null +++ b/dev-python/dataclasses_json/metadata.xml @@ -0,0 +1,8 @@ + + + + + telans@posteo.de + James Beddek + +