Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/marshmallow/
Date: Sun, 17 Oct 2021 21:15:28
Message-Id: 1634505308.ec28cee5847352cbc26f833d313cf9ad13c9704f.mgorny@gentoo
1 commit: ec28cee5847352cbc26f833d313cf9ad13c9704f
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Oct 17 19:48:05 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 17 21:15:08 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec28cee5
7
8 dev-python/marshmallow: Bump to 3.14.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/marshmallow/Manifest | 1 +
13 dev-python/marshmallow/marshmallow-3.14.0.ebuild | 26 ++++++++++++++++++++++++
14 2 files changed, 27 insertions(+)
15
16 diff --git a/dev-python/marshmallow/Manifest b/dev-python/marshmallow/Manifest
17 index de34178426f..9289aec0479 100644
18 --- a/dev-python/marshmallow/Manifest
19 +++ b/dev-python/marshmallow/Manifest
20 @@ -1 +1,2 @@
21 DIST marshmallow-3.13.0.tar.gz 175134 BLAKE2B fc8ffb87ba31d5bd56c7ebf655824f59c78cea257a1b59de8a97be9f380367d4db428b6f4f93f81140cccd8274fee7946e466f87f7c31b6b9d39d5bb9fba3104 SHA512 e4425bfa26609c80bc581b60be5554effe4a57eafc36338dc672cb0b42fc14d788a1ef3b4506b6429bf8d235e6edb10925173c8414b2abca12a4c7bb5496ed53
22 +DIST marshmallow-3.14.0.tar.gz 175637 BLAKE2B 003bd5ee17d4c3db63fabcd75838f5455576eb8a741a0f1daba8c629ade145593538ba15d3ecd47d5b3cce65573f4ecd765c9badb0dd077c44b6d04537a1332f SHA512 3eed3cb7ba063c6a3503091b46443c6ad96f82e6c21e7ceb047b379dddad4429e59a8e5c828be258433b2743a8231bb338ef96f21767f17ed75fe44138bb0d64
23
24 diff --git a/dev-python/marshmallow/marshmallow-3.14.0.ebuild b/dev-python/marshmallow/marshmallow-3.14.0.ebuild
25 new file mode 100644
26 index 00000000000..7d3435061f3
27 --- /dev/null
28 +++ b/dev-python/marshmallow/marshmallow-3.14.0.ebuild
29 @@ -0,0 +1,26 @@
30 +# Copyright 1999-2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +PYTHON_COMPAT=( python3_{8..10} )
36 +inherit distutils-r1
37 +
38 +DESCRIPTION="A library for converting to and from native Python datatypes"
39 +HOMEPAGE="https://github.com/marshmallow-code/marshmallow/"
40 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
41 +
42 +LICENSE="MIT"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~arm ~arm64 ~x86"
45 +
46 +RDEPEND="
47 + dev-python/python-dateutil[${PYTHON_USEDEP}]
48 +"
49 +BDEPEND="
50 + test? (
51 + dev-python/pytz[${PYTHON_USEDEP}]
52 + dev-python/simplejson[${PYTHON_USEDEP}]
53 + )"
54 +
55 +distutils_enable_tests pytest