Gentoo Archives: gentoo-commits

From: "Doug Goldstein (cardoe)" <cardoe@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/libvirt-python: metadata.xml libvirt-python-1.2.0.ebuild ChangeLog
Date: Mon, 02 Dec 2013 22:40:27
Message-Id: 20131202224024.3DA3D2004B@flycatcher.gentoo.org
1 cardoe 13/12/02 22:40:24
2
3 Added: metadata.xml libvirt-python-1.2.0.ebuild ChangeLog
4 Log:
5 Initial version of the Python bindings for libvirt that are now split from the main libvirt repo. This also allows us to build the bindings against multiple versions of Python.
6
7 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key D7DFA8D318FA9AEF!)
8
9 Revision Changes Path
10 1.1 dev-python/libvirt-python/metadata.xml
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/libvirt-python/metadata.xml?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/libvirt-python/metadata.xml?rev=1.1&content-type=text/plain
14
15 Index: metadata.xml
16 ===================================================================
17 <?xml version="1.0" encoding="UTF-8"?>
18 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
19 <pkgmetadata>
20 <herd>virtualization</herd>
21 </pkgmetadata>
22
23
24
25 1.1 dev-python/libvirt-python/libvirt-python-1.2.0.ebuild
26
27 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/libvirt-python/libvirt-python-1.2.0.ebuild?rev=1.1&view=markup
28 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/libvirt-python/libvirt-python-1.2.0.ebuild?rev=1.1&content-type=text/plain
29
30 Index: libvirt-python-1.2.0.ebuild
31 ===================================================================
32 # Copyright 1999-2013 Gentoo Foundation
33 # Distributed under the terms of the GNU General Public License v2
34 # $Header: /var/cvsroot/gentoo-x86/dev-python/libvirt-python/libvirt-python-1.2.0.ebuild,v 1.1 2013/12/02 22:40:24 cardoe Exp $
35
36 EAPI=5
37
38 #BACKPORTS=062ad8b2
39
40 PYTHON_COMPAT=( python{2_6,2_7} )
41
42 MY_P="${P/_rc/-rc}"
43
44 inherit distutils-r1
45
46 DESCRIPTION="libvirt Python bindings"
47 HOMEPAGE="http://www.libvirt.org"
48 SRC_URI="http://libvirt.org/sources/python/${MY_P}.tar.gz
49 ${BACKPORTS:+
50 http://dev.gentoo.org/~cardoe/distfiles/${MY_P}-${BACKPORTS}.tar.xz}"
51
52 LICENSE="LGPL-2"
53 SLOT="0"
54 KEYWORDS="~amd64 ~x86"
55 IUSE="test"
56
57 RDEPEND=">=app-emulation/libvirt-0.9.6:=[-python(-)]"
58 DEPEND="${RDEPEND}
59 virtual/pkgconfig
60 test? ( dev-python/lxml )"
61
62 S="${WORKDIR}/${P%_rc*}"
63
64 src_prepare() {
65 [[ -n ${BACKPORTS} ]] && \
66 EPATCH_FORCE=yes EPATCH_SUFFIX="patch" EPATCH_SOURCE="${S}/patches" \
67 epatch
68
69 distutils-r1_src_prepare
70 }
71
72 python_test() {
73 esetup.py test
74 }
75
76
77
78 1.1 dev-python/libvirt-python/ChangeLog
79
80 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/libvirt-python/ChangeLog?rev=1.1&view=markup
81 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/libvirt-python/ChangeLog?rev=1.1&content-type=text/plain
82
83 Index: ChangeLog
84 ===================================================================
85 # ChangeLog for dev-python/libvirt-python
86 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
87 # $Header: /var/cvsroot/gentoo-x86/dev-python/libvirt-python/ChangeLog,v 1.1 2013/12/02 22:40:24 cardoe Exp $
88
89 *libvirt-python-1.2.0 (02 Dec 2013)
90
91 02 Dec 2013; Doug Goldstein <cardoe@g.o> +libvirt-python-1.2.0.ebuild,
92 +metadata.xml:
93 Initial version of the Python bindings for libvirt that are now split from the
94 main libvirt repo. This also allows us to build the bindings against multiple
95 versions of Python.