dev-python/pytest-metadata: Initial version

Package-Manager: Portage-2.3.4, Repoman-2.3.2
This commit is contained in:
Manuel Rüger
2017-03-20 18:53:09 +01:00
parent 9d14c02eb8
commit e0d61b8e34
3 changed files with 36 additions and 0 deletions

View File

@@ -0,0 +1 @@
DIST pytest-metadata-1.3.0.tar.gz 4604 SHA256 2aa89161636c12418b2f8dfe226b6007a50ce3570f2b09fe23d72506fb21a3bc SHA512 94af4defb1115d87fc456db80dbe16da01662d0b87325e433d4d1b30f35f210b7750bbaba091ac73d158296070c87054ce9f4c0687dfe5dfec3f02df56261d98 WHIRLPOOL 26ddc6255b5c68c90f0e1f4fed50abe3e5721e5d764f9f757907215b554e0aa53dae36bdda74d04c2bc2750b994195119b144764b5b52caadc9e5af55d411d8d

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>python@gentoo.org</email>
<name>Python</name>
</maintainer>
<upstream>
<remote-id type="pypi">pytest-metadata</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,24 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy pypy3 )
inherit distutils-r1
DESCRIPTION="A plugin for pytest that provides access to test session metadata"
HOMEPAGE="https://github.com/davehunt/pytest-metadata/"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="MPL-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=">=dev-python/pytest-2.9.0[${PYTHON_USEDEP}]"
DEPEND="${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
dev-python/setuptools_scm[${PYTHON_USEDEP}]"
python_test() {
py.test || die
}