Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/vint/
Date: Mon, 26 Feb 2018 21:56:42
Message-Id: 1519681789.343d4aae20cf48775cf40fb28d54cfeb0f7499f1.monsieurp@gentoo
1 commit: 343d4aae20cf48775cf40fb28d54cfeb0f7499f1
2 Author: Ilya Tumaykin <itumaykin <AT> gmail <DOT> com>
3 AuthorDate: Mon Feb 26 16:41:54 2018 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 26 21:49:49 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=343d4aae
7
8 dev-util/vint: remove old.
9
10 Package-Manager: Portage-2.3.24, Repoman-2.3.6
11 Closes: https://github.com/gentoo/gentoo/pull/7284
12
13 dev-util/vint/Manifest | 1 -
14 dev-util/vint/vint-0.3.13-r1.ebuild | 46 -------------------------------------
15 2 files changed, 47 deletions(-)
16
17 diff --git a/dev-util/vint/Manifest b/dev-util/vint/Manifest
18 index bc55af4f183..a9bc75ea435 100644
19 --- a/dev-util/vint/Manifest
20 +++ b/dev-util/vint/Manifest
21 @@ -1,2 +1 @@
22 -DIST vint-0.3.13.tar.gz 91599 BLAKE2B 7cc9a6aca8cbd259d3ff79659c38e3d51b5f0ba75a7485872fd922543d75867fcc1689b0f7f8915e3195905b47bb0a467d9646bcb29082e9c04a1557e19b3717 SHA512 ef0b811df0250899e23e30ee4b240cf8b54e510231353ca86202661fd5f0826b9faeacc9268849e51bd6a1c71c1514498dec04a7a4ed79f00a5098811525e3d4
23 DIST vint-0.3.18.tar.gz 95865 BLAKE2B 0f7e61b720aa0998091b9b40118b199392fbf1aeace8801d683e8249179cd3d792e15b42df6d34c567c4df1830629a80e6043e87092f37dc46a0e57c6a56cf53 SHA512 1d3e04527a8f5ffae29395010a88258c1771aff2798143eff6572400eaf96323cad04353a7fcee68d9407afde5808446f515fd3d7e8e62de4bef28edf214ebdd
24
25 diff --git a/dev-util/vint/vint-0.3.13-r1.ebuild b/dev-util/vint/vint-0.3.13-r1.ebuild
26 deleted file mode 100644
27 index bcc5e5b2c5f..00000000000
28 --- a/dev-util/vint/vint-0.3.13-r1.ebuild
29 +++ /dev/null
30 @@ -1,46 +0,0 @@
31 -# Copyright 1999-2017 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -
36 -PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
37 -
38 -inherit distutils-r1
39 -
40 -DESCRIPTION="Lint tool for Vim script language"
41 -HOMEPAGE="https://github.com/Kuniwak/vint https://pypi.python.org/pypi/vim-vint/"
42 -SRC_URI="https://github.com/Kuniwak/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
43 -
44 -LICENSE="MIT"
45 -SLOT="0"
46 -KEYWORDS="amd64"
47 -IUSE="test"
48 -
49 -RDEPEND="
50 - >=dev-python/ansicolor-0.2.4[${PYTHON_USEDEP}]
51 - >=dev-python/chardet-2.3.0[${PYTHON_USEDEP}]
52 - >=dev-python/pyyaml-3.11[${PYTHON_USEDEP}]
53 - virtual/python-enum34[${PYTHON_USEDEP}]
54 - virtual/python-pathlib[${PYTHON_USEDEP}]
55 - dev-python/setuptools[${PYTHON_USEDEP}]
56 -"
57 -DEPEND="${RDEPEND}
58 - test? (
59 - >=dev-python/coverage-3.7.1[${PYTHON_USEDEP}]
60 - >=dev-python/pytest-2.6.4[${PYTHON_USEDEP}]
61 - >=dev-python/pytest-cov-1.8.1[${PYTHON_USEDEP}]
62 - $(python_gen_cond_dep '>=dev-python/mock-1.0.1[${PYTHON_USEDEP}]' python2_7)
63 - )
64 -"
65 -
66 -python_prepare_all() {
67 - distutils-r1_python_prepare_all
68 -
69 - # Don't try to use an installed vint executable.
70 - # See https://github.com/Kuniwak/vint/issues/22
71 - sed -i -e "s|'vint'|'bin/vint'|" test/acceptance/test_cli{,_vital}.py || die
72 -}
73 -
74 -python_test() {
75 - py.test -v || die "Test suite failed with ${EPYTHON}"
76 -}