Gentoo Archives: gentoo-commits

From: Matthew Thode <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/lxc-python2/
Date: Mon, 08 Oct 2018 22:36:28
Message-Id: 1539038124.e6b11445b887eef7fe7db6f1d0b8193513953910.prometheanfire@gentoo
1 commit: e6b11445b887eef7fe7db6f1d0b8193513953910
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Mon Oct 8 22:35:06 2018 +0000
4 Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 8 22:35:24 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6b11445
7
8 dev-python/lxc-python2: initial add for OSA support
9
10 Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
11 Package-Manager: Portage-2.3.49, Repoman-2.3.11
12
13 dev-python/lxc-python2/Manifest | 1 +
14 dev-python/lxc-python2/lxc-python2-0.1.ebuild | 22 ++++++++++++++++++++++
15 dev-python/lxc-python2/metadata.xml | 21 +++++++++++++++++++++
16 3 files changed, 44 insertions(+)
17
18 diff --git a/dev-python/lxc-python2/Manifest b/dev-python/lxc-python2/Manifest
19 new file mode 100644
20 index 00000000000..ec5739da6ed
21 --- /dev/null
22 +++ b/dev-python/lxc-python2/Manifest
23 @@ -0,0 +1 @@
24 +DIST lxc-python2-0.1.zip 15251 BLAKE2B e9a7ef693f2cab70a626a5fb7325d2bbdd8b56356d984eebccbdc26e61abf7e55cb87df3fbc717af38ba2278de2c6d2bc40ea950f88aff43c8859b2784e17a54 SHA512 e2374373dbf0567209f028df6c8dcf66b1f06be89934824c9663104e4fed9341f2b68d89011624f87de0e4e2702affaf1f7b17987bb179d1d945c2e04f8aa1bc
25
26 diff --git a/dev-python/lxc-python2/lxc-python2-0.1.ebuild b/dev-python/lxc-python2/lxc-python2-0.1.ebuild
27 new file mode 100644
28 index 00000000000..e4044a17323
29 --- /dev/null
30 +++ b/dev-python/lxc-python2/lxc-python2-0.1.ebuild
31 @@ -0,0 +1,22 @@
32 +# Copyright 1999-2018 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +PYTHON_COMPAT=( python2_7 )
38 +
39 +inherit distutils-r1
40 +
41 +DESCRIPTION="Python bindings for LXC"
42 +HOMEPAGE="https://linuxcontainers.org/lxc/"
43 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.zip"
44 +
45 +LICENSE="LGPL-3"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~arm ~arm64 ~x86"
48 +IUSE=""
49 +
50 +RDEPEND=">=app-emulation/lxc-3.0"
51 +
52 +DEPEND="${RDEPEND}
53 + dev-python/setuptools[${PYTHON_USEDEP}]"
54
55 diff --git a/dev-python/lxc-python2/metadata.xml b/dev-python/lxc-python2/metadata.xml
56 new file mode 100644
57 index 00000000000..91254ea2063
58 --- /dev/null
59 +++ b/dev-python/lxc-python2/metadata.xml
60 @@ -0,0 +1,21 @@
61 +<?xml version="1.0" encoding="UTF-8"?>
62 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
63 +<pkgmetadata>
64 + <maintainer type="project">
65 + <email>python@g.o</email>
66 + </maintainer>
67 + <maintainer type="project">
68 + <email>virtualization@g.o</email>
69 + <name>Gentoo Virtualization Project</name>
70 + </maintainer>
71 + <maintainer type="person">
72 + <email>prometheanfire@g.o</email>
73 + <name>Matthew Thode</name>
74 + </maintainer>
75 + <longdescription lang="en">
76 + Python 2.7 binding for liblxc
77 + </longdescription>
78 + <upstream>
79 + <remote-id type="github">lxc/python2-lxc</remote-id>
80 + </upstream>
81 +</pkgmetadata>