dev-python/pytest-unordered: new package, add 0.5.2

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-01-09 11:05:11 +01:00 committed by Andreas Billmeier
parent 60a38c655b
commit 68eab7b10f
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 49 additions and 0 deletions

View File

@ -0,0 +1,3 @@
DIST pytest-unordered-0.5.2.tar.gz 5622 BLAKE2B 93efa2d2fd2fdb9ad9022db49a9a4488dfeeb5e08cc3ee1f2e703eb1fba18dc2288b3462d9b0825feba0a53c6fa6c67bf584824f850e48c53e3cd1afdff1d01c SHA512 21b77cd1f02ce6d0bf48a8fba2b79bac5c21d06fafaaeca72f050af969fc0c94d3b91c28c125c4ac1259c834155799575ccfac1a5b8f52b1ea887c177d7fdf99
EBUILD pytest-unordered-0.5.2.ebuild 688 BLAKE2B 869bc8154e24aca286658ea267656f83dcdd74258c09022af5790869a0cddae4489c9ff809f387b37d649dab236e6c8362b5b95140156989742be253ae17cbe4 SHA512 fc9e452672a38e4036e640cac9471ab41716c926fc8a19dc1b5cd4af7654383a417e605dbff99d64326a5a91942dfd0ed9ccf8ca78ef2f03b7f16709a41f750f
MISC metadata.xml 522 BLAKE2B 6ba65a545760d17086647f9cd2498520dea719cec46c3aafb68bfeb179497c7cb1f00565cec0b8093d2fb91575c68311425805548fcb1b9e438911d4b3b9f392 SHA512 34c06793c51e0bdc5c3f55ee1db3f55b8d58509d72d9837ec609a50fca3fdd35a7a8408dd0728996209974a0f6c9357db52849340116b524810250a7c28d48c3

View File

@ -0,0 +1,16 @@
<?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">pytest-unordered</remote-id>
<remote-id type="github">utapyngo/pytest-unordered</remote-id>
<maintainer status="unknown">
<email>ut@pyngo.tom.ru</email>
<name>Ivan Zaikin</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,30 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..11} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1
DESCRIPTION="Test equality of unordered collections in pytest"
HOMEPAGE="https://github.com/utapyngo/pytest-unordered https://pypi.org/project/pytest-unordered/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest