Gentoo Archives: gentoo-commits

From: "Anthony G. Basile" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/marshmallow/
Date: Sun, 15 Jul 2018 00:23:40
Message-Id: 1531614210.6e465c01774203248fe78d4a6937d2dbb746f23c.blueness@gentoo
1 commit: 6e465c01774203248fe78d4a6937d2dbb746f23c
2 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jul 15 00:23:00 2018 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Sun Jul 15 00:23:30 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e465c01
7
8 dev-python/marshmallow: version bump to 3.0.0_beta12
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11
12 dev-python/marshmallow/Manifest | 1 +
13 .../marshmallow/marshmallow-3.0.0_beta12.ebuild | 35 ++++++++++++++++++++++
14 2 files changed, 36 insertions(+)
15
16 diff --git a/dev-python/marshmallow/Manifest b/dev-python/marshmallow/Manifest
17 index f860974f7fa..7c1d3abcb16 100644
18 --- a/dev-python/marshmallow/Manifest
19 +++ b/dev-python/marshmallow/Manifest
20 @@ -1 +1,2 @@
21 +DIST marshmallow-3.0.0b12.tar.gz 153870 BLAKE2B 4279bb477861cbcef219a7442ffa29cb1f5bb084b08a9812256898771560add3d8e5dbcd2348d8734c1701131e02f33c69ca17f2d1d9010712e11ada96e0374f SHA512 3155503630b2a85eeb4b04769de79346b334975ab3611695806e799a76dfca78cc3c7d490b18158c757dd15d550fa408b651fa4c69b3e5eb147c4cf38613e2ab
22 DIST marshmallow-3.0.0b8.tar.gz 148882 BLAKE2B a83e9cb2ff7d5786e5a0d5c947e578f81d7d2ab008257df195096e06031b100cd6d31bdab3df63b6ab6704268b1915827dd89f7e5fce6a638d136686fc9ebc07 SHA512 34f7a974872d0cdad828e342788269ab19194e17f30716dc8db21bc3b86ab3f1be6bd5e31c7bcbeaad7b8c70acc39eab256eb938060eff42067f5f1b3ba51c1c
23
24 diff --git a/dev-python/marshmallow/marshmallow-3.0.0_beta12.ebuild b/dev-python/marshmallow/marshmallow-3.0.0_beta12.ebuild
25 new file mode 100644
26 index 00000000000..630eff899b7
27 --- /dev/null
28 +++ b/dev-python/marshmallow/marshmallow-3.0.0_beta12.ebuild
29 @@ -0,0 +1,35 @@
30 +# Copyright 1999-2018 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
35 +
36 +inherit distutils-r1
37 +
38 +MY_P=${P/_beta/b}
39 +DESCRIPTION="A lightweight library for converting complex datatypes to and from native Python datatypes."
40 +HOMEPAGE="https://github.com/marshmallow-code/marshmallow/"
41 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz"
42 +
43 +LICENSE="MIT"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~x86"
46 +IUSE="test"
47 +
48 +RDEPEND="
49 + dev-python/python-dateutil[${PYTHON_USEDEP}]
50 +"
51 +DEPEND="${RDEPEND}
52 + dev-python/setuptools[${PYTHON_USEDEP}]
53 + test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
54 +
55 +S="${WORKDIR}/${MY_P}"
56 +
57 +src_prepare() {
58 + rm tests/test_py3/test_utils.py || die
59 + distutils-r1_src_prepare
60 +}
61 +
62 +python_test() {
63 + py.test -v || die "tests failed under ${EPYTHON}"
64 +}