Gentoo Archives: gentoo-commits

From: Matthias Maier <tamiko@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/libvirt-python/
Date: Wed, 27 Sep 2017 15:15:51
Message-Id: 1506525140.ed84c3e512aa1c20678857517d370931cf9cca55.tamiko@gentoo
1 commit: ed84c3e512aa1c20678857517d370931cf9cca55
2 Author: Matthias Maier <tamiko <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 27 15:04:15 2017 +0000
4 Commit: Matthias Maier <tamiko <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 27 15:12:20 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed84c3e5
7
8 dev-python/libvirt-python: drop old, bug #629462
9
10 Package-Manager: Portage-2.3.8, Repoman-2.3.3
11
12 dev-python/libvirt-python/Manifest | 1 -
13 .../libvirt-python/libvirt-python-3.3.0.ebuild | 46 ----------------------
14 2 files changed, 47 deletions(-)
15
16 diff --git a/dev-python/libvirt-python/Manifest b/dev-python/libvirt-python/Manifest
17 index f6d77b031aa..811347b817b 100644
18 --- a/dev-python/libvirt-python/Manifest
19 +++ b/dev-python/libvirt-python/Manifest
20 @@ -1,2 +1 @@
21 -DIST libvirt-python-3.3.0.tar.gz 179552 SHA256 e0bb7dcb98bef4933bb9d5e6e944388cdb002515eb9053a42447e89e4642fe57 SHA512 3d90e99abe813f2ba684c24631d8e8cd6a5b44564351ae3f0b75d426f80d046c00ed6358273b68ad751707a93666564dfecfb7fb7d93d2c27c71a344542fe793 WHIRLPOOL dab0e88aecc007f41505d20bc9886b9508cab7d19211f426cad7e2c65da720b4a236acbd3acd77bb35d7e3a98431764f5722035cc2f62c813864a76d42b8b73e
22 DIST libvirt-python-3.6.0.tar.gz 181778 SHA256 ecb9cbc8b1f33b245b04e3a937d8483584ab7a18258b217be96661343a4b1ad0 SHA512 333f991fc69b509b2eda67ee70dea39cc9d1ff36b1abb6a881296313ffebfb5ed41de8443534f19b27a70271548214fa94a12e7f59dc217492edf0bb5555ede9 WHIRLPOOL 6f13ee521713c3540e649c9c9edf6fc0427e0c4563305a42366796352fc99867bc79dd5ce61db0d7b79dc02957f8854c5664f5b5952a402c614e19264167546b
23
24 diff --git a/dev-python/libvirt-python/libvirt-python-3.3.0.ebuild b/dev-python/libvirt-python/libvirt-python-3.3.0.ebuild
25 deleted file mode 100644
26 index 7361e9b767d..00000000000
27 --- a/dev-python/libvirt-python/libvirt-python-3.3.0.ebuild
28 +++ /dev/null
29 @@ -1,46 +0,0 @@
30 -# Copyright 1999-2017 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -
35 -PYTHON_COMPAT=( python{2_7,3_4,3_5} )
36 -
37 -MY_P="${P/_rc/-rc}"
38 -
39 -inherit distutils-r1
40 -
41 -if [[ ${PV} = *9999* ]]; then
42 - inherit git-r3
43 - EGIT_REPO_URI="git://libvirt.org/libvirt-python.git"
44 - SRC_URI=""
45 - KEYWORDS="amd64 x86"
46 - RDEPEND="app-emulation/libvirt:=[-python(-)]"
47 -else
48 - SRC_URI="http://libvirt.org/sources/python/${MY_P}.tar.gz"
49 - KEYWORDS="amd64 x86"
50 - RDEPEND="app-emulation/libvirt:0/${PV}"
51 -fi
52 -S="${WORKDIR}/${P%_rc*}"
53 -
54 -DESCRIPTION="libvirt Python bindings"
55 -HOMEPAGE="https://www.libvirt.org"
56 -LICENSE="LGPL-2"
57 -SLOT="0"
58 -IUSE="examples test"
59 -
60 -DEPEND="${RDEPEND}
61 - virtual/pkgconfig
62 - test? ( dev-python/lxml[${PYTHON_USEDEP}]
63 - dev-python/nose[${PYTHON_USEDEP}] )"
64 -
65 -python_test() {
66 - esetup.py test
67 -}
68 -
69 -python_install_all() {
70 - if use examples; then
71 - dodoc -r examples
72 - docompress -x /usr/share/doc/${PF}/examples
73 - fi
74 - distutils-r1_python_install_all
75 -}