add tf-slim-1.1.0

This commit is contained in:
Andreas Billmeier 2020-08-15 10:37:39 +02:00 committed by Andreas Billmeier
parent 6c2d936488
commit 414f1fe42c
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 45 additions and 0 deletions

View File

@ -1,6 +1,7 @@
2020-08-15
* bump protobuf-python-3.12.2
* add pycocotools-2.0.1
* add tf-slim-1.1.0
2020-08-11
* bump blinkpy-0.16.3

View File

@ -0,0 +1,3 @@
DIST tf-slim-1.1.0.tar.gz 303054 BLAKE2B 114b6669a01a9c4f9e137195f5b392b16a052bc7932cfbf57cdbae2fb1d650ddbd95db7f48d36802795aedfe0a2523d97174d2823e169ed44b9078b34063e164 SHA512 5044ab8150a62a26155b859fffa08be269f1b9a67b0cf2e77cc520ead00226e3c150294b826df3fcd0a88911e75d99a9370a12c1c200a75551517f33d2a0e7e8
EBUILD tf-slim-1.1.0.ebuild 837 BLAKE2B d9d5784997b396a1ffa6cc442137c4d1a4554315090c256b70fc12faba76859ad4edbfbafe9dac6f6c69e2bd19020d8275dfc2cb01ea3d6a2607d949c7cc0095 SHA512 aeb073f5303d71f8ebc21f75a92bc33bff5251774d8c297ac9410e11e1ddcbd2b59e5c8f90c98d24449a5a65623439ea27a6bdf833717be9460f2889a86c5b35
MISC metadata.xml 326 BLAKE2B c6a30a652864b122b0c5ca0f6e2024101d7e6adbbdb7e489a2508b3abeb68a3f6102e6727d47517033b2317c92edcbbe65b530fe1fe38bb582864ceff84b2c91 SHA512 708543c8c8970c17211d5bf73bcf6b2048b536a072285854f0fa33961b7145ca11e7fcdb8a72366725928784158e58ec45c00066d77a5571af295543e6ecd2be

View File

@ -0,0 +1,11 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<upstream>
<remote-id type="pypi">tf-slim</remote-id>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,30 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6..8} )
inherit distutils-r1
DESCRIPTION="TensorFlow-Slim: A lightweight library for defining, training and evaluating complex models in TensorFlow"
HOMEPAGE="https://github.com/google-research/tf-slim https://pypi.org/project/tf-slim/"
SRC_URI="https://github.com/google-research/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=">=dev-python/absl-py-0.2.2[${PYTHON_USEDEP}]"
DEPEND="${REDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}