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/pychroot/
Date: Tue, 01 Nov 2016 03:13:38
Message-Id: 1477969969.0d00adc28b71485d559d107d981aeb881937f5ca.radhermit@gentoo
1 commit: 0d00adc28b71485d559d107d981aeb881937f5ca
2 Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
3 AuthorDate: Tue Nov 1 03:11:56 2016 +0000
4 Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
5 CommitDate: Tue Nov 1 03:12:49 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d00adc2
7
8 dev-python/pychroot: version bump to 0.9.16
9
10 dev-python/pychroot/Manifest | 1 +
11 dev-python/pychroot/pychroot-0.9.16.ebuild | 47 ++++++++++++++++++++++++++++++
12 2 files changed, 48 insertions(+)
13
14 diff --git a/dev-python/pychroot/Manifest b/dev-python/pychroot/Manifest
15 index 097197f..898a45d 100644
16 --- a/dev-python/pychroot/Manifest
17 +++ b/dev-python/pychroot/Manifest
18 @@ -1,2 +1,3 @@
19 DIST pychroot-0.9.13.tar.gz 25610 SHA256 e94c9c738402f4957e757aa1fdcd2febeaa7cc01df1b1ca0d6adf3324a8bbfce SHA512 ec2773e9285905aa1fc83a69653e830fc83c42c306760bbc9a8bf48cd388b99485a7ec30eef32ef4cc98cf25fe12b9ac1d09ae379c25d4c756d3afbffdfc2243 WHIRLPOOL bff205fb563e7e3f9603a639310cbf24ec10234e96e813082aeec94bc5cb3155947f818f53713a09f0626e5dad21a4d0b4c1c49d26eeb894677872e30bef92b7
20 DIST pychroot-0.9.15.tar.gz 29519 SHA256 3215f650b05dc78d26233df0f8a62befe5eb9998e207023909cc098b8fd8f623 SHA512 7764a7853f81f438c652bc37d135a0938ab9bbb4ec7d4a344e6e4613b1ec85a5da33da52f4ac5945ebc9da81263858cb3797f43af52811b86fa70601274ce3de WHIRLPOOL 2695c8c01c81c86d966afb476fa25f770a84ae5a56636fa326a771982f5467494acae2932fefd71cf3e79639e490596b7914ab2ae56642675bb121d9b1aa8a7c
21 +DIST pychroot-0.9.16.tar.gz 31027 SHA256 8bcfde4f045d34181ab6ec869abb6608c1340de4dd15ceac003287ec610d221d SHA512 6e35c7b40ad27d234c855abf1857aa6579583d848b111559de21edfa0bc6987e08d1d122924101e2e9bdf37886591b7291a607ed22cf2c50aa11b32f7ea65495 WHIRLPOOL 234cdd15e1cda4473d061ec03f8be75560785ca53c441750372d34545e6e0a1d068a2bf9f652cc60486793fb294d3af1d68834602ab0e0160e4194a2a0f6a98d
22
23 diff --git a/dev-python/pychroot/pychroot-0.9.16.ebuild b/dev-python/pychroot/pychroot-0.9.16.ebuild
24 new file mode 100644
25 index 00000000..a38d17e
26 --- /dev/null
27 +++ b/dev-python/pychroot/pychroot-0.9.16.ebuild
28 @@ -0,0 +1,47 @@
29 +# Copyright 1999-2016 Gentoo Foundation
30 +# Distributed under the terms of the GNU General Public License v2
31 +# $Id$
32 +
33 +EAPI=5
34 +PYTHON_COMPAT=( python{2_7,3_4,3_5} )
35 +inherit distutils-r1
36 +
37 +if [[ ${PV} == *9999 ]] ; then
38 + EGIT_REPO_URI="https://github.com/pkgcore/pychroot.git"
39 + inherit git-r3
40 +else
41 + KEYWORDS="~amd64 ~x86"
42 + SRC_URI="https://github.com/pkgcore/${PN}/releases/download/v${PV}/${P}.tar.gz"
43 +fi
44 +
45 +DESCRIPTION="a python library and cli tool that simplify chroot handling"
46 +HOMEPAGE="https://github.com/pkgcore/pychroot"
47 +
48 +LICENSE="BSD"
49 +SLOT="0"
50 +IUSE="test"
51 +
52 +RDEPEND="
53 + >=dev-python/snakeoil-0.7.1[${PYTHON_USEDEP}]
54 +"
55 +DEPEND="${RDEPEND}
56 + dev-python/setuptools[${PYTHON_USEDEP}]
57 + test? (
58 + $(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' python2_7)
59 + dev-python/pytest[${PYTHON_USEDEP}]
60 + )"
61 +[[ ${PV} == *9999 ]] && DEPEND+=" dev-python/sphinx[${PYTHON_USEDEP}]"
62 +
63 +python_compile_all() {
64 + esetup.py build_man
65 +}
66 +
67 +python_test() {
68 + esetup.py test
69 +}
70 +
71 +python_install_all() {
72 + local DOCS=( NEWS.rst README.rst )
73 + distutils-r1_python_install install_man
74 + distutils-r1_python_install_all
75 +}