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: 1477969970.ee2268e44ddd0b8c3c6ed76e25e5319773a1aa8d.radhermit@gentoo
1 commit: ee2268e44ddd0b8c3c6ed76e25e5319773a1aa8d
2 Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
3 AuthorDate: Tue Nov 1 03:12:27 2016 +0000
4 Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
5 CommitDate: Tue Nov 1 03:12:50 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee2268e4
7
8 dev-python/pychroot: remove old
9
10 dev-python/pychroot/Manifest | 1 -
11 dev-python/pychroot/pychroot-0.9.13.ebuild | 51 ------------------------------
12 2 files changed, 52 deletions(-)
13
14 diff --git a/dev-python/pychroot/Manifest b/dev-python/pychroot/Manifest
15 index 898a45d..49f69c3 100644
16 --- a/dev-python/pychroot/Manifest
17 +++ b/dev-python/pychroot/Manifest
18 @@ -1,3 +1,2 @@
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.13.ebuild b/dev-python/pychroot/pychroot-0.9.13.ebuild
24 deleted file mode 100644
25 index 5b248cb..00000000
26 --- a/dev-python/pychroot/pychroot-0.9.13.ebuild
27 +++ /dev/null
28 @@ -1,51 +0,0 @@
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_3,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="mirror://pypi/${PN:0:1}/${PN}/${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/setuptools[${PYTHON_USEDEP}]
54 - >=dev-python/snakeoil-0.6.5[${PYTHON_USEDEP}]
55 -"
56 -DEPEND="${RDEPEND}
57 - $(python_gen_cond_dep 'dev-python/3to2[${PYTHON_USEDEP}]' python2_7)
58 - test? (
59 - $(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' python2_7)
60 - dev-python/pytest[${PYTHON_USEDEP}]
61 - )"
62 -[[ ${PV} == *9999 ]] && DEPEND+=" dev-python/sphinx[${PYTHON_USEDEP}]"
63 -
64 -python_compile_all() {
65 - [[ ${PV} == *9999 ]] && emake -C doc man
66 -}
67 -
68 -python_test() {
69 - esetup.py test
70 -}
71 -
72 -python_install_all() {
73 - distutils-r1_python_install_all
74 - if [[ ${PV} == *9999 ]]; then
75 - emake -C doc PREFIX=/usr DESTDIR="${D}" install_man
76 - else
77 - doman man/*
78 - fi
79 -}