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/voluptuous/
Date: Sun, 29 Mar 2020 11:14:28
Message-Id: 1585480455.c52d2de89c218bf976f43e2cb4039593583021a8.mgorny@gentoo
1 commit: c52d2de89c218bf976f43e2cb4039593583021a8
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 29 11:12:39 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 29 11:14:15 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c52d2de8
7
8 dev-python/voluptuous: Remove redundant versions
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/voluptuous/Manifest | 1 -
13 dev-python/voluptuous/voluptuous-0.10.5.ebuild | 24 ------------------------
14 2 files changed, 25 deletions(-)
15
16 diff --git a/dev-python/voluptuous/Manifest b/dev-python/voluptuous/Manifest
17 index 0d6aee72f61..5d634b90fef 100644
18 --- a/dev-python/voluptuous/Manifest
19 +++ b/dev-python/voluptuous/Manifest
20 @@ -1,2 +1 @@
21 -DIST voluptuous-0.10.5.tar.gz 41436 BLAKE2B a768e519157ed6999a67e7c759588c4558d3e694e4c5d4a1da0567737d249664e985661b57f9f8595fd7cf5f1b0d05d511616d6d44604443b948bd414b334412 SHA512 2024121c56a91cc3bf5102ca68f8347461b2041da9a352eade0e0ce3657d9a477a60a7a5823e8f3628eee7b327840b5c4eba13c106ea49ea91a553d6b5edd363
22 DIST voluptuous-0.11.1.tar.gz 44346 BLAKE2B c0715293fbde6ce9008916d6e016d52920eda1906dc2ec292deee4b6b9f596f2d50592486b5a89df6a90e0512973e12cd69482e55f6c3a96ea0cc4b3e52bc77d SHA512 7e2f3ea122f739944a7820a536551abc45df9847a0c3daf5527eabd781b904706ea708c885d724828cfdaaac66774d2f8e7b42d3376de1c78ef2be9f535fd58f
23
24 diff --git a/dev-python/voluptuous/voluptuous-0.10.5.ebuild b/dev-python/voluptuous/voluptuous-0.10.5.ebuild
25 deleted file mode 100644
26 index 975974c507e..00000000000
27 --- a/dev-python/voluptuous/voluptuous-0.10.5.ebuild
28 +++ /dev/null
29 @@ -1,24 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -PYTHON_COMPAT=( python{2_7,3_6,3_7} )
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 -}