Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/click/files/, dev-python/click/
Date: Mon, 23 Nov 2015 10:06:11
Message-Id: 1448273131.061274ea16474076cbda23d2c230feca3c9f47a8.jlec@gentoo
1 commit: 061274ea16474076cbda23d2c230feca3c9f47a8
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Mon Nov 23 10:05:11 2015 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Mon Nov 23 10:05:31 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=061274ea
7
8 dev-python/click: Drop old
9
10 Package-Manager: portage-2.2.25
11 Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
12
13 dev-python/click/Manifest | 2 --
14 dev-python/click/click-4.0-r1.ebuild | 45 -------------------------
15 dev-python/click/click-4.1.ebuild | 44 ------------------------
16 dev-python/click/files/click-4.0-docbuild.patch | 12 -------
17 4 files changed, 103 deletions(-)
18
19 diff --git a/dev-python/click/Manifest b/dev-python/click/Manifest
20 index e4428f0..2d1ffe2 100644
21 --- a/dev-python/click/Manifest
22 +++ b/dev-python/click/Manifest
23 @@ -1,4 +1,2 @@
24 DIST click-2.0.tar.gz 47342 SHA256 33a984fe73aa8c6bf69c38098b69dd38405529db54baf4c8cf64c50b2dee644f SHA512 4c703ab4b5c76e393420b0edf9af9e8ddb301ccfef5f8117d3408eaa8a94abe6b7b5c7a8b61b7774a3b459b153c10438e8934f21ceb73697199828cce2c2887c WHIRLPOOL bf599395245319b31c189df297a1ec35ca69723ed24e2d3e9aa9231a3cfebdb80e1f43a0b010865b6fbecf09f23dc1121cca232aec26f09bdb455f41da5261c4
25 -DIST click-4.0.tar.gz 270183 SHA256 f49e03611f5f2557788ceeb80710b1c67110f97c5e6740b97edf70245eea2409 SHA512 7b3b3e3b57fe74e8d2e3be79c59476fe7830c04068f0e31b39dfee28d879d8a96eed311fbe789bfc6d12c898052ea1c901c3b6f4c995cd4e0ede61b62fe0a39a WHIRLPOOL fd183c6509c3d8a3c582454aac8a18b3d570c16ca4b1cf19dbdd97d8846fde62fadd7d80596eb321a67e48477853b26cb7e5d554c9254061ab1bb74a52d3a05a
26 -DIST click-4.1.tar.gz 274489 SHA256 e339ed09f25e2145314c902a870bc959adcb25653a2bd5cc1b48d9f56edf8ed8 SHA512 fe751406919d06a3ccffc2831992848d8e324f0f0ca566ea3b9ed0be3298c8d1e2039643eadc71eb4dfabd790310396cd5b26a11d7b6f6cdf503f191ce6dd1cd WHIRLPOOL 3005501210fae07d3cbdd5674a22d24b577c02ba20c34fb94f3bf7011ec2d26847b7faca5fe74ca620bdc8a0c4bfaecdf5dbcf4c2f0046de76e8b13628e2910f
27 DIST click-5.1.tar.gz 275592 SHA256 678c98275431fad324275dec63791e4a17558b40e5a110e20a82866139a85a5a SHA512 b860b0227644f5d1cc24d41e66985421ec971f11f3f596fb46508fdc787200b949e7ef29b2035421ebb0115384688da03c3c95a0d6acc58dd3b566b32a2b7c6a WHIRLPOOL 8bda8de886a272972595bf51af3881962063daaa4fc9e104af59b4798008a2f780c3fb4a758d7fe14ef075b92aecc43415b08bb213cbd6ac4ab92a56e405276e
28
29 diff --git a/dev-python/click/click-4.0-r1.ebuild b/dev-python/click/click-4.0-r1.ebuild
30 deleted file mode 100644
31 index cf7d3ce..0000000
32 --- a/dev-python/click/click-4.0-r1.ebuild
33 +++ /dev/null
34 @@ -1,45 +0,0 @@
35 -# Copyright 1999-2015 Gentoo Foundation
36 -# Distributed under the terms of the GNU General Public License v2
37 -# $Id$
38 -
39 -EAPI="5"
40 -PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )
41 -
42 -inherit distutils-r1
43 -
44 -DESCRIPTION="A Python package for creating beautiful command line interfaces"
45 -SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
46 -HOMEPAGE="http://click.pocoo.org/ https://pypi.python.org/pypi/click"
47 -
48 -LICENSE="BSD"
49 -SLOT="0"
50 -KEYWORDS="amd64 x86"
51 -
52 -IUSE="doc examples test"
53 -
54 -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
55 - test? ( dev-python/pytest[${PYTHON_USEDEP}] )
56 - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
57 - "
58 -
59 -PATCHES=( "${FILESDIR}"/${P}-docbuild.patch )
60 -
61 -python_prepare_all() {
62 - # Prevent un-needed d'loading
63 - sed -e "s/, 'sphinx.ext.intersphinx'//" -i docs/conf.py || die
64 - distutils-r1_python_prepare_all
65 -}
66 -
67 -python_compile_all() {
68 - use doc && emake -C docs html
69 -}
70 -
71 -python_test() {
72 - emake test
73 -}
74 -
75 -python_install_all() {
76 - # use doc && local HTML_DOCS=( docs/_build/html/. )
77 - use examples && local EXAMPLES=( examples/. )
78 - distutils-r1_python_install_all
79 -}
80
81 diff --git a/dev-python/click/click-4.1.ebuild b/dev-python/click/click-4.1.ebuild
82 deleted file mode 100644
83 index d7025a4..0000000
84 --- a/dev-python/click/click-4.1.ebuild
85 +++ /dev/null
86 @@ -1,44 +0,0 @@
87 -# Copyright 1999-2015 Gentoo Foundation
88 -# Distributed under the terms of the GNU General Public License v2
89 -# $Id$
90 -
91 -EAPI="5"
92 -
93 -PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy pypy3 )
94 -
95 -inherit distutils-r1
96 -
97 -DESCRIPTION="A Python package for creating beautiful command line interfaces"
98 -SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
99 -HOMEPAGE="http://click.pocoo.org/ https://pypi.python.org/pypi/click"
100 -
101 -LICENSE="BSD"
102 -SLOT="0"
103 -KEYWORDS="~amd64 ~x86"
104 -IUSE="doc examples test"
105 -
106 -DEPEND="
107 - dev-python/setuptools[${PYTHON_USEDEP}]
108 - test? ( dev-python/pytest[${PYTHON_USEDEP}] )
109 - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
110 - "
111 -
112 -python_prepare_all() {
113 - # Prevent un-needed d'loading
114 - sed -e "s/, 'sphinx.ext.intersphinx'//" -i docs/conf.py || die
115 - distutils-r1_python_prepare_all
116 -}
117 -
118 -python_compile_all() {
119 - use doc && emake -C docs html
120 -}
121 -
122 -python_test() {
123 - emake test
124 -}
125 -
126 -python_install_all() {
127 - use doc && local HTML_DOCS=( docs/_build/html/. )
128 - use examples && local EXAMPLES=( examples/. )
129 - distutils-r1_python_install_all
130 -}
131
132 diff --git a/dev-python/click/files/click-4.0-docbuild.patch b/dev-python/click/files/click-4.0-docbuild.patch
133 deleted file mode 100644
134 index 24ce6ce..0000000
135 --- a/dev-python/click/files/click-4.0-docbuild.patch
136 +++ /dev/null
137 @@ -1,12 +0,0 @@
138 -https://github.com/mitsuhiko/click/issues/318#issuecomment-89565131
139 ---- docs/options.rst
140 -+++ docs/options.rst
141 -@@ -150,6 +150,7 @@
142 - .. click:example::
143 -
144 - import os
145 -+ import sys
146 -
147 - @click.command()
148 - @click.option('--shout/--no-shout', default=False)
149 -