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-applications/
Date: Fri, 25 Sep 2020 11:55:24
Message-Id: 1601034335.0e8aa833a02a5d55cb3294702aaf566eebb8383c.heroxbd@gentoo
1 commit: 0e8aa833a02a5d55cb3294702aaf566eebb8383c
2 Author: Benda Xu <heroxbd <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 25 11:45:35 2020 +0000
4 Commit: Benda XU <heroxbd <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 25 11:45:35 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e8aa833
7
8 sci-libs/keras-applications: 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-applications-1.0.8-r1.ebuild | 20 ++++++++++++++++++++
14 1 file changed, 20 insertions(+)
15
16 diff --git a/sci-libs/keras-applications/keras-applications-1.0.8-r1.ebuild b/sci-libs/keras-applications/keras-applications-1.0.8-r1.ebuild
17 new file mode 100644
18 index 00000000000..78bc7b1dc8d
19 --- /dev/null
20 +++ b/sci-libs/keras-applications/keras-applications-1.0.8-r1.ebuild
21 @@ -0,0 +1,20 @@
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="Keras deep learning library reference implementations of deep learning models"
31 +HOMEPAGE="https://keras.io/applications/"
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 +DEPEND="${RDEPEND}
41 + dev-python/setuptools[${PYTHON_USEDEP}]"