Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/lockfile/
Date: Fri, 05 Jan 2018 09:36:52
Message-Id: 1515144994.1cac137021d44fcbe10b8779824b470ea6af1a07.mgorny@gentoo
1 commit: 1cac137021d44fcbe10b8779824b470ea6af1a07
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 4 23:29:37 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 5 09:36:34 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1cac1370
7
8 dev-python/lockfile: Clean old up
9
10 dev-python/lockfile/lockfile-0.12.2.ebuild | 43 ------------------------------
11 1 file changed, 43 deletions(-)
12
13 diff --git a/dev-python/lockfile/lockfile-0.12.2.ebuild b/dev-python/lockfile/lockfile-0.12.2.ebuild
14 deleted file mode 100644
15 index d772d7000ea..00000000000
16 --- a/dev-python/lockfile/lockfile-0.12.2.ebuild
17 +++ /dev/null
18 @@ -1,43 +0,0 @@
19 -# Copyright 1999-2017 Gentoo Foundation
20 -# Distributed under the terms of the GNU General Public License v2
21 -
22 -EAPI=5
23 -
24 -PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy pypy3 )
25 -PYTHON_REQ_USE="threads(+)"
26 -
27 -inherit distutils-r1
28 -
29 -DESCRIPTION="Platform-independent file locking module"
30 -HOMEPAGE="https://launchpad.net/pylockfile https://pypi.python.org/pypi/lockfile"
31 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
32 -
33 -LICENSE="MIT"
34 -SLOT="0"
35 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
36 -IUSE="doc test"
37 -
38 -DEPEND="
39 - >dev-python/pbr-1.8[${PYTHON_USEDEP}]
40 - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
41 - test? ( dev-python/nose[${PYTHON_USEDEP}] )"
42 -RDEPEND=""
43 -
44 -DOCS=( ACKS AUTHORS ChangeLog README.rst RELEASE-NOTES )
45 -
46 -python_compile_all() {
47 - if use doc; then
48 - einfo "Generation of documentation"
49 - emake -C doc/source html || die "Generation of documentation failed"
50 - fi
51 -}
52 -
53 -python_test() {
54 - # "${PYTHON}" test/test_lockfile.py yeilds no informative coverage output
55 - nosetests --verbose || die "test_lockfile failed under ${EPYTHON}"
56 -}
57 -
58 -python_install_all() {
59 - use doc && local HTML_DOCS=( doc/source/.build/html/. )
60 - distutils-r1_python_install_all
61 -}