Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/pychroot: ChangeLog pychroot-0.9.10.ebuild
Date: Mon, 06 Jul 2015 00:13:58
Message-Id: 20150706001345.E93BC755@oystercatcher.gentoo.org
1 radhermit 15/07/06 00:13:45
2
3 Modified: ChangeLog
4 Added: pychroot-0.9.10.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
9
10 Revision Changes Path
11 1.6 dev-python/pychroot/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pychroot/ChangeLog?rev=1.6&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pychroot/ChangeLog?rev=1.6&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pychroot/ChangeLog?r1=1.5&r2=1.6
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/pychroot/ChangeLog,v
20 retrieving revision 1.5
21 retrieving revision 1.6
22 diff -u -r1.5 -r1.6
23 --- ChangeLog 3 Jun 2015 20:54:03 -0000 1.5
24 +++ ChangeLog 6 Jul 2015 00:13:45 -0000 1.6
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/pychroot
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pychroot/ChangeLog,v 1.5 2015/06/03 20:54:03 jlec Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pychroot/ChangeLog,v 1.6 2015/07/06 00:13:45 radhermit Exp $
30 +
31 +*pychroot-0.9.10 (06 Jul 2015)
32 +
33 + 06 Jul 2015; Tim Harder <radhermit@g.o> +pychroot-0.9.10.ebuild:
34 + Version bump.
35
36 03 Jun 2015; Justin Lecher <jlec@g.o> metadata.xml:
37 Add pypi to remote-id in metadata.xml
38
39
40
41 1.1 dev-python/pychroot/pychroot-0.9.10.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pychroot/pychroot-0.9.10.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pychroot/pychroot-0.9.10.ebuild?rev=1.1&content-type=text/plain
45
46 Index: pychroot-0.9.10.ebuild
47 ===================================================================
48 # Copyright 1999-2015 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-python/pychroot/pychroot-0.9.10.ebuild,v 1.1 2015/07/06 00:13:45 radhermit Exp $
51
52 EAPI=5
53 PYTHON_COMPAT=( python{2_7,3_3,3_4} )
54 inherit distutils-r1
55
56 if [[ ${PV} == *9999 ]] ; then
57 EGIT_REPO_URI="https://github.com/pkgcore/pychroot.git"
58 inherit git-r3
59 else
60 KEYWORDS="~amd64 ~x86"
61 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
62 fi
63
64 DESCRIPTION="a python library that simplifies chroot handling"
65 HOMEPAGE="https://github.com/pkgcore/pychroot"
66
67 LICENSE="BSD"
68 SLOT="0"
69 IUSE="test"
70
71 RDEPEND=">=dev-python/snakeoil-0.6.2[${PYTHON_USEDEP}]"
72 DEPEND="${RDEPEND}
73 dev-python/setuptools[${PYTHON_USEDEP}]
74 test? (
75 $(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' python2_7)
76 dev-python/pytest[${PYTHON_USEDEP}]
77 )"
78
79 python_test() {
80 esetup.py test
81 }