dev-python/pytest-metadata: Bump to v1.7.0 and update metadata
authorNelo-T. Wallus <nelo@wallus.de>
Thu, 7 Jun 2018 05:57:36 +0000 (07:57 +0200)
committerMichał Górny <mgorny@gentoo.org>
Thu, 7 Jun 2018 10:52:29 +0000 (12:52 +0200)
Package-Manager: Portage-2.3.40, Repoman-2.3.9
Closes: https://github.com/gentoo/gentoo/pull/8742

dev-python/pytest-metadata/Manifest
dev-python/pytest-metadata/metadata.xml
dev-python/pytest-metadata/pytest-metadata-1.7.0.ebuild [new file with mode: 0644]

index 6bf49cae04d395fb51aff0d7d777df0b829042ff..887c1053275cbe26f48587ef156b928879023f64 100644 (file)
@@ -1 +1,2 @@
 DIST pytest-metadata-1.3.0.tar.gz 4604 BLAKE2B 78987d2c28438b4942caae33d6c56b789d7859085074ae39549d0666cb725e0dc70c889ebce7bd7ff0b3846ba0c06e82cb85641c29bd0ee46b675813f1885492 SHA512 94af4defb1115d87fc456db80dbe16da01662d0b87325e433d4d1b30f35f210b7750bbaba091ac73d158296070c87054ce9f4c0687dfe5dfec3f02df56261d98
+DIST pytest-metadata-1.7.0.tar.gz 8254 BLAKE2B a7c5d7237ac6cf44122ff4af6f44aff8d3227a54dd340b3a5574161123319be1380410599a29920aaab41868ef89030a731a389232685e9e3885617d7dd9586f SHA512 85f86f1eb7486f19904bb513f1ba3212667e0ca2d74080621ffd2ef1cddb0ab9d6c01cc1c8eb69058d86ccad0974830bf1d6ad3b291fe0dbeb6196c06331e66f
index 974ed90410c2c9b0c72ae60a003f95cbc8b6d52b..04c8b96bca814a011ee5db37099164e487530cde 100644 (file)
@@ -7,6 +7,6 @@
        </maintainer>
        <upstream>
                <remote-id type="pypi">pytest-metadata</remote-id>
-               <remote-id type="github">davehunt/pytest-metadata</remote-id>
+               <remote-id type="github">pytest-dev/pytest-metadata</remote-id>
        </upstream>
 </pkgmetadata>
diff --git a/dev-python/pytest-metadata/pytest-metadata-1.7.0.ebuild b/dev-python/pytest-metadata/pytest-metadata-1.7.0.ebuild
new file mode 100644 (file)
index 0000000..30042a6
--- /dev/null
@@ -0,0 +1,24 @@
+# Copyright 1999-2018 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
+}