diff --git a/dev-python/syrupy/Manifest b/dev-python/syrupy/Manifest new file mode 100644 index 000000000..81d9653fc --- /dev/null +++ b/dev-python/syrupy/Manifest @@ -0,0 +1,3 @@ +DIST syrupy-4.0.0.tar.gz 43525 BLAKE2B aed7c4ded95fd530a35c34c95826f8d263a268bf9ee3abdcc1921469a71714bf5e4b8a1306e381713728a058ef4ace47b52ae3017edb5dd9b9a77e2aa4e813ff SHA512 5c7ef04e71eaae03c3284ac2c0e3eb1bd48eb52258723d5b577282fe59df41dbf436d52e0a1a3df1e836d1682c10fc2322432fc31b30c3bbe978bd62cabc221e +EBUILD syrupy-4.0.0.ebuild 677 BLAKE2B 9792f5b47c37a667b280215ce422dbfb4835c24cb354783be56ae33313d21d4dec4ffe4f08374f0eb636d5a6988c26ef19a8ebc8c2e572f458adc28af4ec170c SHA512 e39fa8e0254ce17edd2ec542d9546c0af2ae42c74d551dc2fce332216b13438308456bf0d7ad8602824fc2cd4ad378326860ed491e790b0ee04540da6863a6f9 +MISC metadata.xml 514 BLAKE2B edd646046605909b6e8e244de7401190ac3ff7f927f6fa95af573fd0b249fad6fc47346473292f2d8fbb1999a8afa284131ae61d37dffb6f9abc8c06e88bcea3 SHA512 c5b12db4488d2ea0cacba9a1dd1b5f1dc3e3dc04fbfdcd8258cab1294c8d250ae96334c316a58f2f170133970158727c59980bb2bc660aa805f4d7a886505966 diff --git a/dev-python/syrupy/metadata.xml b/dev-python/syrupy/metadata.xml new file mode 100644 index 000000000..7d65e9e82 --- /dev/null +++ b/dev-python/syrupy/metadata.xml @@ -0,0 +1,16 @@ + + + + + b@edevau.net + Andreas Billmeier + + + syrupy + tophat/syrupy + + opensource@tophat.com + Top Hat Open Source + + + diff --git a/dev-python/syrupy/syrupy-4.0.0.ebuild b/dev-python/syrupy/syrupy-4.0.0.ebuild new file mode 100644 index 000000000..bb43c4300 --- /dev/null +++ b/dev-python/syrupy/syrupy-4.0.0.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{9..11} ) +DISTUTILS_USE_PEP517=poetry +inherit distutils-r1 + +DESCRIPTION="Pytest Snapshot Test Utility" +HOMEPAGE="https://github.com/tophat/syrupy https://pypi.org/project/syrupy/" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="amd64 arm arm64 x86" +IUSE="test" +RESTRICT="!test? ( test )" + +DOCS="README.md" + +RDEPEND=">=dev-python/colored-1.3.92[${PYTHON_USEDEP}]" +BDEPEND=" + test? ( + dev-python/pytest[${PYTHON_USEDEP}] + )" + +python_test() { + py.test -v -v || die +} + +distutils_enable_tests pytest