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/ipy/
Date: Fri, 26 Feb 2021 08:30:27
Message-Id: 1614328185.d1eb9e7a472695ac96f091cf334dd06e4f849d79.mgorny@gentoo
1 commit: d1eb9e7a472695ac96f091cf334dd06e4f849d79
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Feb 26 08:27:46 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Feb 26 08:29:45 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1eb9e7a
7
8 dev-python/ipy: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/ipy/Manifest | 1 -
13 dev-python/ipy/ipy-1.00.ebuild | 45 ------------------------------------------
14 2 files changed, 46 deletions(-)
15
16 diff --git a/dev-python/ipy/Manifest b/dev-python/ipy/Manifest
17 index 567fb54e50b..23bdf7c8ec7 100644
18 --- a/dev-python/ipy/Manifest
19 +++ b/dev-python/ipy/Manifest
20 @@ -1,2 +1 @@
21 -DIST IPy-1.00.tar.gz 35324 BLAKE2B a0e04201a59c61e5cc8f7ce2837c83dded99d0d786406e2e341183a0903d43ed5496ae8ea05d1bee019007bfef7420be623ab3dc08cce33812f1720a59ca413d SHA512 94a8f26cad0d966fdf8d4e57284eadf4cfde88515af6f5aafc8f9597eb0758324b876039d1a121021ba1ac26be2e2ffa89a3f5803dddefdee03fdb5d65b07a81
22 DIST IPy-1.01.tar.gz 33641 BLAKE2B 10d5ac5c3df00a562393ee762e9ad0f458ecf4745f894ab23e686b7112842adcbb3f25064c0010630745273fa72280ba5ef92a951d687d0f46f341acd6c041ad SHA512 f0983254523025a1819d543877d9651fb6a9e39dabd3b043488495f681b02e43b544a0121658a0430a418a1c39b360a59db1699af87a75a16a2bdc29fcb2b74c
23
24 diff --git a/dev-python/ipy/ipy-1.00.ebuild b/dev-python/ipy/ipy-1.00.ebuild
25 deleted file mode 100644
26 index 8a8a3fc8743..00000000000
27 --- a/dev-python/ipy/ipy-1.00.ebuild
28 +++ /dev/null
29 @@ -1,45 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI="7"
34 -
35 -PYTHON_COMPAT=( python{3_7,3_8} )
36 -
37 -inherit distutils-r1
38 -
39 -MY_PN="IPy"
40 -MY_P="${MY_PN}-${PV}"
41 -
42 -DESCRIPTION="Class and tools for handling of IPv4 and IPv6 addresses and networks"
43 -HOMEPAGE="https://github.com/autocracy/python-ipy/wiki https://pypi.org/project/IPy/"
44 -SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
45 -
46 -LICENSE="BSD"
47 -SLOT="0"
48 -KEYWORDS="amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~sparc x86"
49 -IUSE="examples"
50 -
51 -BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
52 -DEPEND=""
53 -RDEPEND=""
54 -
55 -S="${WORKDIR}/${MY_PN}-${PV}"
56 -
57 -python_test() {
58 - # 1 test fail under pypy, persistent from 0.82a, not a regression.
59 - cp -r test_doc.py README.rst test "${BUILD_DIR}" || die
60 - pushd "${BUILD_DIR}" > /dev/null || die
61 - "${PYTHON}" test/test_IPy.py || die "Tests fail with ${EPYTHON}"
62 - "${PYTHON}" test_doc.py || die "Doctests fail with ${EPYTHON}"
63 - popd > /dev/null || die
64 -}
65 -
66 -python_install_all() {
67 - if use examples; then
68 - docinto examples
69 - dodoc -r example/.
70 - docompress -x /usr/share/doc/${PF}/examples
71 - fi
72 -
73 - distutils-r1_python_install_all
74 -}