Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/hglib/
Date: Fri, 27 Dec 2019 18:52:49
Message-Id: 1577472741.360125f833a03283c32ba51b98c880bbdc9e3491.soap@gentoo
1 commit: 360125f833a03283c32ba51b98c880bbdc9e3491
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Fri Dec 27 18:52:21 2019 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Fri Dec 27 18:52:21 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=360125f8
7
8 dev-python/hglib: Remove old
9
10 Package-Manager: Portage-2.3.83, Repoman-2.3.20
11 Signed-off-by: David Seifert <soap <AT> gentoo.org>
12
13 dev-python/hglib/Manifest | 1 -
14 dev-python/hglib/hglib-1.5.ebuild | 38 --------------------------------------
15 2 files changed, 39 deletions(-)
16
17 diff --git a/dev-python/hglib/Manifest b/dev-python/hglib/Manifest
18 index e3fc5539bfb..5aa80d2bd6f 100644
19 --- a/dev-python/hglib/Manifest
20 +++ b/dev-python/hglib/Manifest
21 @@ -1,2 +1 @@
22 -DIST python-hglib-1.5.tar.gz 27812 BLAKE2B 35a411f91d3e915d6679ada6ecd28798dad20a6082d74661168d15a084fb0482cba0623948fb5be38fc57a4b744a021ac10536ba75d230c493c0c1f1f7aaf8ca SHA512 2506e2ac95488830b90f5f099d231e45833a8f19ce14fc2f3391ae1bf48ca72187b6b57afb633ecbe6cd2c6f3d3f482d75e03ea36406b3a07085ed1b4ef9c6b5
23 DIST python-hglib-2.1.tar.gz 29030 BLAKE2B 3603e4030baf1f542c7c4b2123a78e3567141af8e84709eca38495ecea264f85c870005b39f8fc1bb2afc611c9a2c428971c8d783bc2595e25d83b9fcb5a2af6 SHA512 82cd00e4184a8a002ea0bcc2dec4de06a705f5f6cecd1ddbddef08ead2817f673590884aee5187fbc3496ced3f27ca8c8d78e0436fb97205ef654cd28d912e68
24
25 diff --git a/dev-python/hglib/hglib-1.5.ebuild b/dev-python/hglib/hglib-1.5.ebuild
26 deleted file mode 100644
27 index cdc81cf4c88..00000000000
28 --- a/dev-python/hglib/hglib-1.5.ebuild
29 +++ /dev/null
30 @@ -1,38 +0,0 @@
31 -# Copyright 1999-2019 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=5
35 -PYTHON_COMPAT=( python2_7 pypy )
36 -PYTHON_REQ_USE="threads(+)"
37 -
38 -MY_P="python-${P}"
39 -MY_PN="python-${PN}"
40 -
41 -inherit distutils-r1
42 -
43 -DESCRIPTION="Library for using the Mercurial Command Server from Python"
44 -HOMEPAGE="http://mercurial.selenic.com/"
45 -SRC_URI="mirror://pypi/p/${MY_PN}/${MY_P}.tar.gz"
46 -
47 -LICENSE="MIT"
48 -SLOT="0"
49 -KEYWORDS="~amd64 ~x86"
50 -IUSE="examples test"
51 -RESTRICT="!test? ( test )"
52 -
53 -RDEPEND=">=dev-vcs/mercurial-2.4.2"
54 -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
55 - test? ( dev-python/nose[${PYTHON_USEDEP}] )"
56 -
57 -S=${WORKDIR}/${MY_P}
58 -
59 -python_test() {
60 - if ! ${PYTHON} test.py; then
61 - die "Tests failed under ${EPYTHON}"
62 - fi
63 -}
64 -
65 -python_install_all() {
66 - use examples && local EXAMPLES=( examples/stats.py )
67 - distutils-r1_python_install_all
68 -}