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 4EFB1158020 for ; Sat, 12 Nov 2022 07:33:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A7A9BE0A6A; Sat, 12 Nov 2022 07:33:16 +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 8FCECE0A64 for ; Sat, 12 Nov 2022 07:33:16 +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 C16FD341039 for ; Sat, 12 Nov 2022 07:33:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D5ACC741 for ; Sat, 12 Nov 2022 07:33:12 +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: <1668238387.93e3ab1b1f7f8438129233c0fb26402dd889ad08.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/marshmallow/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/marshmallow/Manifest dev-python/marshmallow/marshmallow-3.19.0.ebuild X-VCS-Directories: dev-python/marshmallow/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 93e3ab1b1f7f8438129233c0fb26402dd889ad08 X-VCS-Branch: master Date: Sat, 12 Nov 2022 07:33:12 +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: d19dd036-ee6b-4324-879c-6069300c4e33 X-Archives-Hash: d2fa8bc2be3bd7900e32bc129745037d commit: 93e3ab1b1f7f8438129233c0fb26402dd889ad08 Author: Michał Górny gentoo org> AuthorDate: Sat Nov 12 06:13:42 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Nov 12 07:33:07 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93e3ab1b dev-python/marshmallow: Bump to 3.19.0 Signed-off-by: Michał Górny gentoo.org> dev-python/marshmallow/Manifest | 1 + dev-python/marshmallow/marshmallow-3.19.0.ebuild | 36 ++++++++++++++++++++++++ 2 files changed, 37 insertions(+) diff --git a/dev-python/marshmallow/Manifest b/dev-python/marshmallow/Manifest index 157e92926ed8..d25169bac89a 100644 --- a/dev-python/marshmallow/Manifest +++ b/dev-python/marshmallow/Manifest @@ -1 +1,2 @@ DIST marshmallow-3.18.0.gh.tar.gz 181535 BLAKE2B 6c808157038cf33d2906fbf2f4aa8a605adfe8301da56ba8f7df782e2970bae7f5e040aa8c9c9bda134b6e7e13d50a9bec1f8e715e06b8543742e2cd142d099d SHA512 25ee09faf93d5ae25b35089881a644cf409edbca3134ad092ad150b166604151c3474bfcd2ae07d29b066e89e67df643e65d9fece4bbad8b11af07554a0ceaf6 +DIST marshmallow-3.19.0.gh.tar.gz 182305 BLAKE2B 2e37e0dcfcab3fa080745ccf6acbaf0fc71a43edfc9227ebf1d5320c61b0f0b51a0f3ea1d75ab1b213f8464d8ac043365ddadc8d9ab4479e21eed92ce5362b4e SHA512 e908ab33703fed5a9290189aa151dfdb425668bebe89063084f10435d2030927ce001c0d34d504d19998863431ded52a7a551085b11212489495d34aadb3b9e1 diff --git a/dev-python/marshmallow/marshmallow-3.19.0.ebuild b/dev-python/marshmallow/marshmallow-3.19.0.ebuild new file mode 100644 index 000000000000..f924d3b5509e --- /dev/null +++ b/dev-python/marshmallow/marshmallow-3.19.0.ebuild @@ -0,0 +1,36 @@ +# 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..11} ) + +inherit distutils-r1 + +DESCRIPTION="A library for converting to and from native Python datatypes" +HOMEPAGE=" + https://github.com/marshmallow-code/marshmallow/ + https://pypi.org/project/marshmallow/ +" +SRC_URI=" + https://github.com/marshmallow-code/marshmallow/archive/${PV}.tar.gz + -> ${P}.gh.tar.gz +" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" + +RDEPEND=" + >=dev-python/packaging-0.17[${PYTHON_USEDEP}] + dev-python/python-dateutil[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( + dev-python/pytz[${PYTHON_USEDEP}] + dev-python/simplejson[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest