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: Mon, 28 Aug 2017 21:52:07
Message-Id: 1503957033.74f2e7c40bf6cb254da2118d311bb570363cf3e7.prometheanfire@gentoo
1 commit: 74f2e7c40bf6cb254da2118d311bb570363cf3e7
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Mon Aug 28 19:14:17 2017 +0000
4 Commit: Matt Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 28 21:50:33 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74f2e7c4
7
8 dev-python/voluptuous: 0.10.5 bup
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.3
11
12 dev-python/voluptuous/Manifest | 1 +
13 dev-python/voluptuous/voluptuous-0.10.5.ebuild | 24 ++++++++++++++++++++++++
14 2 files changed, 25 insertions(+)
15
16 diff --git a/dev-python/voluptuous/Manifest b/dev-python/voluptuous/Manifest
17 index eaecc904d3a..48f080debd6 100644
18 --- a/dev-python/voluptuous/Manifest
19 +++ b/dev-python/voluptuous/Manifest
20 @@ -1 +1,2 @@
21 +DIST voluptuous-0.10.5.tar.gz 41436 SHA256 7a7466f8dc3666a292d186d1d871a47bf2120836ccb900d5ba904674957a2396 SHA512 2024121c56a91cc3bf5102ca68f8347461b2041da9a352eade0e0ce3657d9a477a60a7a5823e8f3628eee7b327840b5c4eba13c106ea49ea91a553d6b5edd363 WHIRLPOOL 1c98847ba5331d198ef997a379ebe369931a7a19a4156dafe5b4475501724f888feab26a7cb30e5d1bda6d27c23e9f259933bf121f385f5b400deac273e9f2c0
22 DIST voluptuous-0.9.3.tar.gz 34097 SHA256 ed5a11fda273754caabb6becd5fe172ee2621cd2c8ff8279433173bb7b0ec568 SHA512 1c82f9fdca1751fb3e5fa1a0c956e40e3c5ba76623a97f38dee7511c4dac430432f8f0469e1b08d6057056905643f98cc5b19c040386eb5c897dec1940c4eb45 WHIRLPOOL 28c93db7c36af86bb92635852a2c4e0fe62a42a0eff30d2d019ca54c4541f27fa13ef611a77da0ba6d8393eaf807911d8abd62a35614c3a7b7837dc3a343c927
23
24 diff --git a/dev-python/voluptuous/voluptuous-0.10.5.ebuild b/dev-python/voluptuous/voluptuous-0.10.5.ebuild
25 new file mode 100644
26 index 00000000000..23371fd18f2
27 --- /dev/null
28 +++ b/dev-python/voluptuous/voluptuous-0.10.5.ebuild
29 @@ -0,0 +1,24 @@
30 +# Copyright 1999-2017 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
35 +
36 +inherit distutils-r1
37 +
38 +DESCRIPTION="A Python data validation library."
39 +HOMEPAGE="https://github.com/alecthomas/voluptuous"
40 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
41 +
42 +LICENSE="BSD"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~arm64 ~x86"
45 +IUSE=""
46 +
47 +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
48 +RDEPEND=""
49 +
50 +python_test() {
51 + unset PYTHONPATH
52 + nosetests -v || die "Tests failed"
53 +}