add dev-python/tox-travis

This commit is contained in:
Andreas Billmeier 2019-02-17 09:41:34 +01:00
parent 2141bbc640
commit 1fdb77ceb6
3 changed files with 46 additions and 0 deletions

View File

@ -0,0 +1,3 @@
DIST tox-travis-0.11.tar.gz 23257 BLAKE2B c0e8837e95c47fc0f3711ad711c4e6c6f6ce3608c4784d5348c2892ea7ac4e8fb17f29b65eb44bef9015ed82b0f3a7577c1ee2e6393f5491d67829df9771a45a SHA512 fa4aab834d751d3a4ef9308dc30018e420267512fec0dcbbaadb8cdb183ce59a45b19d6abbb5fc249095be13999332fc90e52e902c5d18286fcd85a9cab905c6
EBUILD tox-travis-0.11.ebuild 759 BLAKE2B 509662e3700002b5b4ed7552fe49c5f61dd93c9864bf8b8e4442eaec428822787ea42ee60052e2f3d65cfe086c9f637163b1a0c4e57316b7fa85fe6bd80cdb14 SHA512 d1a648cfeba14634e24072a7c5f53508e9a94242830c8f19c5fba38a65ccfac4e705467ca869a29610d5f4707c407e4d63685ded3b7d91ac1cbdea453f6c4870
MISC metadata.xml 364 BLAKE2B f61ddbb7b580a86dcb283196724787eafd62f9feb30fc76a4cebb38dee2cffe672e8ee086bddbfdefca7fede32b64091bb747de827a6ee1aae98d902bd373495 SHA512 51e4f0b9d1c15247acc7d03fd2112de4c0f5f0f4aff7f3e1946f78a99c44a1ef7e82670b613e9cbbcdb64c5e38a1263d8251ccc7f0644557edb889c235c7ecb6

View File

@ -0,0 +1,12 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>python</herd>
<upstream>
<remote-id type="pypi">tox-travis</remote-id>
<maintainer status="unknown">
<email>ryan@ryanhiebert.com</email>
<name>Ryan Hiebert</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,31 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v3.0
EAPI=6
PYTHON_COMPAT=( python3_{5,6,7} )
inherit distutils-r1
DESCRIPTION="Seamless integration of Tox into Travis CI"
HOMEPAGE="https://github.com/tox-dev/tox-travis https://pypi.org/project/tox-travis/"
#SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
SRC_URI="https://github.com/tox-dev/${PN}/archive/${PVR}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=""
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
}