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