Gentoo Archives: gentoo-commits

From: Alexis Ballier <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pid/
Date: Mon, 10 Oct 2016 11:05:28
Message-Id: 1476097460.81cf1e43f46e08964d7b585fb55479ba2c514307.aballier@gentoo
1 commit: 81cf1e43f46e08964d7b585fb55479ba2c514307
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Mon Oct 10 11:04:13 2016 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 10 11:04:20 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81cf1e43
7
8 dev-python/pid: bump to 2.1.1
9
10 Package-Manager: portage-2.3.1
11
12 dev-python/pid/Manifest | 1 +
13 dev-python/pid/pid-2.1.1.ebuild | 26 ++++++++++++++++++++++++++
14 2 files changed, 27 insertions(+)
15
16 diff --git a/dev-python/pid/Manifest b/dev-python/pid/Manifest
17 index d0cf9b9..592e1a2 100644
18 --- a/dev-python/pid/Manifest
19 +++ b/dev-python/pid/Manifest
20 @@ -1 +1,2 @@
21 DIST pid-2.0.1.tar.gz 9373 SHA256 054cde9c64b8ac979ec27f714e71ebb97ecf8388ea5fe29f6b93db222e92d433 SHA512 10dcded5b52c415a2fa653afdd85e5fbb06433149eee63f306ff84f225086492048db0341bf3a6e448d0654ba4c02afdb72343c0b111bc9682f2248cc4c3817a WHIRLPOOL 801386fcb80d5a7b16793cc5fd9eb6622aa303d7f8be5142f3fd10dc0453ab573b227e06a9b35dc8f3048b5019017db395c40b8c5fce65b086354cfde4853024
22 +DIST pid-2.1.1.tar.gz 9591 SHA256 b443169d3dc21397695b4a82016fadb4cfdb0ed8b2ddb4aaa428e1701bb34e1f SHA512 5f20338ca902d68a0c4a614b0b8229cd498712bf1750b68fa49037e9e6915c66ad562564d70d7c9308538f4302e90473a5d253dd6366bfa561f6a2248b21a45e WHIRLPOOL 52d3a196fccab813671b71c3f9d719bc741412b9cd76828902513dcf6b8fb2c4f3c0159e1fd43cbda3d39e436247248862ba5a168b710848aa6ce7b8fc26abd7
23
24 diff --git a/dev-python/pid/pid-2.1.1.ebuild b/dev-python/pid/pid-2.1.1.ebuild
25 new file mode 100644
26 index 00000000..3db31ae
27 --- /dev/null
28 +++ b/dev-python/pid/pid-2.1.1.ebuild
29 @@ -0,0 +1,26 @@
30 +# Copyright 1999-2016 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI=5
35 +
36 +PYTHON_COMPAT=( python{2_7,3_4,3_5} )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Pidfile featuring stale detection and file-locking"
41 +HOMEPAGE="https://pypi.python.org/pypi/pid https://github.com/trbs/pid/"
42 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
43 +
44 +SLOT="0"
45 +LICENSE="Apache-2.0"
46 +KEYWORDS="~amd64"
47 +IUSE=""
48 +
49 +RDEPEND=""
50 +DEPEND="${RDEPEND}
51 + dev-python/nose[${PYTHON_USEDEP}]"
52 +
53 +python_test() {
54 + nosetests || die
55 +}