Gentoo Archives: gentoo-commits

From: Benda XU <heroxbd@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/keras-preprocessing/
Date: Fri, 25 Sep 2020 11:55:24
Message-Id: 1601034450.f664ab78a1c118ee174d3980d03a9eee63494a11.heroxbd@gentoo
1 commit: f664ab78a1c118ee174d3980d03a9eee63494a11
2 Author: Benda Xu <heroxbd <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 25 11:47:30 2020 +0000
4 Commit: Benda XU <heroxbd <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 25 11:47:30 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f664ab78
7
8 sci-libs/keras-preprocessing: tested on Python 3.8.
9
10 Package-Manager: Portage-3.0.5, Repoman-3.0.1
11 Signed-off-by: Benda Xu <heroxbd <AT> gentoo.org>
12
13 .../keras-preprocessing-1.1.0-r1.ebuild | 22 ++++++++++++++++++++++
14 1 file changed, 22 insertions(+)
15
16 diff --git a/sci-libs/keras-preprocessing/keras-preprocessing-1.1.0-r1.ebuild b/sci-libs/keras-preprocessing/keras-preprocessing-1.1.0-r1.ebuild
17 new file mode 100644
18 index 00000000000..3a96094ba07
19 --- /dev/null
20 +++ b/sci-libs/keras-preprocessing/keras-preprocessing-1.1.0-r1.ebuild
21 @@ -0,0 +1,22 @@
22 +# Copyright 1999-2020 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=6
26 +
27 +PYTHON_COMPAT=( python3_{6,7,8} )
28 +inherit distutils-r1
29 +
30 +DESCRIPTION="Easy data preprocessing and data augmentation for deep learning models"
31 +HOMEPAGE="https://keras.io/"
32 +SRC_URI="https://github.com/keras-team/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
33 +
34 +LICENSE="MIT"
35 +SLOT="0"
36 +KEYWORDS="~amd64 ~x86"
37 +IUSE=""
38 +
39 +RDEPEND="dev-python/numpy[${PYTHON_USEDEP}]
40 + dev-python/scipy[${PYTHON_USEDEP}]
41 + dev-python/six[${PYTHON_USEDEP}]"
42 +DEPEND="${RDEPEND}
43 + dev-python/setuptools[${PYTHON_USEDEP}]"