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: Mon, 29 Mar 2021 07:28:24
Message-Id: 1617002896.b4f847615ce15224acca84016c57c5eae7c45af9.mgorny@gentoo
1 commit: b4f847615ce15224acca84016c57c5eae7c45af9
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Mar 29 07:00:30 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Mar 29 07:28:16 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4f84761
7
8 dev-python/marshmallow: Bump to 3.11.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.11.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 e5b73814dc4..7d5d0a601fd 100644
18 --- a/dev-python/marshmallow/Manifest
19 +++ b/dev-python/marshmallow/Manifest
20 @@ -1,2 +1,3 @@
21 DIST marshmallow-3.10.0.tar.gz 172801 BLAKE2B 1d1f5d531a9704a9b82170347e2c5dd2b3fd4488204a05f9be7705a39e5a6a42342bcce1438484c22944a6fb4470a731825314ed7ced79dbaf9cc195f049d9b2 SHA512 41520a7cfde483ca06a69e49ab04f8972932d0fbf7a6c75ef568779b55d5f2f666aead4c161e03416e9b90fba71fd73b3f14630f0d7050b8a7fe7a4bb50d5bf0
22 +DIST marshmallow-3.11.0.tar.gz 173648 BLAKE2B 66bc79b880551c106fa88dfea3c17a171db8b7516be570882e0d686af335bb8e2667782a84a8503c2f5d5d6c4f273c93160138b97a285478f15a9aea656e6d55 SHA512 a9b2a2bb8830b1b9c773921f0a7154db3dee1840f8a6cd41a74464ed0cf91f946d00ccf8df32ed875de0201df067b0a310ddfc653e48179ca32450e48fbc06cf
23 DIST marshmallow-3.5.1.tar.gz 168839 BLAKE2B 8abf8e8d45d37794c3c615f6dac8ccd0acb76357e92ddaa4c23232b7aefba63db9bd42fb7f13dd99f9ea2ec4c7608459bc36014f9344ab91894176d0f02259c9 SHA512 89b3abce9e31dad6a20cf8ceef62270c8f95cbdf80965b6d29f1728d37d51171a020463da9d0354688183ea07e3f47a0ddab8694da13fe238f11a3dc755d4d6e
24
25 diff --git a/dev-python/marshmallow/marshmallow-3.11.0.ebuild b/dev-python/marshmallow/marshmallow-3.11.0.ebuild
26 new file mode 100644
27 index 00000000000..9f52e665454
28 --- /dev/null
29 +++ b/dev-python/marshmallow/marshmallow-3.11.0.ebuild
30 @@ -0,0 +1,26 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +PYTHON_COMPAT=( python3_{7..9} )
36 +
37 +inherit distutils-r1
38 +
39 +DESCRIPTION="A library for converting to and from native Python datatypes"
40 +HOMEPAGE="https://github.com/marshmallow-code/marshmallow/"
41 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
42 +
43 +LICENSE="MIT"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~arm ~arm64 ~x86"
46 +
47 +RDEPEND="
48 + dev-python/python-dateutil[${PYTHON_USEDEP}]
49 +"
50 +BDEPEND="
51 + test? (
52 + dev-python/pytz[${PYTHON_USEDEP}]
53 + dev-python/simplejson[${PYTHON_USEDEP}]
54 + )"
55 +
56 +distutils_enable_tests pytest