Gentoo Archives: gentoo-commits

From: Matt Thode <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/voluptuous/
Date: Thu, 29 Mar 2018 15:55:02
Message-Id: 1522338862.89e514ba7beecfb5cc394f5e46833d71ebcd8584.prometheanfire@gentoo
1 commit: 89e514ba7beecfb5cc394f5e46833d71ebcd8584
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Thu Mar 29 15:54:22 2018 +0000
4 Commit: Matt Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 29 15:54:22 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89e514ba
7
8 dev-python/voluptuous: 0.11.1 bup
9
10 Closes: https://bugs.gentoo.org/651916
11 Package-Manager: Portage-2.3.26, Repoman-2.3.7
12
13 dev-python/voluptuous/Manifest | 1 +
14 dev-python/voluptuous/voluptuous-0.11.1.ebuild | 24 ++++++++++++++++++++++++
15 2 files changed, 25 insertions(+)
16
17 diff --git a/dev-python/voluptuous/Manifest b/dev-python/voluptuous/Manifest
18 index 03bad7d2660..84d8e1a5221 100644
19 --- a/dev-python/voluptuous/Manifest
20 +++ b/dev-python/voluptuous/Manifest
21 @@ -1,2 +1,3 @@
22 DIST voluptuous-0.10.5.tar.gz 41436 BLAKE2B a768e519157ed6999a67e7c759588c4558d3e694e4c5d4a1da0567737d249664e985661b57f9f8595fd7cf5f1b0d05d511616d6d44604443b948bd414b334412 SHA512 2024121c56a91cc3bf5102ca68f8347461b2041da9a352eade0e0ce3657d9a477a60a7a5823e8f3628eee7b327840b5c4eba13c106ea49ea91a553d6b5edd363
23 +DIST voluptuous-0.11.1.tar.gz 44346 BLAKE2B c0715293fbde6ce9008916d6e016d52920eda1906dc2ec292deee4b6b9f596f2d50592486b5a89df6a90e0512973e12cd69482e55f6c3a96ea0cc4b3e52bc77d SHA512 7e2f3ea122f739944a7820a536551abc45df9847a0c3daf5527eabd781b904706ea708c885d724828cfdaaac66774d2f8e7b42d3376de1c78ef2be9f535fd58f
24 DIST voluptuous-0.9.3.tar.gz 34097 BLAKE2B 801e11f3318ca091909a0b9fd6085bbbf2d85e6a492bfe957868a8efccf98eb1f705aff8beacd8189381d814f20b1a34cc783098ada17b27794ec663c627a995 SHA512 1c82f9fdca1751fb3e5fa1a0c956e40e3c5ba76623a97f38dee7511c4dac430432f8f0469e1b08d6057056905643f98cc5b19c040386eb5c897dec1940c4eb45
25
26 diff --git a/dev-python/voluptuous/voluptuous-0.11.1.ebuild b/dev-python/voluptuous/voluptuous-0.11.1.ebuild
27 new file mode 100644
28 index 00000000000..3b1c08000c5
29 --- /dev/null
30 +++ b/dev-python/voluptuous/voluptuous-0.11.1.ebuild
31 @@ -0,0 +1,24 @@
32 +# Copyright 1999-2018 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=6
36 +PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="A Python data validation library."
41 +HOMEPAGE="https://github.com/alecthomas/voluptuous"
42 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
43 +
44 +LICENSE="BSD"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~arm64 ~x86"
47 +IUSE=""
48 +
49 +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
50 +RDEPEND=""
51 +
52 +python_test() {
53 + unset PYTHONPATH
54 + nosetests -v || die "Tests failed"
55 +}