Gentoo Archives: gentoo-commits

From: Patrick McLean <chutzpah@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/llfuse/
Date: Thu, 03 Mar 2016 18:29:22
Message-Id: 1457029688.41c3e098f278f9906324e32dae08ff7ec2cb2a26.chutzpah@gentoo
1 commit: 41c3e098f278f9906324e32dae08ff7ec2cb2a26
2 Author: Patrick McLean <chutzpah <AT> gentoo <DOT> org>
3 AuthorDate: Thu Mar 3 18:28:08 2016 +0000
4 Commit: Patrick McLean <chutzpah <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 3 18:28:08 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41c3e098
7
8 dev-python/llfuse: revision bump, add RDEPEND on dev-python/contextlib2
9
10 Package-Manager: portage-2.2.27
11
12 dev-python/llfuse/llfuse-0.43-r1.ebuild | 36 +++++++++++++++++++++++++++++++++
13 1 file changed, 36 insertions(+)
14
15 diff --git a/dev-python/llfuse/llfuse-0.43-r1.ebuild b/dev-python/llfuse/llfuse-0.43-r1.ebuild
16 new file mode 100644
17 index 0000000..1010436
18 --- /dev/null
19 +++ b/dev-python/llfuse/llfuse-0.43-r1.ebuild
20 @@ -0,0 +1,36 @@
21 +# Copyright 1999-2016 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +# $Id$
24 +
25 +EAPI="5"
26 +PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )
27 +
28 +inherit distutils-r1
29 +
30 +DESCRIPTION="Python bindings for the low-level FUSE API"
31 +HOMEPAGE="https://python-llfuse.googlecode.com/ https://pypi.python.org/pypi/llfuse"
32 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.bz2"
33 +
34 +LICENSE="LGPL-2"
35 +SLOT="0"
36 +KEYWORDS="~amd64 ~x86"
37 +IUSE="doc examples"
38 +
39 +RDEPEND=">=sys-fs/fuse-2.8.0
40 + dev-python/contextlib2[${PYTHON_USEDEP}]"
41 +DEPEND="${RDEPEND}
42 + dev-python/setuptools[${PYTHON_USEDEP}]
43 + virtual/pkgconfig"
44 +
45 +python_prepare_all() {
46 + # use system setuptools
47 + sed -i '/use_setuptools/d' setup.py || die
48 +
49 + distutils-r1_python_prepare_all
50 +}
51 +
52 +python_install_all() {
53 + use doc && local HTML_DOCS=( doc/html/. )
54 + use examples && local EXAMPLES=( examples/. )
55 + distutils-r1_python_install_all
56 +}