Gentoo Archives: gentoo-commits

From: Tim Harder <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/xmltodict/
Date: Sat, 06 May 2017 22:41:11
Message-Id: 1494110358.5dac691df031ef91a218bdcebce573aa3cebff94.radhermit@gentoo
1 commit: 5dac691df031ef91a218bdcebce573aa3cebff94
2 Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
3 AuthorDate: Sat May 6 22:29:44 2017 +0000
4 Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
5 CommitDate: Sat May 6 22:39:18 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5dac691d
7
8 dev-python/xmltodict: version bump to 0.11.0
9
10 dev-python/xmltodict/Manifest | 1 +
11 dev-python/xmltodict/xmltodict-0.11.0.ebuild | 22 ++++++++++++++++++++++
12 2 files changed, 23 insertions(+)
13
14 diff --git a/dev-python/xmltodict/Manifest b/dev-python/xmltodict/Manifest
15 index c7d0b7a362b..7966627d137 100644
16 --- a/dev-python/xmltodict/Manifest
17 +++ b/dev-python/xmltodict/Manifest
18 @@ -1,2 +1,3 @@
19 DIST xmltodict-0.10.1.tar.gz 24620 SHA256 b2cab0184bbb8c3627fc54b03ed79ea2f4d5579fa041e3456ff8d3b3c09b0d5e SHA512 b2fdccf2a158256d8b2a78fdaf2c5527c6c25753da344864024fa8ef1d4e4b9a561d2802b10b668ea72af50dd41d05ca590dbf036a4b97c175b7788642ca3c63 WHIRLPOOL 4f239872ab411ec8c18c5184172e5cfa3a535ea3c86d92884e2993a57e10196925e32fd2139a76198d7cb739f0432cdf1d4fffc082b57c50946e5e4d2db21b1a
20 DIST xmltodict-0.10.2.tar.gz 24854 SHA256 fc518ccf9adbbb917a2ddcb386be852ae6dd36935e1e8b9a3e760201abfdbf77 SHA512 f734c80740b99f0ebb1c0d955094f63c5f513cf1055ac8577395f91ce1ee95dfc3712512b3e6b1f971637be9c345073a7536bd3bccd0175f191017b40a4f4537 WHIRLPOOL 441bc2fd8b6f7efe43b24aca747c1ded764025cb999f9e62da7a8934956eb0cf5616733ad9f3fb8bd7f33e7728037d0ab0ab48b61da4eb208ceaa61a66486072
21 +DIST xmltodict-0.11.0.tar.gz 26589 SHA256 8f8d7d40aa28d83f4109a7e8aa86e67a4df202d9538be40c0cb1d70da527b0df SHA512 d42ef146a40f386a5389958f890605c560ce9db2da4447099b8725edc1998339b77ea732576fc7e77fbe5a755a2dc3239dfae4a82fc6593c5f977145ab445295 WHIRLPOOL 8e21f0cd47a3ce4986173047d8120c97a8f95207a63a8479b18131da6851d239ac48772e088d24d8f16e6b1bc207fcc8e03a64f68e9de42e9ec7a55c47edce56
22
23 diff --git a/dev-python/xmltodict/xmltodict-0.11.0.ebuild b/dev-python/xmltodict/xmltodict-0.11.0.ebuild
24 new file mode 100644
25 index 00000000000..5e4278509d1
26 --- /dev/null
27 +++ b/dev-python/xmltodict/xmltodict-0.11.0.ebuild
28 @@ -0,0 +1,22 @@
29 +# Copyright 1999-2016 Gentoo Foundation
30 +# Distributed under the terms of the GNU General Public License v2
31 +
32 +EAPI=6
33 +PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy pypy3 )
34 +inherit distutils-r1
35 +
36 +DESCRIPTION="Makes working with XML feel like you are working with JSON"
37 +HOMEPAGE="https://github.com/martinblech/xmltodict/ https://pypi.python.org/pypi/xmltodict/"
38 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
39 +
40 +LICENSE="MIT"
41 +SLOT="0"
42 +KEYWORDS="~amd64 ~x86"
43 +IUSE="test"
44 +
45 +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
46 + test? ( dev-python/nose[${PYTHON_USEDEP}] )"
47 +
48 +python_test() {
49 + nosetests || die "Tests fail with ${EPYTHON}"
50 +}