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: 1457029747.f47e8801b01bd679d8eed9a39241cfc100609e07.chutzpah@gentoo
1 commit: f47e8801b01bd679d8eed9a39241cfc100609e07
2 Author: Patrick McLean <chutzpah <AT> gentoo <DOT> org>
3 AuthorDate: Thu Mar 3 18:29:07 2016 +0000
4 Commit: Patrick McLean <chutzpah <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 3 18:29:07 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f47e8801
7
8 dev-python/llfuse: drop previous revision
9
10 Package-Manager: portage-2.2.27
11
12 dev-python/llfuse/llfuse-0.43.ebuild | 35 -----------------------------------
13 1 file changed, 35 deletions(-)
14
15 diff --git a/dev-python/llfuse/llfuse-0.43.ebuild b/dev-python/llfuse/llfuse-0.43.ebuild
16 deleted file mode 100644
17 index 1b07f64..0000000
18 --- a/dev-python/llfuse/llfuse-0.43.ebuild
19 +++ /dev/null
20 @@ -1,35 +0,0 @@
21 -# Copyright 1999-2015 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 -DEPEND="${RDEPEND}
41 - dev-python/setuptools[${PYTHON_USEDEP}]
42 - virtual/pkgconfig"
43 -
44 -python_prepare_all() {
45 - # use system setuptools
46 - sed -i '/use_setuptools/d' setup.py || die
47 -
48 - distutils-r1_python_prepare_all
49 -}
50 -
51 -python_install_all() {
52 - use doc && local HTML_DOCS=( doc/html/. )
53 - use examples && local EXAMPLES=( examples/. )
54 - distutils-r1_python_install_all
55 -}