Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/xonsh/, dev-python/xonsh/files/
Date: Tue, 26 Jun 2018 18:46:43
Message-Id: 1530038770.42283400bd0e4fdb9779e0123fbd67a52e37eb29.pacho@gentoo
1 commit: 42283400bd0e4fdb9779e0123fbd67a52e37eb29
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jun 26 18:32:47 2018 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Tue Jun 26 18:46:10 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42283400
7
8 dev-python/xonsh: Drop old
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11
12 dev-python/xonsh/Manifest | 2 -
13 dev-python/xonsh/files/xonsh-0.4.4-destdir.patch | 16 --------
14 dev-python/xonsh/xonsh-0.2.6.ebuild | 45 -----------------------
15 dev-python/xonsh/xonsh-0.4.4.ebuild | 47 ------------------------
16 4 files changed, 110 deletions(-)
17
18 diff --git a/dev-python/xonsh/Manifest b/dev-python/xonsh/Manifest
19 index 961743b6b6d..6537ddfd956 100644
20 --- a/dev-python/xonsh/Manifest
21 +++ b/dev-python/xonsh/Manifest
22 @@ -1,3 +1 @@
23 -DIST xonsh-0.2.6.tar.gz 170842 BLAKE2B 2fc02ce5e4cfaf1f3b602658ad313e576881163e1255863ab0a714a0248046e632fa57e67ac2b9cd403d63f6202aaccf0edcf49f25ac65d385c3cef06576f108 SHA512 43b034987323b832d052974f02a52ffd492ae4f0fbf6a0a035329000e393c9c9466ee0275cf678db5581e84e627d59bac015ad6131f35bdfbc1374bf4db20977
24 -DIST xonsh-0.4.4.tar.gz 543801 BLAKE2B c00358688d9b05ebf9326fdb6536a927d86ee9d5d2520237c59cacfbcf41819028a675d198cf4896b870e956592c24b667aaa9075c41f36f707c0d4526a053d5 SHA512 2cb6b045010b51d1a846625821bb6a8e415cc01f0e623f1ab7efb02ae0debaf9dab1e0bca0d27dd00a320bb1f5d9d001833ecf3a917562b683a7c59a51b8aff0
25 DIST xonsh-0.4.7.tar.gz 545249 BLAKE2B e7207274cccbd96a32942dad7e5b0e44c4a053c52a0f4e06bc789d86414d678192ce885e3d2cccf2c4f4d208567a2beb1319ffd01e150b5a1a953cb82ca75598 SHA512 133a493b1245048e4b8a51f01f0629283736753a7636d8bb0c123b623122b285fed9ba415972e5f44dbb9a1439a83858da50a9b01ebe6bb11e4e390708e08c9f
26
27 diff --git a/dev-python/xonsh/files/xonsh-0.4.4-destdir.patch b/dev-python/xonsh/files/xonsh-0.4.4-destdir.patch
28 deleted file mode 100644
29 index 63d7e86149a..00000000000
30 --- a/dev-python/xonsh/files/xonsh-0.4.4-destdir.patch
31 +++ /dev/null
32 @@ -1,16 +0,0 @@
33 - setup.py | 3 ++
34 - 1 file changed, 2 insertions(+)
35 -
36 -diff --git a/setup.py b/setup.py
37 -index 679f984..6de421e 100755
38 ---- a/setup.py
39 -+++ b/setup.py
40 -@@ -167,6 +167,8 @@ class xinstall(install):
41 - # install Jupyter hook
42 - root = self.root if self.root else None
43 - prefix = self.prefix if self.prefix else None
44 -+ destdir = os.environ["ED"]
45 -+ prefix = destdir + prefix
46 - try:
47 - install_jupyter_hook(prefix=prefix, root=root)
48 - except Exception:
49
50 diff --git a/dev-python/xonsh/xonsh-0.2.6.ebuild b/dev-python/xonsh/xonsh-0.2.6.ebuild
51 deleted file mode 100644
52 index 661d625aacc..00000000000
53 --- a/dev-python/xonsh/xonsh-0.2.6.ebuild
54 +++ /dev/null
55 @@ -1,45 +0,0 @@
56 -# Copyright 1999-2018 Gentoo Foundation
57 -# Distributed under the terms of the GNU General Public License v2
58 -
59 -EAPI=6
60 -
61 -PYTHON_COMPAT=( python3_{4,5} )
62 -
63 -inherit distutils-r1 eutils
64 -
65 -DESCRIPTION="An exotic, usable shell"
66 -HOMEPAGE="
67 - https://github.com/scopatz/xonsh
68 - https://pypi.org/project/xonsh/"
69 -SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
70 -
71 -LICENSE="BSD"
72 -SLOT="0"
73 -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
74 -IUSE="test"
75 -
76 -RDEPEND="
77 - dev-python/ply[${PYTHON_USEDEP}]
78 -"
79 -DEPEND="${RDEPEND}
80 - dev-python/setuptools[${PYTHON_USEDEP}]
81 - test? (
82 - dev-python/nose[${PYTHON_USEDEP}]
83 - )"
84 -
85 -python_prepare_all() {
86 - sed \
87 - -e "/install_kernel_spec/s:prefix=None:prefix=u\"${ED}/usr\":g" \
88 - -i setup.py || die
89 -
90 - distutils-r1_python_prepare_all
91 -}
92 -
93 -python_test() {
94 - nosetests --verbose || die
95 -}
96 -
97 -pkg_postinst() {
98 - optfeature "Jupyter kernel support" dev-python/jupyter
99 - optfeature "Alternative to readline backend" dev-python/prompt_toolkit
100 -}
101
102 diff --git a/dev-python/xonsh/xonsh-0.4.4.ebuild b/dev-python/xonsh/xonsh-0.4.4.ebuild
103 deleted file mode 100644
104 index 7c361d8e21a..00000000000
105 --- a/dev-python/xonsh/xonsh-0.4.4.ebuild
106 +++ /dev/null
107 @@ -1,47 +0,0 @@
108 -# Copyright 1999-2018 Gentoo Foundation
109 -# Distributed under the terms of the GNU General Public License v2
110 -
111 -EAPI=6
112 -
113 -PYTHON_COMPAT=( python3_{4,5} )
114 -
115 -inherit distutils-r1 eutils
116 -
117 -DESCRIPTION="An exotic, usable shell"
118 -HOMEPAGE="
119 - https://github.com/scopatz/xonsh
120 - https://pypi.org/project/xonsh/"
121 -SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
122 -
123 -LICENSE="BSD"
124 -SLOT="0"
125 -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
126 -IUSE="test"
127 -
128 -RDEPEND="
129 - dev-python/ply[${PYTHON_USEDEP}]
130 - dev-python/pygments[${PYTHON_USEDEP}]
131 -"
132 -DEPEND="${RDEPEND}
133 - dev-python/setuptools[${PYTHON_USEDEP}]
134 - test? (
135 - dev-python/nose[${PYTHON_USEDEP}]
136 - )"
137 -
138 -PATCHES=(
139 - "${FILESDIR}"/${P}-destdir.patch
140 -)
141 -
142 -python_test() {
143 - nosetests --verbose || die
144 -}
145 -
146 -src_install() {
147 - export "${ED}"
148 - distutils-r1_src_install
149 -}
150 -
151 -pkg_postinst() {
152 - optfeature "Jupyter kernel support" dev-python/jupyter
153 - optfeature "Alternative to readline backend" dev-python/prompt_toolkit
154 -}