Added amitools and dependencies

This commit is contained in:
layman
2021-11-18 09:14:29 +01:00
parent e7281f8446
commit a320a70480
11 changed files with 144 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
DIST pytest-benchmark-3.4.1.tar.gz 340349 BLAKE2B 474743ef6c2d098ca6451e6da1a40686a529af901bf40ba8daf900844166895c676e3a95e8c252557d97d6668e077f625f96c90c00cdb4a1de021a5e5abae479 SHA512 630b27462796aea97c2d878bb936009d59e1c33be3f4219113eae5e389d2cd7912a7f7bc10a1a9a7abbfc4f69213be10a3cc68bbdceef0783f4b0a8a13600119
EBUILD pytest-benchmark-3.4.1.ebuild 684 BLAKE2B 6c518e72c904aa3e0c88b270257728e08a63ffe0b685c2803d0939d8251621960433b50c341f6b943aa7c611a3809a85ddfae89081d30f1d8e737ec360f0381e SHA512 40c613af23ff727550ff387924975d032f538eb4df0f2926be53bbb9f73b368399edaa96e50bf94da10e93c6a44df103ffa31eff69e729fcde25b2233a1c3a84
MISC metadata.xml 412 BLAKE2B 0d79131c6fd8adf72493a7c333959e065cf4f2231f6c770800b6d05ff9afcc246cd202406bea6e28f6b0fd23ee6197aa8dac2dd59d0a89d9b07741f57e8fa5e8 SHA512 d1aab9ea8042bf810398a4195fd3595a8abbeb060ab38fd7b7e40085c8d5f22ecb78bab02e2331d4588199d88e0d3848413d75a18fe4373ecd9940a3c990c604
+13
View File
@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>python@gentoo.org</email>
<name>Python</name>
</maintainer>
<stabilize-allarches/>
<upstream>
<remote-id type="pypi">pytest-cov</remote-id>
<remote-id type="github">pytest-dev/pytest-cov</remote-id>
</upstream>
</pkgmetadata>
@@ -0,0 +1,30 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_9 pypy3 )
inherit distutils-r1
DESCRIPTION="py.test fixture for benchmarking code."
HOMEPAGE="https://pypi.org/project/pytest-benchmark/"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86"
IUSE="test"
RESTRICT="!test? ( test )"
RDEPEND="
>=dev-python/pytest-3.8[${PYTHON_USEDEP}]
dev-python/py-cpuinfo[${PYTHON_USEDEP}]
"
BDEPEND="
test? (
${RDEPEND}
dev-python/jinja2[${PYTHON_USEDEP}]
dev-python/tox[${PYTHON_USEDEP}]
)
"