Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/theano/
Date: Sun, 29 Dec 2019 08:53:31
Message-Id: 1577609571.e0ae1ad6161b2ac93d2399a98b432d7eb72e9ac0.soap@gentoo
1 commit: e0ae1ad6161b2ac93d2399a98b432d7eb72e9ac0
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Sun Dec 29 08:52:51 2019 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sun Dec 29 08:52:51 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0ae1ad6
7
8 dev-python/theano: Remove old
9
10 Package-Manager: Portage-2.3.83, Repoman-2.3.20
11 Signed-off-by: David Seifert <soap <AT> gentoo.org>
12
13 dev-python/theano/Manifest | 2 --
14 dev-python/theano/theano-0.8.2.ebuild | 53 -----------------------------------
15 dev-python/theano/theano-0.9.0.ebuild | 53 -----------------------------------
16 3 files changed, 108 deletions(-)
17
18 diff --git a/dev-python/theano/Manifest b/dev-python/theano/Manifest
19 index eb87e216677..66c0e87d90b 100644
20 --- a/dev-python/theano/Manifest
21 +++ b/dev-python/theano/Manifest
22 @@ -1,4 +1,2 @@
23 DIST Theano-0.7.0.tar.gz 1985387 BLAKE2B 00d547d5d1f6bb4049a1db71442381ae3803be683975ccca7536b8971e066ac1d09a4fc93a7f70693ae052bbf681e0c59a8b30a326f862f870e10422b438f979 SHA512 6e6bf9afdebf3c281d71f5ceda73792e0a52b403b18776a639665767ac73ac4920b5042e29d656d517b8f023e5f9cd5a27086e0456dc40c42abf6f3569da3f06
24 -DIST Theano-0.8.2.tar.gz 2914631 BLAKE2B d136630d689101e9ae47984cd13289b03943276ed0aa606478169d4334a302448f5a2c31d65b1e6d571648772d6f0760cc004f2eefd86d41d72f2b0270017763 SHA512 d7bad7ed4c9453470b66df2ada4587fbe9effc134c0604d11576630a613568386d41aa7dd4a77f8b7a1eb6d8a2f76a8e809b1ac3ae18c85a0c55ba4a059b865e
25 -DIST Theano-0.9.0.tar.gz 3116713 BLAKE2B bf38d3c504909caa7aaf8e704a6afc86ab56810199190a0a6beb86ff5e0f9a75c8681dee1f1411ddcfa40739576e4d725c2423e74a32e796987fbd4b09ffde76 SHA512 e0e59256d2442f929fb120b4b21cab735e0a8ba087c4ea7d7caeabe8fa30cc19a46181fe1b4e268e778344fb3506eb20d8090dfc8d2a499c1bf84b07352686ab
26 DIST Theano-1.0.4.tar.gz 2840691 BLAKE2B 7f89caee3dd50d75ff09693fde7926f2b7da0f94758ef932f207feea29d74d38ed56591e6ebe0b46cfa043d5fb46d5b97028171acdfd324a01eb7b904169b4ac SHA512 3cc7f9dbb606c3c997c8651c34dd861721d5a8b99d06ed0887306d5a5ad0d7e402fbe29dcb5ad2f513b3bf75966e41a2854ebdf9a4fb212607345f84f367de8c
27
28 diff --git a/dev-python/theano/theano-0.8.2.ebuild b/dev-python/theano/theano-0.8.2.ebuild
29 deleted file mode 100644
30 index de0279333ae..00000000000
31 --- a/dev-python/theano/theano-0.8.2.ebuild
32 +++ /dev/null
33 @@ -1,53 +0,0 @@
34 -# Copyright 1999-2019 Gentoo Authors
35 -# Distributed under the terms of the GNU General Public License v2
36 -
37 -EAPI=6
38 -
39 -PYTHON_COMPAT=( python2_7 python3_5 )
40 -
41 -inherit distutils-r1 versionator
42 -
43 -MYPN=Theano
44 -MYP=${MYPN}-$(replace_version_separator 3 '')
45 -
46 -DESCRIPTION="Define and optimize multi-dimensional arrays mathematical expressions"
47 -HOMEPAGE="https://github.com/Theano/Theano"
48 -SRC_URI="mirror://pypi/${MYPN:0:1}/${MYPN}/${MYP}.tar.gz"
49 -
50 -SLOT="0"
51 -LICENSE="BSD"
52 -IUSE="doc test"
53 -RESTRICT="!test? ( test )"
54 -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
55 -
56 -RDEPEND="
57 - dev-python/numpy[${PYTHON_USEDEP}]
58 - dev-python/six[${PYTHON_USEDEP}]
59 - sci-libs/scipy[${PYTHON_USEDEP}]
60 -"
61 -DEPEND="${RDEPEND}
62 - dev-python/setuptools[${PYTHON_USEDEP}]
63 - test? (
64 - dev-python/flake8[${PYTHON_USEDEP}]
65 - dev-python/nose[${PYTHON_USEDEP}]
66 - dev-python/nose-parameterized[${PYTHON_USEDEP}]
67 - dev-python/pyflakes[${PYTHON_USEDEP}]
68 - )"
69 -S="${WORKDIR}/${MYP}"
70 -
71 -python_prepare_all() {
72 - # remove bundled six
73 - find -type f -name "*.py" -exec \
74 - sed -e 's:theano.compat.six:six:g' -i '{}' + || die
75 - rm ${PN}/compat/six.py || die
76 - distutils-r1_python_prepare_all
77 -}
78 -
79 -python_test() {
80 - nosetests --verbosity=3 || die
81 -}
82 -
83 -pkg_postinst() {
84 - optfeature "Make picture of Theano computation graph" dev-python/pydot-ng
85 - optfeature "Required for GPU/CPU code generation" dev-python/pygpu
86 -}
87
88 diff --git a/dev-python/theano/theano-0.9.0.ebuild b/dev-python/theano/theano-0.9.0.ebuild
89 deleted file mode 100644
90 index 1de50901c43..00000000000
91 --- a/dev-python/theano/theano-0.9.0.ebuild
92 +++ /dev/null
93 @@ -1,53 +0,0 @@
94 -# Copyright 1999-2019 Gentoo Authors
95 -# Distributed under the terms of the GNU General Public License v2
96 -
97 -EAPI=6
98 -
99 -PYTHON_COMPAT=( python2_7 python3_{5,6,7} )
100 -
101 -inherit distutils-r1 versionator
102 -
103 -MYPN=Theano
104 -MYP=${MYPN}-$(replace_version_separator 3 '')
105 -
106 -DESCRIPTION="Define and optimize multi-dimensional arrays mathematical expressions"
107 -HOMEPAGE="https://github.com/Theano/Theano"
108 -SRC_URI="mirror://pypi/${MYPN:0:1}/${MYPN}/${MYP}.tar.gz"
109 -
110 -SLOT="0"
111 -LICENSE="BSD"
112 -IUSE="doc test"
113 -RESTRICT="!test? ( test )"
114 -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
115 -
116 -RDEPEND="
117 - dev-python/numpy[${PYTHON_USEDEP}]
118 - dev-python/six[${PYTHON_USEDEP}]
119 - sci-libs/scipy[${PYTHON_USEDEP}]
120 -"
121 -DEPEND="${RDEPEND}
122 - dev-python/setuptools[${PYTHON_USEDEP}]
123 - test? (
124 - dev-python/flake8[${PYTHON_USEDEP}]
125 - dev-python/nose[${PYTHON_USEDEP}]
126 - dev-python/nose-parameterized[${PYTHON_USEDEP}]
127 - dev-python/pyflakes[${PYTHON_USEDEP}]
128 - )"
129 -S="${WORKDIR}/${MYP}"
130 -
131 -python_prepare_all() {
132 - # remove bundled six
133 - find -type f -name "*.py" -exec \
134 - sed -e 's:theano.compat.six:six:g' -i '{}' + || die
135 - rm ${PN}/compat/six.py || die
136 - distutils-r1_python_prepare_all
137 -}
138 -
139 -python_test() {
140 - nosetests --verbosity=3 || die
141 -}
142 -
143 -pkg_postinst() {
144 - optfeature "Make picture of Theano computation graph" dev-python/pydot-ng
145 - optfeature "Required for GPU/CPU code generation" dev-python/pygpu
146 -}