Gentoo Archives: gentoo-commits

From: Tim Harder <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/llfuse/
Date: Thu, 01 Mar 2018 19:36:03
Message-Id: 1519932885.fc04ed7b9c6bcb8e4d5766df2c1f01070201a933.radhermit@gentoo
1 commit: fc04ed7b9c6bcb8e4d5766df2c1f01070201a933
2 Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 20 21:51:41 2018 +0000
4 Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 1 19:34:45 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc04ed7b
7
8 dev-python/llfuse: remove old
9
10 dev-python/llfuse/Manifest | 1 -
11 dev-python/llfuse/llfuse-1.2.ebuild | 38 -------------------------------------
12 2 files changed, 39 deletions(-)
13
14 diff --git a/dev-python/llfuse/Manifest b/dev-python/llfuse/Manifest
15 index 8114fcfaba1..1ea4c1435f2 100644
16 --- a/dev-python/llfuse/Manifest
17 +++ b/dev-python/llfuse/Manifest
18 @@ -1,2 +1 @@
19 -DIST llfuse-1.2.tar.bz2 327967 BLAKE2B f2c64e46813dfee157d7befe9743809c299e03c77ebf6e9ea0e94578aa69a0884b7438aa24a551a5bd49458ddc6c350167afbc1832e1f73cc49c2f5cb529083c SHA512 0c31ac385a98211f8696857654ea187c5f18b655b65199696923bcc66d079a5e2a6f7260ac4f6da17b25ed57c9cb1314ce62fabb3b538a87e4286bbd0763390b
20 DIST llfuse-1.3.2.tar.bz2 348035 BLAKE2B d3a3219c8d7462f448486488971842362b6ade8fcf6804d725db30b0e91d3f240ec9443705cb67caf3e6beae8a174f323465695dddd132210e3606aef6dd861d SHA512 f065818134b12dd128574836bc7d339404d9b7d9236b535da709378e9206b17cb2accd97fc0b658f39a93efe126a7c3064f7901468231f63f8398a3e053498cf
21
22 diff --git a/dev-python/llfuse/llfuse-1.2.ebuild b/dev-python/llfuse/llfuse-1.2.ebuild
23 deleted file mode 100644
24 index 97dda6a7932..00000000000
25 --- a/dev-python/llfuse/llfuse-1.2.ebuild
26 +++ /dev/null
27 @@ -1,38 +0,0 @@
28 -# Copyright 1999-2017 Gentoo Foundation
29 -# Distributed under the terms of the GNU General Public License v2
30 -
31 -EAPI=6
32 -PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy )
33 -
34 -inherit distutils-r1
35 -
36 -DESCRIPTION="Python bindings for the low-level FUSE API"
37 -HOMEPAGE="https://bitbucket.org/nikratio/python-llfuse/ https://pypi.python.org/pypi/llfuse"
38 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.bz2"
39 -
40 -LICENSE="LGPL-2"
41 -SLOT="0"
42 -KEYWORDS="amd64 x86"
43 -IUSE="doc examples test"
44 -
45 -RDEPEND=">=sys-fs/fuse-2.8.0
46 - $(python_gen_cond_dep 'dev-python/contextlib2[${PYTHON_USEDEP}]' python2_7)
47 -"
48 -DEPEND="${RDEPEND}
49 - dev-python/setuptools[${PYTHON_USEDEP}]
50 - virtual/pkgconfig
51 - test? (
52 - dev-python/pytest[${PYTHON_USEDEP}]
53 - dev-python/pytest-catchlog[${PYTHON_USEDEP}]
54 - )
55 -"
56 -
57 -python_test() {
58 - py.test || die "Tests failed under ${EPYTHON}"
59 -}
60 -
61 -python_install_all() {
62 - use doc && local HTML_DOCS=( doc/html/. )
63 - use examples && dodoc -r examples
64 - distutils-r1_python_install_all
65 -}