update whisper-1.1.8

This commit is contained in:
Andreas Billmeier 2021-06-17 08:07:15 +02:00 committed by Andreas Billmeier
parent 62fe6b160d
commit 7948713f99
3 changed files with 50 additions and 0 deletions

View File

@ -0,0 +1,3 @@
DIST whisper-1.1.8.tar.gz 38167 BLAKE2B ede17202981cd4e0c0e5cdb6dae675b945cfc2931e7ae1ebaf31db3e7ecc011719321863565dfde553843214e858584a43a1411e6165623340bc4145ed873fa7 SHA512 ff9cff6e43410859d786edcbb7a755754bcbe6e97ab5f7fd37a43a24bf2085af4f60abb917a746dcd9574f8320216e024d01d7a97f8bd297a4f089adacdbed95
EBUILD whisper-1.1.8.ebuild 715 BLAKE2B 59b0c1e7b7f5049bdcc2d0cfa64c5a857e20e10755240b5930120392b4c06d2b143d1f65095de60cecebc6c510b9d7a02bce2843a491a5b9ecad4c23bc381261 SHA512 3295cc159a9a7bf55f64e23dfa4f59d5423b3c480e0ddd489d670bf495a29dc7a96c409292a8c16b5e50a5258072168ac38f8932bb8611e6622e24ceeff5d239
MISC metadata.xml 448 BLAKE2B 2916fb4dc95e43c40ff6aabedbdf7cae9339247a01784f511f8c850a7cb442af272d0badd349882efa6e37feec472072f15b47a710f69ca93a738505847d4d8d SHA512 1b8aff99f7d472d55fef2d94ccba9e1256a2d33e22aca81d172bd7fb2e1339ec30dc4b5661306c14ba91e5284ae1b772eb3881ee4441e802c0cf72d0096da108

View File

@ -0,0 +1,15 @@
<?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">whisper</remote-id>
<maintainer status="unknown">
<email>chrismd@gmail.com</email>
<name>Chris Davis</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,32 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="Fixed size round-robin style database"
HOMEPAGE="http://graphiteapp.org/ https://pypi.org/project/whisper/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.md"
RDEPEND="dev-python/six[${PYTHON_USEDEP}]"
BDEPEND="
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
}