From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 56220138334 for ; Fri, 13 Sep 2019 14:22:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 82158E0C52; Fri, 13 Sep 2019 14:22:05 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 26E5EE0C52 for ; Fri, 13 Sep 2019 14:22:05 +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 3D0D134B107 for ; Fri, 13 Sep 2019 14:22:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E0F87720 for ; Fri, 13 Sep 2019 14:22:02 +0000 (UTC) From: "Jason Zaman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jason Zaman" Message-ID: <1568381527.053b7755dac35eea819a22e293c7108b8cd5373e.perfinion@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/keras-applications/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/keras-applications/Manifest sci-libs/keras-applications/keras-applications-1.0.8.ebuild X-VCS-Directories: sci-libs/keras-applications/ X-VCS-Committer: perfinion X-VCS-Committer-Name: Jason Zaman X-VCS-Revision: 053b7755dac35eea819a22e293c7108b8cd5373e X-VCS-Branch: master Date: Fri, 13 Sep 2019 14:22:02 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: e7a9091d-90e2-46c0-aad9-8adfd8be5aa1 X-Archives-Hash: 4eb9d523ececdbe29bca528a6f7e3b15 commit: 053b7755dac35eea819a22e293c7108b8cd5373e Author: Jason Zaman gentoo org> AuthorDate: Fri Sep 13 08:11:48 2019 +0000 Commit: Jason Zaman gentoo org> CommitDate: Fri Sep 13 13:32:07 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=053b7755 sci-libs/keras-applications: bump 1.0.8 Package-Manager: Portage-2.3.69, Repoman-2.3.16 Signed-off-by: Jason Zaman gentoo.org> sci-libs/keras-applications/Manifest | 1 + .../keras-applications-1.0.8.ebuild | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+) diff --git a/sci-libs/keras-applications/Manifest b/sci-libs/keras-applications/Manifest index b8042d832de..0a73422f78b 100644 --- a/sci-libs/keras-applications/Manifest +++ b/sci-libs/keras-applications/Manifest @@ -1 +1,2 @@ DIST keras-applications-1.0.7.tar.gz 289570 BLAKE2B 5f6fe2419b2de41f718e6beae56c8c4910efe0e6c282ad32b792f50a8b9ebc88c866eed84fb8c7dcbbd1680de605036a0012458af6d14250b1f8624ead5013b7 SHA512 5f2c5fb7b7f644a881f8cc9040633a69d3a72562206dd0601c8b31bf4fd3bb2aeee07a0d7040311f0fd42f16330bc249d306cdfa01c7b60717b05726040a0b78 +DIST keras-applications-1.0.8.tar.gz 288909 BLAKE2B 41d70552f5dfdd0c1385a7ca0b527ce0e0c3441c1ee3f72c90569f3e43e6a82485d0d4affee83afc645f3b99a519facb41d11a3fc1384c98f44182dddbea02bb SHA512 58af0d8e0289d97b416559bf235deeb9a5405d50f2a2c93612cdbde36e4d6d006db5c570acb814c209414a4b61c2310a99257aa0e2feaf24e5260d549b8b94f6 diff --git a/sci-libs/keras-applications/keras-applications-1.0.8.ebuild b/sci-libs/keras-applications/keras-applications-1.0.8.ebuild new file mode 100644 index 00000000000..dcf6a0b2bd0 --- /dev/null +++ b/sci-libs/keras-applications/keras-applications-1.0.8.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python2_7 python{3_5,3_6,3_7} ) +inherit distutils-r1 + +DESCRIPTION="Keras deep learning library reference implementations of deep learning models" +HOMEPAGE="https://keras.io/applications/" +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}]" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}]"