Gentoo Archives: gentoo-commits

From: Jason Zaman <perfinion@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-visualization/tensorboard/
Date: Sun, 20 Jun 2021 21:56:30
Message-Id: 1624226107.212e9fedff4e4fdf3225df03c642f6ba19bef5a4.perfinion@gentoo
1 commit: 212e9fedff4e4fdf3225df03c642f6ba19bef5a4
2 Author: Jason Zaman <perfinion <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 10 00:24:25 2021 +0000
4 Commit: Jason Zaman <perfinion <AT> gentoo <DOT> org>
5 CommitDate: Sun Jun 20 21:55:07 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=212e9fed
7
8 sci-visualization/tensorboard: bump 2.5.0
9
10 Package-Manager: Portage-3.0.18, Repoman-3.0.2
11 Signed-off-by: Jason Zaman <perfinion <AT> gentoo.org>
12
13 sci-visualization/tensorboard/Manifest | 1 +
14 .../tensorboard/tensorboard-2.5.0.ebuild | 64 ++++++++++++++++++++++
15 2 files changed, 65 insertions(+)
16
17 diff --git a/sci-visualization/tensorboard/Manifest b/sci-visualization/tensorboard/Manifest
18 index 838f59d63d1..28e630aaddc 100644
19 --- a/sci-visualization/tensorboard/Manifest
20 +++ b/sci-visualization/tensorboard/Manifest
21 @@ -1 +1,2 @@
22 DIST tensorboard-2.4.0.zip 10631832 BLAKE2B e892c3f62855bd900320adbbea2758191296e2863e8865f4ffed3c5623fe5273a5a26554504b63db58c60d2a8c407e234d6cf3edc3868c88dfebd894def99859 SHA512 2301f526a98ac85cf5d182fff0f565c86883ec795bbaf2322696416621c8473d850a3f508079f89ca2a86a05fe020acde1282b72e2bb5ad77aab2d0e5ea2db4f
23 +DIST tensorboard-2.5.0.zip 6019104 BLAKE2B f07db4fec7cc39e15c4f580f479679f0db4f06e66d81768799ed3652bb9ba63c7b61bde7f12119d09474009e55c12d91ef0f2b3aeeb05682532630314cab871a SHA512 e39ca09bd00fab9b5f6f9393e48cb6be2313f86c24b2f0ffcfd08b08b9ed4e95e7e19297bb67d8b558e1913640774f9b9d512a34153251acb9f566d6485e0f78
24
25 diff --git a/sci-visualization/tensorboard/tensorboard-2.5.0.ebuild b/sci-visualization/tensorboard/tensorboard-2.5.0.ebuild
26 new file mode 100644
27 index 00000000000..345a4c81151
28 --- /dev/null
29 +++ b/sci-visualization/tensorboard/tensorboard-2.5.0.ebuild
30 @@ -0,0 +1,64 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +PYTHON_COMPAT=( python3_{7,8} )
37 +inherit python-r1
38 +
39 +DESCRIPTION="TensorFlow's Visualization Toolkit"
40 +HOMEPAGE="https://www.tensorflow.org/"
41 +SRC_URI="https://files.pythonhosted.org/packages/py3/${PN::1}/${PN}/${P}-py3-none-any.whl -> ${P}.zip"
42 +
43 +LICENSE="Apache-2.0"
44 +SLOT="0"
45 +KEYWORDS="~amd64"
46 +IUSE=""
47 +REQUIRED_USE=${PYTHON_REQUIRED_USE}
48 +
49 +RDEPEND="
50 + ${PYTHON_DEPS}
51 + dev-python/bleach[${PYTHON_USEDEP}]
52 + >=dev-python/google-auth-1.6.3[${PYTHON_USEDEP}]
53 + >=dev-python/google-auth-oauthlib-0.4.1[${PYTHON_USEDEP}]
54 + dev-python/grpcio[${PYTHON_USEDEP}]
55 + dev-python/html5lib[${PYTHON_USEDEP}]
56 + dev-python/markdown[${PYTHON_USEDEP}]
57 + dev-python/numpy[${PYTHON_USEDEP}]
58 + dev-python/protobuf-python[${PYTHON_USEDEP}]
59 + dev-python/six[${PYTHON_USEDEP}]
60 + >=dev-python/setuptools-41[${PYTHON_USEDEP}]
61 + dev-python/werkzeug[${PYTHON_USEDEP}]
62 + dev-python/wheel[${PYTHON_USEDEP}]
63 + >=dev-python/scipy-1.4.1[${PYTHON_USEDEP}]"
64 +BDEPEND="app-arch/unzip
65 + ${PYTHON_DEPS}"
66 +PDEPEND="sci-libs/tensorflow[python,${PYTHON_USEDEP}]"
67 +
68 +S="${WORKDIR}"
69 +
70 +src_prepare() {
71 + eapply_user
72 +
73 + rm -rf "${S}/${PN}/_vendor/bleach" || die
74 + rm -rf "${S}/${PN}/_vendor/html5lib" || die
75 + sed -i -e '/_vendor.bleach/d' -e '/_vendor.html5lib/d' "${S}/${P}.dist-info/RECORD" || die "failed to unvendor"
76 +
77 + find "${S}/${PN}" -name '*.py' -exec sed -i \
78 + -e 's/^from tensorboard\._vendor import html5lib/import html5lib/' \
79 + -e 's/^from tensorboard\._vendor import bleach/import bleach/' \
80 + -e 's/^from tensorboard\._vendor\.html5lib/from html5lib/' \
81 + -e 's/^from tensorboard\._vendor\.bleach/from bleach/' \
82 + {} + || die "failed to unvendor"
83 +
84 + sed -i -e '/tensorboard-plugin-/d' "${S}/${P}.dist-info/METADATA" || die "failed to remove plugin deps"
85 + sed -i -e '/tensorboard-data-server/d' "${S}/${P}.dist-info/METADATA" || die "failed to remove data-server deps"
86 +}
87 +
88 +src_install() {
89 + do_install() {
90 + python_domodule "${PN}"
91 + python_domodule "${P}.dist-info"
92 + }
93 + python_foreach_impl do_install
94 +}