From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1209532-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D9C0513835A for <garchives@archives.gentoo.org>; Fri, 25 Sep 2020 11:55:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C6CC5E041F; Fri, 25 Sep 2020 11:55:23 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AE7DFE041F for <gentoo-commits@lists.gentoo.org>; Fri, 25 Sep 2020 11:55:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2235F33BF24 for <gentoo-commits@lists.gentoo.org>; Fri, 25 Sep 2020 11:55:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9FE5A378 for <gentoo-commits@lists.gentoo.org>; Fri, 25 Sep 2020 11:55:20 +0000 (UTC) From: "Benda XU" <heroxbd@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Benda XU" <heroxbd@gentoo.org> Message-ID: <1601034450.f664ab78a1c118ee174d3980d03a9eee63494a11.heroxbd@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/keras-preprocessing/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/keras-preprocessing/keras-preprocessing-1.1.0-r1.ebuild X-VCS-Directories: sci-libs/keras-preprocessing/ X-VCS-Committer: heroxbd X-VCS-Committer-Name: Benda XU X-VCS-Revision: f664ab78a1c118ee174d3980d03a9eee63494a11 X-VCS-Branch: master Date: Fri, 25 Sep 2020 11:55:20 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 8c2a882f-6abe-42e7-8411-87d90ec56ad9 X-Archives-Hash: ec846416aa2d71e2a6e74b8078e88e5c commit: f664ab78a1c118ee174d3980d03a9eee63494a11 Author: Benda Xu <heroxbd <AT> gentoo <DOT> org> AuthorDate: Fri Sep 25 11:47:30 2020 +0000 Commit: Benda XU <heroxbd <AT> gentoo <DOT> org> CommitDate: Fri Sep 25 11:47:30 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f664ab78 sci-libs/keras-preprocessing: tested on Python 3.8. Package-Manager: Portage-3.0.5, Repoman-3.0.1 Signed-off-by: Benda Xu <heroxbd <AT> gentoo.org> .../keras-preprocessing-1.1.0-r1.ebuild | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) 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 new file mode 100644 index 00000000000..3a96094ba07 --- /dev/null +++ b/sci-libs/keras-preprocessing/keras-preprocessing-1.1.0-r1.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python3_{6,7,8} ) +inherit distutils-r1 + +DESCRIPTION="Easy data preprocessing and data augmentation for deep learning models" +HOMEPAGE="https://keras.io/" +SRC_URI="https://github.com/keras-team/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="dev-python/numpy[${PYTHON_USEDEP}] + dev-python/scipy[${PYTHON_USEDEP}] + dev-python/six[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}]"